blob: eacbb5a1e92fa32a5fd8caca1a861f1d25ed0752 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef MODELDELEGATES_H
#define MODELDELEGATES_H
#include <QAbstractItemDelegate>
class StarWidgetsDelegate : public QAbstractItemDelegate {
Q_OBJECT
public:
virtual void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const;
virtual QSize sizeHint(const QStyleOptionViewItem& option, const QModelIndex& index) const;
};
#endif
|