X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetDoubleValue.h;h=81052981c140812c610bed898e3e47f30d6e3da7;hb=ace68008dc38022136ba6ed10c7be5e7c8152051;hp=fd447a78050f26c525c4e3029855b383df288e7c;hpb=0a76161addf39a6d03b90308eb99abc3a8d10e74;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetDoubleValue.h b/src/ModuleBase/ModuleBase_WidgetDoubleValue.h index fd447a780..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,23 +38,12 @@ 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 virtual QList getControls() const; - /// Returns the internal parent wiget control, that can be shown anywhere - /// \returns the widget - QWidget* getControl() const - { - return myContainer; - } - public slots: // Delayed value chnged: when user starts typing something, // it gives him a 0,5 second to finish typing, when sends valueChnaged() signal @@ -65,15 +54,16 @@ protected: /// \return True in success virtual bool storeValueCustom() const; -protected: - /// Container for thw widget controls - QWidget* myContainer; + //! 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