-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparamsdelegate.h
More file actions
29 lines (23 loc) · 938 Bytes
/
paramsdelegate.h
File metadata and controls
29 lines (23 loc) · 938 Bytes
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
#ifndef PARAMSDELEGATE_H
#define PARAMSDELEGATE_H
#include <QItemDelegate>
#include <QStringList>
class ParamsModel;
typedef struct _MenuValue menu_value_t;
class ParamsDelegate
:public QItemDelegate
{
Q_OBJECT
public:
ParamsDelegate(QObject* parent = 0);
~ParamsDelegate();
protected:
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;
QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const;
void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &) const;
private:
QStringList getMenuValueStringList(menu_value_t* menu_value, size_t min_index, size_t max_index) const;
};
#endif // PARAMSDELEGATE_H