mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-11 09:36:37 +00:00
Set range of spinbox types in dialogsubview.
This commit is contained in:
parent
7e1f86793c
commit
936094ae95
@ -2,6 +2,8 @@
|
||||
#include "util.hpp"
|
||||
|
||||
#include <stdexcept>
|
||||
#include <climits>
|
||||
#include <cfloat>
|
||||
|
||||
#include <QUndoStack>
|
||||
#include <QMetaProperty>
|
||||
@ -157,16 +159,22 @@ QWidget *CSVWorld::CommandDelegate::createEditor (QWidget *parent, const QStyleO
|
||||
return new QLineEdit(parent);
|
||||
|
||||
case CSMWorld::ColumnBase::Display_Integer:
|
||||
|
||||
return new QSpinBox(parent);
|
||||
{
|
||||
QSpinBox *sb = new QSpinBox(parent);
|
||||
sb->setRange(INT_MIN, INT_MAX);
|
||||
return sb;
|
||||
}
|
||||
|
||||
case CSMWorld::ColumnBase::Display_Var:
|
||||
|
||||
return new QLineEdit(parent);
|
||||
|
||||
case CSMWorld::ColumnBase::Display_Float:
|
||||
|
||||
return new QDoubleSpinBox(parent);
|
||||
{
|
||||
QDoubleSpinBox *dsb = new QDoubleSpinBox(parent);
|
||||
dsb->setRange(FLT_MIN, FLT_MAX);
|
||||
return dsb;
|
||||
}
|
||||
|
||||
case CSMWorld::ColumnBase::Display_LongString:
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user