Salome HOME
Using variables in WidgetDoubleValue
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetDoubleValue.h
index c9032e66a3943fd31541e0a1bc365ff59a004854..228efa0d2602946fde74a1947b9616e589fb24cd 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;
@@ -37,9 +37,8 @@ Q_OBJECT
 
   virtual ~ModuleBase_WidgetDoubleValue();
 
-  //! Saves the internal parameters to the given feature
-  // \return True in success
-  virtual bool storeValue() const;
+  /// 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
@@ -49,27 +48,22 @@ Q_OBJECT
   /// \return a control list
   virtual QList<QWidget*> 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
 //  void onValueChanged();
 
- protected:
-   /// Container for thw widget controls
-  QWidget* myContainer;
+protected:
+  /// Saves the internal parameters to the given feature
+  /// \return True in success
+  virtual bool storeValueCustom() const;
 
+protected:
   /// Label of the widget
   QLabel* myLabel;
 
   /// Input value control
-  ModuleBase_DoubleSpinBox* mySpinBox;
+  ModuleBase_ParamSpinBox* mySpinBox;
 };
 
 #endif