-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdelegate.hpp
151 lines (130 loc) · 4.77 KB
/
delegate.hpp
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
#ifndef DELEGATE_HPP
#define DELEGATE_HPP
#include <QComboBox>
#include <QStyledItemDelegate>
#include <QPushButton>
#include <QApplication>
class DeleteDelegate : public QStyledItemDelegate
{
Q_OBJECT
public:
DeleteDelegate(QObject *parent = 0): QStyledItemDelegate(parent) { };
QWidget *createEditor(QWidget*parent, const QStyleOptionViewItem &option,
const QModelIndex &index) const override
{
// QPushButton *editor = new QPushButton(parent);
// editor->setText("1");
// return editor;
return nullptr;
}
void setEditorData(QWidget *editor, const QModelIndex &index) const override
{
return;
}
void paint( QPainter* pPainter, const QStyleOptionViewItem& qOption, const QModelIndex& qIndex) const override
{
QStyleOptionButton button;
button.rect = qOption.rect;
button.text = "-";
button.state = QStyle::State_On;
//button.state = QStyle::State_Enabled;
QApplication::style()->drawControl(QStyle::CE_PushButton, &button, pPainter);
}
};
class FunctionCodeDelegate : public QStyledItemDelegate
{
Q_OBJECT
public:
FunctionCodeDelegate(QObject *parent = 0): QStyledItemDelegate(parent) { };
QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option,
const QModelIndex &index) const
{
QComboBox *editor = new QComboBox(parent);
editor->addItems({"01","02","03","04","05","06"});
return editor;
}
void setEditorData(QWidget *editor, const QModelIndex &index) const
{
QString text = index.model()->data(index, Qt::EditRole).toString();
QComboBox *comboBox = static_cast<QComboBox*>(editor);
int tindex = comboBox->findText(text);
comboBox->setCurrentIndex(tindex);
}
void setModelData(QWidget *editor, QAbstractItemModel *model,
const QModelIndex &index) const
{
QComboBox *comboBox = static_cast<QComboBox*>(editor);
QString text = comboBox->currentText();
model->setData(index, text, Qt::EditRole);
}
void updateEditorGeometry(QWidget *editor,
const QStyleOptionViewItem &option, const QModelIndex &index) const
{
editor->setGeometry(option.rect);
}
};
class DataTypeDelegate : public QStyledItemDelegate
{
Q_OBJECT
public:
DataTypeDelegate(QObject *parent = 0): QStyledItemDelegate(parent) { };
QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option,
const QModelIndex &index) const
{
QComboBox *editor = new QComboBox(parent);
editor->addItems({"整型","开关量","浮点型"});
return editor;
}
void setEditorData(QWidget *editor, const QModelIndex &index) const
{
QString text = index.model()->data(index, Qt::EditRole).toString();
QComboBox *comboBox = static_cast<QComboBox*>(editor);
int tindex = comboBox->findText(text);
comboBox->setCurrentIndex(tindex);
}
void setModelData(QWidget *editor, QAbstractItemModel *model,
const QModelIndex &index) const
{
QComboBox *comboBox = static_cast<QComboBox*>(editor);
QString text = comboBox->currentText();
model->setData(index, text, Qt::EditRole);
}
void updateEditorGeometry(QWidget *editor,
const QStyleOptionViewItem &option, const QModelIndex &index) const
{
editor->setGeometry(option.rect);
}
};
class LengthDelegate : public QStyledItemDelegate
{
Q_OBJECT
public:
LengthDelegate(QObject *parent = 0): QStyledItemDelegate(parent) { };
QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option,
const QModelIndex &index) const
{
QComboBox *editor = new QComboBox(parent);
editor->addItems({"8","16","32","64"});
return editor;
}
void setEditorData(QWidget *editor, const QModelIndex &index) const
{
QString text = index.model()->data(index, Qt::EditRole).toString();
QComboBox *comboBox = static_cast<QComboBox*>(editor);
int tindex = comboBox->findText(text);
comboBox->setCurrentIndex(tindex);
}
void setModelData(QWidget *editor, QAbstractItemModel *model,
const QModelIndex &index) const
{
QComboBox *comboBox = static_cast<QComboBox*>(editor);
QString text = comboBox->currentText();
model->setData(index, text, Qt::EditRole);
}
void updateEditorGeometry(QWidget *editor,
const QStyleOptionViewItem &option, const QModelIndex &index) const
{
editor->setGeometry(option.rect);
}
};
#endif // DELEGATE_HPP