mirror of
https://github.com/KDE/latte-dock.git
synced 2025-02-08 01:57:44 +03:00
10 lines
378 B
C++
10 lines
378 B
C++
#include <QStyledItemDelegate>
|
|
|
|
class CheckBoxDelegate : public QStyledItemDelegate {
|
|
public:
|
|
CheckBoxDelegate(QObject *parent = 0);
|
|
|
|
void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
|
|
virtual bool editorEvent(QEvent *event, QAbstractItemModel *model, const QStyleOptionViewItem &option, const QModelIndex &index);
|
|
};
|