mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-23 18:32:53 +00:00
42 lines
1.1 KiB
C++
42 lines
1.1 KiB
C++
/*
|
|
Copyright (c) 2007 Paolo Capriotti <p.capriotti@gmail.com>
|
|
|
|
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 <QAbstractItemDelegate>
|
|
|
|
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
|