Salome HOME
Merge branch 'Dev_1.1.0' of newgeom:newgeom into Dev_1.1.0
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetDoubleValue.h
index 2a5b6c2a1c28b63db3ccc283774c8a347f3b6f7f..fd447a78050f26c525c4e3029855b383df288e7c 100644 (file)
@@ -1,3 +1,5 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 // File:        ModuleBase_WidgetDoubleValue.h
 // Created:     04 June 2014
 // Author:      Vitaly Smetannikov
 #include "ModuleBase.h"
 #include "ModuleBase_ModelWidget.h"
 
+class ModuleBase_DoubleSpinBox;
 class Config_WidgetAPI;
 class QWidget;
 class QLabel;
-class QDoubleSpinBox;
+class QTimer;
 
-class MODULEBASE_EXPORT ModuleBase_WidgetDoubleValue: public ModuleBase_ModelWidget
+/**
+* \ingroup GUI
+* A class of property panel widget for double value input
+* It can be defined with "doublevalue" keyword. For example:
+* \code
+* <doublevalue id="x" label="X:" icon=":pictures/x_point.png" tooltip="X coordinate"/>
+* \endcode
+*/
+class MODULEBASE_EXPORT ModuleBase_WidgetDoubleValue : public ModuleBase_ModelWidget
 {
-  Q_OBJECT
-public:
+Q_OBJECT
+ public:
   /// Constructor
-  /// \theParent the parent object
-  /// \theData the widget configuation. The attribute of the model widget is obtained from
-  ModuleBase_WidgetDoubleValue(QWidget* theParent, const Config_WidgetAPI* theData);
+  /// \param theParent the parent object
+  /// \param theData the widget configuation. The attribute of the model widget is obtained from
+  /// \param theParentId is Id of a parent structure (widget, operation, group)
+  ModuleBase_WidgetDoubleValue(QWidget* theParent, const Config_WidgetAPI* theData,
+                               const std::string& theParentId);
 
   virtual ~ModuleBase_WidgetDoubleValue();
 
-  /// Saves the internal parameters to the given feature
-  /// \param theFeature a model feature to be changed
-  virtual bool storeValue(FeaturePtr theFeature) const;
+  /// Fills the widget with default values
+  virtual void reset();
 
-  virtual bool restoreValue(FeaturePtr theFeature);
+  //! Read value of corresponded attribute from data model to the input control
+  // \return True in success
+  virtual bool restoreValue();
 
   /// Returns list of widget controls
   /// \return a control list
@@ -36,17 +50,30 @@ public:
 
   /// Returns the internal parent wiget control, that can be shown anywhere
   /// \returns the widget
-  QWidget* getControl() const { return myContainer; }
+  QWidget* getControl() const
+  {
+    return myContainer;
+  }
 
-  /// Process key release envent on the widget spin box controls
-  /// \param theObject the object where the event happens
-  /// \param theEvent the processed event
-  virtual bool eventFilter(QObject *theObject, QEvent *theEvent);
+ 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:
-  QWidget*     myContainer;
-  QLabel*      myLabel;
-  QDoubleSpinBox* mySpinBox;
+  /// Saves the internal parameters to the given feature
+  /// \return True in success
+  virtual bool storeValueCustom() const;
+
+protected:
+   /// Container for thw widget controls
+  QWidget* myContainer;
+
+  /// Label of the widget
+  QLabel* myLabel;
+
+  /// Input value control
+  ModuleBase_DoubleSpinBox* mySpinBox;
 };
 
-#endif
\ No newline at end of file
+#endif