*/
ModuleBase_ParamSpinBox::ModuleBase_ParamSpinBox(QWidget* theParent, int thePrecision)
: ModuleBase_DoubleSpinBox(theParent, thePrecision),
- myAcceptVariables(true),
- myHasVariables(false),
- myDefaultValue(0.)
+ myAcceptVariables(true)
{
connectSignalsAndSlots();
}
*/
void ModuleBase_ParamSpinBox::stepBy(int steps)
{
- QString str = text();
- QString pref = prefix();
- QString suff = suffix();
-
- if (pref.length() && str.startsWith(pref))
- str = str.right(str.length() - pref.length());
- if (suff.length() && str.endsWith(suff))
- str = str.left(str.length() - suff.length());
-
- QRegExp varNameMask("([a-z]|[A-Z]|_).*");
- if (varNameMask.exactMatch(str))
+ if (hasVariable())
return;
ModuleBase_DoubleSpinBox::stepBy(steps);
double value = 0;
if (isValid(text, value) == Acceptable) {
myCorrectValue = text;
- myHasVariables = true;
- } else {
- myHasVariables = false;
}
}
*/
double ModuleBase_ParamSpinBox::valueFromText(const QString& theText) const
{
- double aValue = 0;
- if (isValid(theText, aValue) == Acceptable)
- return aValue;
-
- return defaultValue();
-}
-
-/*!
- \brief This function is used by the spin box whenever it needs to display
- the given value.
+ if (!hasVariable(theText))
+ return ModuleBase_DoubleSpinBox::valueFromText(theText);
- \param val spin box value
- \return text representation of the value
- \sa valueFromText()
- */
-QString ModuleBase_ParamSpinBox::textFromValue(double val) const
-{
- return ModuleBase_DoubleSpinBox::textFromValue(val);
+ double aValue = 0;
+ findVariable(theText, aValue);
+ return aValue;
}
/*!
*/
QValidator::State ModuleBase_ParamSpinBox::validate(QString& str, int& pos) const
{
+ // Trying to interpret the current input text as a numeric value
+ if (!hasVariable(str))
+ return ModuleBase_DoubleSpinBox::validate(str, pos);
+
QValidator::State res = QValidator::Invalid;
// Considering the input text as a variable name
res = QValidator::Intermediate;
}
}
-
- // Trying to interpret the current input text as a numeric value
- if (res == QValidator::Invalid)
- res = ModuleBase_DoubleSpinBox::validate(str, pos);
-
return res;
}
-/*!
- \brief This function is used to set a default value for this spinbox.
- \param value default value
- */
-void ModuleBase_ParamSpinBox::setDefaultValue(const double value)
-{
- myDefaultValue = value;
-}
-
/*!
\brief This function is used to set a current value for this spinbox.
\param value current value
return myAcceptVariables;
}
-bool ModuleBase_ParamSpinBox::hasVariables() const
+bool ModuleBase_ParamSpinBox::hasVariable() const
+{
+ return hasVariable(text());
+}
+
+bool ModuleBase_ParamSpinBox::hasVariable(const QString& theText) const
{
- return myHasVariables;
+ QRegExp varNameMask("([a-z]|[A-Z]|_).*");
+ return varNameMask.exactMatch(theText);
}
/*!
ModuleBase_ParamSpinBox::State ModuleBase_ParamSpinBox::isValid(const QString& theText,
double& theValue) const
{
- if (!findVariable(theText, theValue)) {
+ if (hasVariable() && !findVariable(theText, theValue)) {
bool ok = false;
theValue = locale().toDouble(theText, &ok);
if (!ok) {
return Acceptable;
}
-/*!
- \brief This function return a default acceptable value (commonly, 0.0).
- \return default acceptable value
- */
-double ModuleBase_ParamSpinBox::defaultValue() const
-{
- if (minimum() > myDefaultValue || maximum() < myDefaultValue)
- return minimum();
-
- return myDefaultValue;
-}
-
/*!
\brief This function is used to check that string value lies within predefined range.
\return check status
/*!
\brief This function is called when the spinbox recieves show event.
*/
-void ModuleBase_ParamSpinBox::showEvent(QShowEvent*)
+void ModuleBase_ParamSpinBox::showEvent(QShowEvent* theEvent)
{
- setText(myTextValue);
+ ModuleBase_DoubleSpinBox::showEvent(theEvent);
+ //setText(myTextValue);
}
virtual void stepBy(int);
virtual double valueFromText(const QString&) const;
- virtual QString textFromValue(double) const;
virtual QValidator::State validate(QString&, int&) const;
- virtual void setDefaultValue(const double);
-
virtual void setValue(double);
virtual void setText(const QString&);
void setAcceptVariables(const bool);
bool isAcceptVariables() const;
- bool hasVariables() const;
+ bool hasVariable() const;
signals:
void textChanged(const QString&);
protected:
+ bool hasVariable(const QString& theText) const;
State isValid(const QString&, double&) const;
- double defaultValue() const;
bool checkRange(const double) const;
bool findVariable(const QString&, double&) const;
void connectSignalsAndSlots();
private:
- double myDefaultValue;
-
QString myCorrectValue;
QString myTextValue;
bool myAcceptVariables;
- bool myHasVariables;
};
#endif