X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetDoubleValue.cpp;h=4053a2a4b6c8d33f25b9c116462d7d9d3ca93555;hb=9d5239835cc367320272dd367a2e6453e109c91d;hp=cd1cc4565516040add4c830fc3ea2b6100595618;hpb=2af64c581d1ed96ce5ecc455f27a537e3a63fcb5;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetDoubleValue.cpp b/src/ModuleBase/ModuleBase_WidgetDoubleValue.cpp index cd1cc4565..4053a2a4b 100644 --- a/src/ModuleBase/ModuleBase_WidgetDoubleValue.cpp +++ b/src/ModuleBase/ModuleBase_WidgetDoubleValue.cpp @@ -18,7 +18,7 @@ #include #include -#include +#include #include #include #include @@ -37,18 +37,16 @@ ModuleBase_WidgetDoubleValue::ModuleBase_WidgetDoubleValue(QWidget* theParent, const std::string& theParentId) : ModuleBase_ModelWidget(theParent, theData, theParentId) { - myContainer = new QWidget(theParent); - QHBoxLayout* aControlLay = new QHBoxLayout(myContainer); + QFormLayout* aControlLay = new QFormLayout(this); ModuleBase_Tools::adjustMargins(aControlLay); QString aLabelText = QString::fromStdString(theData->widgetLabel()); QString aLabelIcon = QString::fromStdString(theData->widgetIcon()); - myLabel = new QLabel(aLabelText, myContainer); + myLabel = new QLabel(aLabelText, this); if (!aLabelIcon.isEmpty()) myLabel->setPixmap(QPixmap(aLabelIcon)); - aControlLay->addWidget(myLabel); - mySpinBox = new ModuleBase_DoubleSpinBox(myContainer); + mySpinBox = new ModuleBase_DoubleSpinBox(this); QString anObjName = QString::fromStdString(attributeID()); mySpinBox->setObjectName(anObjName); @@ -79,19 +77,15 @@ ModuleBase_WidgetDoubleValue::ModuleBase_WidgetDoubleValue(QWidget* theParent, mySpinBox->setSingleStep(aStepVal); } - double aDefVal = QString::fromStdString(myDefaultValue).toDouble(&isOk); + double aDefVal = QString::fromStdString(getDefaultValue()).toDouble(&isOk); if (isOk) { mySpinBox->setValue(aDefVal); - } else if (aProp == DOUBLE_WDG_DEFAULT_COMPUTED){ - myIsComputedDefault = true; } QString aTTip = QString::fromStdString(theData->widgetTooltip()); mySpinBox->setToolTip(aTTip); - aControlLay->addWidget(mySpinBox); - aControlLay->setStretch(1, 1); - + aControlLay->addRow(myLabel, mySpinBox); connect(mySpinBox, SIGNAL(valueChanged(double)), this, SIGNAL(valuesChanged())); } @@ -101,12 +95,20 @@ ModuleBase_WidgetDoubleValue::~ModuleBase_WidgetDoubleValue() void ModuleBase_WidgetDoubleValue::reset() { - bool isOk; - double aDefValue = QString::fromStdString(myDefaultValue).toDouble(&isOk); - mySpinBox->setValue(isOk ? aDefValue : 0.0); + if (isComputedDefault()) { + return; + //if (myFeature->compute(myAttributeID)) + // restoreValue(); + } + else { + bool isOk; + double aDefValue = QString::fromStdString(getDefaultValue()).toDouble(&isOk); + ModuleBase_Tools::setSpinValue(mySpinBox, isOk ? aDefValue : 0.0); + storeValueCustom(); + } } -bool ModuleBase_WidgetDoubleValue::storeValue() const +bool ModuleBase_WidgetDoubleValue::storeValueCustom() const { DataPtr aData = myFeature->data(); AttributeDoublePtr aReal = aData->real(attributeID()); @@ -120,9 +122,7 @@ bool ModuleBase_WidgetDoubleValue::restoreValue() DataPtr aData = myFeature->data(); AttributeDoublePtr aRef = aData->real(attributeID()); - bool isBlocked = mySpinBox->blockSignals(true); - mySpinBox->setValue(aRef->value()); - mySpinBox->blockSignals(isBlocked); + ModuleBase_Tools::setSpinValue(mySpinBox, aRef->value()); return true; }