forked from ragnar-lodbrok/meow-sql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckbox_delegate.h
49 lines (36 loc) · 1.41 KB
/
checkbox_delegate.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#ifndef CHECKBOX_DELEGATE_H
#define CHECKBOX_DELEGATE_H
#include <QStyledItemDelegate>
namespace meow {
namespace models {
namespace delegates {
class CheckboxDelegate : public QStyledItemDelegate
{
public:
CheckboxDelegate(QObject * parent = nullptr);
QWidget * createEditor(QWidget *parent,
const QStyleOptionViewItem &option,
const QModelIndex &index) const override;
bool editorEvent(QEvent * event,
QAbstractItemModel * model,
const QStyleOptionViewItem & option,
const QModelIndex & index) override;
void paint(QPainter *painter,
const QStyleOptionViewItem &option,
const QModelIndex &index) const override;
void setEditorData(QWidget *editor,
const QModelIndex &index) const override;
void setModelData(QWidget *editor,
QAbstractItemModel *model,
const QModelIndex &index) const override;
void updateEditorGeometry(QWidget *editor,
const QStyleOptionViewItem &option,
const QModelIndex &index) const override;
private:
bool isChecked(const QModelIndex &index) const;
bool isEnabled(const QModelIndex &index) const;
};
} // namespace delegates
} // namespace models
} // namespace meow
#endif // CHECKBOX_DELEGATE_H