Salome HOME
Constriction type for all sketch entities
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetDoubleValue.h
index 5c1ef4bb9f84e3923a386d52fbe78e3b9f0d0e4a..a83292914eda6145fcb24f9927d021705793a708 100644 (file)
@@ -17,9 +17,12 @@ class QLabel;
 class QTimer;
 
 /**
+* \ingroup GUI
 * A class of property panel widget for double value input
 * It can be defined with "doublevalue" keyword. For example:
-* "<doublevalue id="x" label="X:" icon=":pictures/x_point.png" tooltip="X coordinate"/>"
+* \code
+* <doublevalue id="x" label="X:" icon=":pictures/x_point.png" tooltip="X coordinate"/>
+* \endcode
 */
 class MODULEBASE_EXPORT ModuleBase_WidgetDoubleValue : public ModuleBase_ModelWidget
 {
@@ -34,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
@@ -46,22 +48,17 @@ 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;