Salome HOME
Merge Dev_2.1.0 with PythonAPI branch
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetIntValue.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        ModuleBase_WidgetIntValue.h
4 // Created:     04 June 2014
5 // Author:      Vitaly Smetannikov
6
7 #ifndef ModuleBase_WidgetIntValue_H
8 #define ModuleBase_WidgetIntValue_H
9
10 #include "ModuleBase.h"
11 #include "ModuleBase_ModelWidget.h"
12
13 class ModuleBase_IntSpinBox;
14 class Config_WidgetAPI;
15 class QWidget;
16 class QLabel;
17 class QTimer;
18
19 /**
20 * \ingroup GUI
21 * A class of property panel widget for double value input
22 * It can be defined with "doublevalue" keyword. For example:
23 * \code
24 * <doublevalue id="x" label="X:" icon=":pictures/x_point.png" tooltip="X coordinate"/>
25 * \endcode
26 */
27 class MODULEBASE_EXPORT ModuleBase_WidgetIntValue : public ModuleBase_ModelWidget
28 {
29 Q_OBJECT
30  public:
31   /// Constructor
32   /// \param theParent the parent object
33   /// \param theData the widget configuation. The attribute of the model widget is obtained from
34   /// \param theParentId is Id of a parent structure (widget, operation, group)
35   ModuleBase_WidgetIntValue(QWidget* theParent, const Config_WidgetAPI* theData,
36                                const std::string& theParentId);
37
38   virtual ~ModuleBase_WidgetIntValue();
39
40   /// Returns list of widget controls
41   /// \return a control list
42   virtual QList<QWidget*> getControls() const;
43
44   /// Returns true if the event is processed.
45   virtual bool processEnter();
46
47 protected:
48   /// Saves the internal parameters to the given feature
49   /// \return True in success
50   virtual bool storeValueCustom() const;
51
52   //! Read value of corresponded attribute from data model to the input control
53   // \return True in success
54   virtual bool restoreValueCustom();
55
56   /// Fills the widget with default values
57   /// \return true if the widget current value is reset
58   virtual bool resetCustom();
59
60 protected:
61   /// Label of the widget
62   QLabel* myLabel;
63
64   /// Input value control
65   ModuleBase_IntSpinBox* mySpinBox;
66 };
67
68 #endif