plugin: [skip ci] add custom widgets Gui::IntSpinBox and Gui::DoubleSpinBox

This commit is contained in:
wmayer
2020-08-12 11:38:31 +02:00
parent 0811c61435
commit 93bb9646c3
3 changed files with 143 additions and 0 deletions

View File

@@ -1626,6 +1626,18 @@ void UIntSpinBox::updateValidator()
// --------------------------------------------------------------------
IntSpinBox::IntSpinBox(QWidget* parent)
: QSpinBox(parent)
{
}
IntSpinBox::~IntSpinBox()
{
}
// --------------------------------------------------------------------
PrefSpinBox::PrefSpinBox ( QWidget * parent )
: QSpinBox(parent)
{
@@ -1657,6 +1669,17 @@ void PrefSpinBox::setParamGrpPath ( const QByteArray& name )
// --------------------------------------------------------------------
DoubleSpinBox::DoubleSpinBox(QWidget* parent)
: QDoubleSpinBox(parent)
{
}
DoubleSpinBox::~DoubleSpinBox()
{
}
// --------------------------------------------------------------------
PrefDoubleSpinBox::PrefDoubleSpinBox ( QWidget * parent )
: QDoubleSpinBox(parent)
{