Salome HOME
Constriction type for all sketch entities
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetDoubleValue.h
index 9c7804bf9f09850aabe79dea14dd659f8469831d..a83292914eda6145fcb24f9927d021705793a708 100644 (file)
@@ -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<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
@@ -60,12 +56,9 @@ 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;