X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetDoubleValue.h;h=81052981c140812c610bed898e3e47f30d6e3da7;hb=7cb6ac084270943d926ec7ef35bf9e63d6a3eaf5;hp=a83292914eda6145fcb24f9927d021705793a708;hpb=a24b7e6f4d112d5e7889fd76f030298fc428cd01;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetDoubleValue.h b/src/ModuleBase/ModuleBase_WidgetDoubleValue.h index a83292914..81052981c 100644 --- a/src/ModuleBase/ModuleBase_WidgetDoubleValue.h +++ b/src/ModuleBase/ModuleBase_WidgetDoubleValue.h @@ -10,7 +10,7 @@ #include "ModuleBase.h" #include "ModuleBase_ModelWidget.h" -class ModuleBase_DoubleSpinBox; +class ModuleBase_ParamSpinBox; class Config_WidgetAPI; class QWidget; class QLabel; @@ -38,11 +38,7 @@ Q_OBJECT virtual ~ModuleBase_WidgetDoubleValue(); /// Fills the widget with default values - virtual void reset(); - - //! Read value of corresponded attribute from data model to the input control - // \return True in success - virtual bool restoreValue(); + virtual bool reset(); /// Returns list of widget controls /// \return a control list @@ -58,12 +54,16 @@ protected: /// \return True in success virtual bool storeValueCustom() const; + //! Read value of corresponded attribute from data model to the input control + // \return True in success + virtual bool restoreValueCustom(); + protected: /// Label of the widget QLabel* myLabel; /// Input value control - ModuleBase_DoubleSpinBox* mySpinBox; + ModuleBase_ParamSpinBox* mySpinBox; }; #endif