00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #include "CustomDelegate.h"
00025 #include <QtGui>
00026
00027 #include <CustomDelegate.moc>
00028
00029 namespace Aseba
00030 {
00033
00034 SpinBoxDelegate::SpinBoxDelegate(int minValue, int maxValue, QObject *parent) :
00035 QItemDelegate(parent),
00036 minValue(minValue),
00037 maxValue(maxValue)
00038 {
00039 }
00040
00041 QWidget *SpinBoxDelegate::createEditor(QWidget *parent,
00042 const QStyleOptionViewItem &,
00043 const QModelIndex &) const
00044 {
00045 QSpinBox *editor = new QSpinBox(parent);
00046 editor->setMinimum(minValue);
00047 editor->setMaximum(maxValue);
00048 editor->installEventFilter(const_cast<SpinBoxDelegate*>(this));
00049
00050 return editor;
00051 }
00052
00053 void SpinBoxDelegate::setEditorData(QWidget *editor, const QModelIndex &index) const
00054 {
00055 int value = index.model()->data(index, Qt::DisplayRole).toInt();
00056
00057 QSpinBox *spinBox = static_cast<QSpinBox*>(editor);
00058 spinBox->setValue(value);
00059 }
00060
00061 void SpinBoxDelegate::setModelData(QWidget *editor, QAbstractItemModel *model,
00062 const QModelIndex &index) const
00063 {
00064 QSpinBox *spinBox = static_cast<QSpinBox*>(editor);
00065 spinBox->interpretText();
00066 int value = spinBox->value();
00067
00068 model->setData(index, value);
00069 }
00070
00071 void SpinBoxDelegate::updateEditorGeometry(QWidget *editor,
00072 const QStyleOptionViewItem &option, const QModelIndex &) const
00073 {
00074 editor->setGeometry(option.rect);
00075 }
00076
00078 };