00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef CUSTOM_DELEGATE_H
00025 #define CUSTOM_DELEGATE_H
00026
00027 #include <QItemDelegate>
00028
00029 namespace Aseba
00030 {
00033
00034 class SpinBoxDelegate : public QItemDelegate
00035 {
00036 Q_OBJECT
00037
00038 public:
00039 SpinBoxDelegate(int minValue, int maxValue, QObject *parent = 0);
00040
00041 QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option,
00042 const QModelIndex &index) const;
00043
00044 void setEditorData(QWidget *editor, const QModelIndex &index) const;
00045 void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const;
00046
00047 void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) const;
00048 protected:
00049 int minValue;
00050 int maxValue;
00051 };
00052
00054 };
00055
00056 #endif