aboutsummaryrefslogtreecommitdiffstats
path: root/qt-ui/modeldelegates.cpp
diff options
context:
space:
mode:
authorGravatar Anton Lundin <glance@acc.umu.se>2014-07-12 14:24:25 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-07-12 08:03:34 -0700
commitc4981f28a6ada0571276bcdf75c6171e1638678d (patch)
tree6102a41cf950333b8f5073c2c5d87b43063753cb /qt-ui/modeldelegates.cpp
parent6008d08557e8c883ff533d1d4205a66aba49ea95 (diff)
downloadsubsurface-c4981f28a6ada0571276bcdf75c6171e1638678d.tar.gz
Add step size in our SpinBox delegates
For the Set point spinbox, it was kinda hard just stepping by the default 1.0, so setting it to step by 0.1 makes much more sense. The int SpinBox got a step size parameter for consistency. Signed-off-by: Anton Lundin <glance@acc.umu.se> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/modeldelegates.cpp')
-rw-r--r--qt-ui/modeldelegates.cpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/qt-ui/modeldelegates.cpp b/qt-ui/modeldelegates.cpp
index b339e7f4a..a3796e0aa 100644
--- a/qt-ui/modeldelegates.cpp
+++ b/qt-ui/modeldelegates.cpp
@@ -365,10 +365,11 @@ void ProfilePrintDelegate::paint(QPainter *painter, const QStyleOptionViewItem &
QStyledItemDelegate::paint(painter, option, index);
}
-SpinBoxDelegate::SpinBoxDelegate(int min, int max, QObject *parent):
+SpinBoxDelegate::SpinBoxDelegate(int min, int max, int step, QObject *parent):
QStyledItemDelegate(parent),
min(min),
- max(max)
+ max(max),
+ step(step)
{
}
@@ -376,13 +377,15 @@ QWidget *SpinBoxDelegate::createEditor(QWidget *parent, const QStyleOptionViewIt
{
QSpinBox *w = qobject_cast<QSpinBox*>(QStyledItemDelegate::createEditor(parent, option, index));
w->setRange(min,max);
+ w->setSingleStep(step);
return w;
}
-DoubleSpinBoxDelegate::DoubleSpinBoxDelegate(double min, double max, QObject *parent):
+DoubleSpinBoxDelegate::DoubleSpinBoxDelegate(double min, double max, double step, QObject *parent):
QStyledItemDelegate(parent),
min(min),
- max(max)
+ max(max),
+ step(step)
{
}
@@ -390,5 +393,6 @@ QWidget *DoubleSpinBoxDelegate::createEditor(QWidget *parent, const QStyleOption
{
QDoubleSpinBox *w = qobject_cast<QDoubleSpinBox*>(QStyledItemDelegate::createEditor(parent, option, index));
w->setRange(min,max);
+ w->setSingleStep(step);
return w;
}