-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtabledelegate.h
52 lines (41 loc) · 1.66 KB
/
tabledelegate.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
50
51
52
#ifndef TABLEDELEGATE_H
#define TABLEDELEGATE_H
#include <QItemDelegate>
#include <QStandardItemModel>
class QosDelegate : public QItemDelegate
{
Q_OBJECT
public:
explicit QosDelegate(QWidget *parent = nullptr);
QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const;
void setEditorData(QWidget *editor, const QModelIndex &index) const;
void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const;
void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) const;
signals:
public slots:
};
class CheckedDelegate : public QItemDelegate
{
Q_OBJECT
public:
explicit CheckedDelegate(QWidget *parent = nullptr);
QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const;
void setEditorData(QWidget *editor, const QModelIndex &index) const;
void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const;
void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) const;
signals:
public slots:
};
class TopicModel : public QStandardItemModel
{
Q_OBJECT
public:
TopicModel(QObject *parent = nullptr);
TopicModel(int row, int column, QObject *parent = nullptr);
bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole);
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
Qt::ItemFlags flags(const QModelIndex &index) const;
private:
QMap<int, Qt::CheckState> m_checkd;
};
#endif // TABLEDELEGATE_H