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