Salome HOME
Optimize the flushing: this improvement speed ups the unit test for 3-4 times
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetDoubleValue.h
index a5a666f05a7eb579eeb1ed7b6448a32489746f0a..81052981c140812c610bed898e3e47f30d6e3da7 100644 (file)
@@ -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
@@ -56,14 +52,18 @@ Q_OBJECT
 protected:
   /// Saves the internal parameters to the given feature
   /// \return True in success
-  virtual bool storeValue() const;
+  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