-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathcomboboxdelegate.h
51 lines (38 loc) · 1.29 KB
/
comboboxdelegate.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
#ifndef COMBOBOXDELEGATE_H
#define COMBOBOXDELEGATE_H
#include <domitem.h>
#include <dommodel.h>
#include <QComboBox>
#include <QHBoxLayout>
#include <QItemDelegate>
#include <QLatin1Char>
#include <QListView>
#include <QPainter>
#include <QStyledItemDelegate>
class tcNoArrowComboBox : public QComboBox {
Q_OBJECT
public:
tcNoArrowComboBox(QWidget* parent) : QComboBox(parent) {}
void paintEvent(QPaintEvent* ev);
};
class ComboBoxDelegate : public QStyledItemDelegate {
Q_OBJECT
public:
ComboBoxDelegate(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;
signals:
void dataChanged(const QModelIndex&, QString) const;
void comboxChanged(int index);
private slots:
public slots:
void OnComboBoxChanged(int index);
private:
QByteArray HexStrToByte(QString value) const;
};
#endif // COMBOBOXDELEGATE_H