-
Notifications
You must be signed in to change notification settings - Fork 6
/
attributedelegate.h
37 lines (27 loc) · 943 Bytes
/
attributedelegate.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
#ifndef ATTRIBUTEDELEGATE_H
#define ATTRIBUTEDELEGATE_H
#include <QItemDelegate>
#include <QModelIndex>
#include <QObject>
#include <QSize>
#include <QSpinBox>
#include <QLineEdit>
#include "attribute.h"
class AttributeDelegate : public QItemDelegate
{
Q_OBJECT
enum EditorType {Undefined,SpinBox,LineEdit,ComboBox};
public:
AttributeDelegate(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 setAttributeTable(AttributeTable *table);
private:
AttributeTable *attributeTable;
};
#endif