Salome HOME
Task 2.7: Completion for Int spin box
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetDoubleValue.cpp
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include <Config_Keywords.h>
22 #include <Config_WidgetAPI.h>
23 #include <Events_Loop.h>
24
25 #include <ModelAPI_AttributeDouble.h>
26 #include <ModelAPI_Data.h>
27 #include <ModelAPI_Object.h>
28 #include <ModelAPI_Session.h>
29 #include <ModelAPI_Document.h>
30 #include <ModelAPI_ResultParameter.h>
31 #include <ModelAPI_AttributeDouble.h>
32 #include <ModelAPI_Tools.h>
33 #include <ModelAPI_Events.h>
34 #include <ModelAPI_AttributeString.h>
35
36 #include <ModuleBase_ParamSpinBox.h>
37 #include <ModuleBase_Tools.h>
38 #include <ModuleBase_WidgetDoubleValue.h>
39 #include <ModuleBase_IconFactory.h>
40
41 #include <QFormLayout>
42 #include <QLabel>
43 #include <QList>
44 #include <QObject>
45 #include <QPixmap>
46 #include <QString>
47
48 #include <cfloat>
49
50 #ifndef DBL_MAX
51 #define DBL_MAX 1.7976931348623158e+308
52 #endif
53 #ifdef _DEBUG
54 #include <iostream>
55 #endif
56
57 ModuleBase_WidgetDoubleValue::ModuleBase_WidgetDoubleValue(QWidget* theParent,
58                                                            const Config_WidgetAPI* theData)
59     : ModuleBase_ModelWidget(theParent, theData)
60 {
61   QFormLayout* aControlLay = new QFormLayout(this);
62   ModuleBase_Tools::adjustMargins(aControlLay);
63
64   QString aLabelText = translate(theData->widgetLabel());
65   QString aLabelIcon = QString::fromStdString(theData->widgetIcon());
66   myLabel = new QLabel(aLabelText, this);
67   if (!aLabelIcon.isEmpty())
68     myLabel->setPixmap(ModuleBase_IconFactory::loadPixmap(aLabelIcon));
69
70   bool aAcceptVariables = theData->getBooleanAttribute(DOUBLE_WDG_ACCEPT_EXPRESSIONS, true);
71
72   mySpinBox = new ModuleBase_ParamSpinBox(this);
73   mySpinBox->setAcceptVariables(aAcceptVariables);
74   QString anObjName = QString::fromStdString(attributeID());
75   mySpinBox->setObjectName(anObjName);
76
77   bool isOk = false;
78   std::string aProp = theData->getProperty(DOUBLE_WDG_MIN);
79   double aMinVal = QString::fromStdString(aProp).toDouble(&isOk);
80   if (isOk) {
81     mySpinBox->setMinimum(aMinVal);
82   } else {
83     mySpinBox->setMinimum(-DBL_MAX);
84   }
85
86   aProp = theData->getProperty(DOUBLE_WDG_MAX);
87   double aMaxVal = QString::fromStdString(aProp).toDouble(&isOk);
88   if (isOk) {
89     mySpinBox->setMaximum(aMaxVal);
90   } else {
91     mySpinBox->setMaximum(DBL_MAX);
92   }
93
94   aProp = theData->getProperty(DOUBLE_WDG_STEP);
95   double aStepVal = QString::fromStdString(aProp).toDouble(&isOk);
96   if (isOk) {
97     double aMinStep = pow(10, -1. * (double) mySpinBox->decimals());
98     if(aStepVal < aMinStep){
99       aStepVal = aMinStep;
100     }
101     mySpinBox->setSingleStep(aStepVal);
102   }
103
104   double aDefVal = QString::fromStdString(getDefaultValue()).toDouble(&isOk);
105   if (isOk) {
106     mySpinBox->setValue(aDefVal);
107   }
108
109   QString aTTip = translate(theData->widgetTooltip());
110   mySpinBox->setToolTip(aTTip);
111   myLabel->setToolTip(aTTip);
112
113   aControlLay->addRow(myLabel, mySpinBox);
114   // we should listen textChanged signal as valueChanged do not send when text is modified
115   connect(mySpinBox, SIGNAL(textChanged(const QString&)), this, SIGNAL(valuesModified()));
116   mySpinBox->setValueEnabled(isValueEnabled());
117 }
118
119 ModuleBase_WidgetDoubleValue::~ModuleBase_WidgetDoubleValue()
120 {
121 }
122
123 void ModuleBase_WidgetDoubleValue::activateCustom()
124 {
125   ModuleBase_ModelWidget::activateCustom();
126   QStringList aParameters;
127   ModuleBase_Tools::getParameters(aParameters);
128   mySpinBox->setCompletionList(aParameters);
129 }
130
131 bool ModuleBase_WidgetDoubleValue::resetCustom()
132 {
133   bool aDone = false;
134   if (!isUseReset() || isComputedDefault() || mySpinBox->hasVariable()) {
135     aDone = false;
136   } else {
137     bool isOk;
138     double aDefValue = QString::fromStdString(getDefaultValue()).toDouble(&isOk);
139     // reset the value just if there is a default value definition in the XML definition
140     // if the value can not be found by the default value, do nothing
141     if (isOk) {
142       ModuleBase_Tools::setSpinValue(mySpinBox, aDefValue);
143       storeValue();
144       aDone = true;
145     }
146   }
147   return aDone;
148 }
149
150 bool ModuleBase_WidgetDoubleValue::storeValueCustom()
151 {
152   DataPtr aData = myFeature->data();
153   AttributeDoublePtr aReal = aData->real(attributeID());
154   if (mySpinBox->hasVariable()) {
155     // Here is a text of a real value or an expression.
156     QString aText = mySpinBox->text();
157     if (aText.contains('=')) {
158       if (!myParameter.get()) {
159         myParameter = ModuleBase_Tools::createParameter(aText);
160         if (!myParameter.get()) {
161           aReal->setExpressionError("Parameter cannot be created");
162           aReal->setExpressionInvalid(true);
163           updateObject(myFeature);
164           return false;
165         } else if (aReal->expressionInvalid()) {
166           aReal->setExpressionError("");
167           aReal->setExpressionInvalid(false);
168         }
169       } else {
170         ModuleBase_Tools::editParameter(myParameter, aText);
171       }
172       aText = aText.split('=').at(0) + "=";
173     } else if (myParameter.get()){
174       // Nullyfy the parameter reference without deletion of the created
175       myParameter = FeaturePtr();
176     }
177     aReal->setText(aText.toStdString());
178   } else {
179     // it is important to set the empty text value to the attribute before set the value
180     // because setValue tries to calculate the attribute value according to the
181     // attribute current text
182     aReal->setText("");
183     aReal->setValue(mySpinBox->value());
184   }
185   updateObject(myFeature);
186   return true;
187 }
188
189 bool ModuleBase_WidgetDoubleValue::restoreValueCustom()
190 {
191   DataPtr aData = myFeature->data();
192   AttributeDoublePtr aRef = aData->real(attributeID());
193   std::string aTextRepr = aRef->text();
194   if (!aTextRepr.empty()) {
195     QString aText = QString::fromStdString(aTextRepr);
196     if (aText.endsWith('=')) {
197       if (!myParameter.get()) {
198         QString aName = aText.left(aText.indexOf('=')).trimmed();
199         myParameter = ModuleBase_Tools::findParameter(aName);
200       }
201       /// If myParameter is empty then it was not created because of an error
202       if (!myParameter.get())
203         return false;
204
205       AttributeStringPtr aExprAttr = myParameter->string("expression");
206       aText += aExprAttr->value().c_str();
207     }
208     ModuleBase_Tools::setSpinText(mySpinBox, aText);
209   } else {
210     ModuleBase_Tools::setSpinValue(mySpinBox, aRef->isInitialized() ? aRef->value() : 0);
211   }
212   return true;
213 }
214
215 void ModuleBase_WidgetDoubleValue::selectContent()
216 {
217   mySpinBox->selectAll();
218 }
219
220 QList<QWidget*> ModuleBase_WidgetDoubleValue::getControls() const
221 {
222   QList<QWidget*> aList;
223   aList.append(mySpinBox);
224   return aList;
225 }
226
227 bool ModuleBase_WidgetDoubleValue::processEnter()
228 {
229   bool isModified = getValueState() == ModifiedInPP;
230   if (isModified) {
231     emit valuesChanged();
232     mySpinBox->selectAll();
233   }
234   return isModified;
235 }