1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
3 // File: ModuleBase_WidgetIntValue.cpp
4 // Created: 04 June 2014
5 // Author: Vitaly Smetannikov
7 #include <ModuleBase_WidgetIntValue.h>
8 #include <ModuleBase_ParamSpinBox.h>
9 #include <ModuleBase_Tools.h>
10 #include <ModuleBase_ParamIntSpinBox.h>
11 #include <ModuleBase_IconFactory.h>
13 #include <ModelAPI_AttributeInteger.h>
14 #include <ModelAPI_Data.h>
16 #include <Config_Keywords.h>
17 #include <Config_WidgetAPI.h>
19 #include <Events_Loop.h>
20 #include <ModelAPI_Events.h>
23 #include <QFormLayout>
31 #define INT_MAX 2147483647
38 ModuleBase_WidgetIntValue::ModuleBase_WidgetIntValue(QWidget* theParent,
39 const Config_WidgetAPI* theData)
40 : ModuleBase_ModelWidget(theParent, theData)
42 QFormLayout* aControlLay = new QFormLayout(this);
43 ModuleBase_Tools::adjustMargins(aControlLay);
45 QString aLabelText = translate(theData->widgetLabel());
46 QString aLabelIcon = QString::fromStdString(theData->widgetIcon());
47 myLabel = new QLabel(aLabelText, this);
48 if (!aLabelIcon.isEmpty())
49 myLabel->setPixmap(ModuleBase_IconFactory::loadPixmap(aLabelIcon));
51 mySpinBox = new ModuleBase_ParamIntSpinBox(this);
52 QString anObjName = QString::fromStdString(attributeID());
53 mySpinBox->setObjectName(anObjName);
56 std::string aProp = theData->getProperty(DOUBLE_WDG_MIN);
57 int aMinVal = QString::fromStdString(aProp).toInt(&isOk);
59 mySpinBox->setMinimum(aMinVal);
61 mySpinBox->setMinimum(-INT_MAX);
64 aProp = theData->getProperty(DOUBLE_WDG_MAX);
65 int aMaxVal = QString::fromStdString(aProp).toInt(&isOk);
67 mySpinBox->setMaximum(aMaxVal);
69 mySpinBox->setMaximum(INT_MAX);
72 aProp = theData->getProperty(DOUBLE_WDG_STEP);
73 int aStepVal = QString::fromStdString(aProp).toInt(&isOk);
75 mySpinBox->setSingleStep(aStepVal);
78 int aDefVal = QString::fromStdString(getDefaultValue()).toInt(&isOk);
80 mySpinBox->setValue(aDefVal);
83 QString aTTip = translate(theData->widgetTooltip());
84 mySpinBox->setToolTip(aTTip);
85 myLabel->setToolTip(aTTip);
87 aControlLay->addRow(myLabel, mySpinBox);
88 connect(mySpinBox, SIGNAL(valueChanged(int)), this, SIGNAL(valuesModified()));
91 ModuleBase_WidgetIntValue::~ModuleBase_WidgetIntValue()
95 bool ModuleBase_WidgetIntValue::resetCustom()
98 if (!isUseReset() || isComputedDefault() || mySpinBox->hasVariable()) {
102 int aDefValue = QString::fromStdString(getDefaultValue()).toInt(&isOk);
103 // reset the value just if there is a default value definition in the XML definition
104 // if the value can not be found by the default value, do nothing
106 ModuleBase_Tools::setSpinValue(mySpinBox, aDefValue);
114 bool ModuleBase_WidgetIntValue::storeValueCustom()
116 DataPtr aData = myFeature->data();
117 AttributeIntegerPtr anAttribute = aData->integer(attributeID());
118 if (mySpinBox->hasVariable()) {
119 // Here is a text of a real value or an expression.
120 std::string aText = mySpinBox->text().toStdString();
121 anAttribute->setText(aText);
123 // it is important to set the empty text value to the attribute before set the value
124 // because setValue tries to calculate the attribute value according to the
125 // attribute current text
126 anAttribute->setText("");
127 anAttribute->setValue(mySpinBox->value());
129 updateObject(myFeature);
133 bool ModuleBase_WidgetIntValue::restoreValueCustom()
135 DataPtr aData = myFeature->data();
136 AttributeIntegerPtr anAttribute = aData->integer(attributeID());
137 std::string aTextRepr = anAttribute->text();
138 if (!aTextRepr.empty()) {
139 ModuleBase_Tools::setSpinText(mySpinBox, QString::fromStdString(aTextRepr));
141 ModuleBase_Tools::setSpinValue(mySpinBox, anAttribute->value());
146 void ModuleBase_WidgetIntValue::selectContent()
148 mySpinBox->selectAll();
151 QList<QWidget*> ModuleBase_WidgetIntValue::getControls() const
153 QList<QWidget*> aList;
154 aList.append(mySpinBox);
158 bool ModuleBase_WidgetIntValue::processEnter()
160 bool isModified = getValueState() == ModifiedInPP;
162 emit valuesChanged();
163 mySpinBox->selectAll();