summaryrefslogtreecommitdiff
path: root/src/dic-options/FieldStyleDelegate.h
blob: 2d969f52b7bd151954f060180383c0d7a01834c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef FIELDSTYLEDELEGATE_H
#define FIELDSTYLEDELEGATE_H

#include <QStyledItemDelegate>

class FieldStyleDelegate : public QStyledItemDelegate
{
    Q_OBJECT

public:
    FieldStyleDelegate(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;
};


#endif // FIELDSTYLEDELEGATE_H