X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetDoubleValue.cpp;h=a17ea26c9793ee4a8c3acab86dc7f5df40b0646b;hb=af851100774c4ff33b515c884abe0cd03c3f0528;hp=8e8843af938c20af03295be7e04edd644742d20a;hpb=cedbcc9f78684b65af0d19da1066710314374f93;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetDoubleValue.cpp b/src/ModuleBase/ModuleBase_WidgetDoubleValue.cpp index 8e8843af9..a17ea26c9 100644 --- a/src/ModuleBase/ModuleBase_WidgetDoubleValue.cpp +++ b/src/ModuleBase/ModuleBase_WidgetDoubleValue.cpp @@ -5,10 +5,11 @@ // Author: Vitaly Smetannikov #include -#include +#include #include #include +#include #include #include @@ -18,7 +19,7 @@ #include #include -#include +#include #include #include #include @@ -37,18 +38,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_ParamSpinBox(this); QString anObjName = QString::fromStdString(attributeID()); mySpinBox->setObjectName(anObjName); @@ -79,19 +78,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 (theData->getProperty(ATTR_DEFAULT) == 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,19 +96,33 @@ ModuleBase_WidgetDoubleValue::~ModuleBase_WidgetDoubleValue() void ModuleBase_WidgetDoubleValue::reset() { - if (myIsComputedDefault) + if (isComputedDefault()) { return; - - bool isOk; - double aDefValue = QString::fromStdString(myDefaultValue).toDouble(&isOk); - ModuleBase_Tools::setSpinValue(mySpinBox, isOk ? aDefValue : 0.0); + //if (myFeature->compute(myAttributeID)) + // restoreValue(); + } + else { + bool isOk; + double aDefValue = QString::fromStdString(getDefaultValue()).toDouble(&isOk); + // reset the value just if there is a default value definition in the XML definition + // if the double value can not be found by the default value, do nothing + if (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()); aReal->setValue(mySpinBox->value()); + std::string aTextRepr = aReal->text(); + if (mySpinBox->hasVariable()) { + aTextRepr = mySpinBox->text().toStdString(); + } + aReal->setText(aTextRepr); updateObject(myFeature); return true; } @@ -122,9 +131,12 @@ bool ModuleBase_WidgetDoubleValue::restoreValue() { DataPtr aData = myFeature->data(); AttributeDoublePtr aRef = aData->real(attributeID()); - - ModuleBase_Tools::setSpinValue(mySpinBox, aRef->value()); - + std::string aTextRepr = aRef->text(); + if (!aTextRepr.empty()) { + mySpinBox->setText(QString::fromStdString(aTextRepr)); + } else { + ModuleBase_Tools::setSpinValue(mySpinBox, aRef->value()); + } return true; }