/* 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 *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 = 128; static const int BLUR_INCREMENT = 9; static const int MARGIN = 6; void resetMaxHeight() { m_maxHeight = 0; } int m_maxHeight; private: int m_maxWidth; }; #endif // BACKGROUNDDELEGATEL_H