-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrmapobjecttableviewdelegate.h
More file actions
executable file
·30 lines (20 loc) · 1 KB
/
rmapobjecttableviewdelegate.h
File metadata and controls
executable file
·30 lines (20 loc) · 1 KB
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
#ifndef RMAPOBJECTTABLEVIEWDELEGATE_H
#define RMAPOBJECTTABLEVIEWDELEGATE_H
#include <QItemDelegate>
class RMapObjectTableViewDelegate : public QItemDelegate {
Q_OBJECT
public:
RMapObjectTableViewDelegate(QObject *parent = 0);
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;
void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const;
private slots:
void commitAndCloseEditor(int id);
};
#endif // RMAPOBJECTTABLEVIEWDELEGATE_H