#ifndef FIELDSTYLEDELEGATE_H #define FIELDSTYLEDELEGATE_H #include 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