X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetDoubleValue.h;h=228efa0d2602946fde74a1947b9616e589fb24cd;hb=c8e35a67c60489a46aaf7c8ff75001511ac2635b;hp=9c7804bf9f09850aabe79dea14dd659f8469831d;hpb=b69a4c4ae0f7eb0e9c17d3db0229b04b1fe77ecf;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetDoubleValue.h b/src/ModuleBase/ModuleBase_WidgetDoubleValue.h index 9c7804bf9..228efa0d2 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; @@ -37,6 +37,9 @@ 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(); @@ -45,13 +48,6 @@ Q_OBJECT /// \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 @@ -60,17 +56,14 @@ Q_OBJECT protected: /// Saves the internal parameters to the given feature /// \return True in success - virtual bool storeValue() const; + virtual bool storeValueCustom() const; protected: - /// Container for thw widget controls - QWidget* myContainer; - /// Label of the widget QLabel* myLabel; /// Input value control - ModuleBase_DoubleSpinBox* mySpinBox; + ModuleBase_ParamSpinBox* mySpinBox; }; #endif