/* Copyright (c) 2007 Paolo Capriotti This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. */ #ifndef BACKGROUNDDELEGATE_H #define BACKGROUNDDELEGATE_H #include class BackgroundDelegate : public QAbstractItemDelegate { public: enum { AuthorRole = Qt::UserRole, ScreenshotRole, ResolutionRole }; BackgroundDelegate(QObject *listener, float ratio, QObject *parent = 0); virtual void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const; virtual QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const; static const int SCREENSHOT_SIZE = 60; private: static const int MARGIN = 5; QObject *m_listener; float m_ratio; }; #endif // BACKGROUNDDELEGATEL_H