]> SALOME platform Git repositories - modules/shaper.git/blob - src/ModuleBase/ModuleBase_ModelWidget.h
Salome HOME
refs #80 - Sketch base GUI: create/draw point, circle and arc
[modules/shaper.git] / src / ModuleBase / ModuleBase_ModelWidget.h
1 // File:        ModuleBase_ModelWidget.h
2 // Created:     25 Apr 2014
3 // Author:      Natalia ERMOLAEVA
4
5 #ifndef ModuleBase_ModelWidget_H
6 #define ModuleBase_ModelWidget_H
7
8 #include <ModuleBase.h>
9
10 #include <ModelAPI_Feature.h>
11
12 #include <QObject>
13
14 #include <boost/shared_ptr.hpp>
15
16 class Config_WidgetAPI;
17 class ModelAPI_Feature;
18 class QKeyEvent;
19
20 /**\class ModuleBase_ModelWidget
21  * \brief An abstract custom widget class. This class realization is assumed to create some controls.
22  * The controls values modification should send signal about values change.
23  *
24  * Common interface for widgets in the property panel.
25  * Every widget are able to save/restore data from the model and/or to contain other widgets.
26  *
27  */
28 class MODULEBASE_EXPORT ModuleBase_ModelWidget : public QObject
29 {
30   Q_OBJECT
31 public:
32   /// Constructor
33   /// \theParent the parent object
34   /// \theData the widget configuation. The attribute of the model widget is obtained from
35   ModuleBase_ModelWidget(QObject* theParent, const Config_WidgetAPI* theData);
36   /// Destructor
37   virtual ~ModuleBase_ModelWidget() {};
38
39   /// Returns the state whether the attribute of the feature is initialized
40   /// \param theFeature a model feature to be checked
41   /// \return the boolean result
42   bool isInitialized(FeaturePtr theFeature) const;
43
44   /// Saves the internal parameters to the given feature
45   /// \param theFeature a model feature to be changed
46   virtual bool storeValue(FeaturePtr theFeature) const = 0;
47
48   virtual bool restoreValue(FeaturePtr theFeature) = 0;
49
50   /// Returns whether the widget can accept focus, or if it corresponds to the given attribute
51   /// \param theAttribute name
52   bool canFocusTo(const std::string& theAttributeName) const;
53
54   /// Set focus to the first control of the current widget. The focus policy of the control is checked.
55   /// If the widget has the NonFocus focus policy, it is skipped.
56   virtual void focusTo();
57
58   /// Returns list of widget controls
59   /// \return a control list
60   virtual QList<QWidget*> getControls() const = 0;
61
62   /// Returns whether the control has a default value
63   /// \return a boolean value
64   bool hasDefaultValue() const { return myHasDefaultValue; }
65
66   /// Returns the attribute name
67   /// \returns the string value
68   std::string attributeID() const;
69
70 signals:
71   /// The signal about widget values changed
72   void valuesChanged();
73   /// The signal about key release on the control, that corresponds to the attribute
74   /// \param theAttributeName a name of the attribute
75   /// \param theEvent key release event
76   void keyReleased(const std::string& theAttributeName, QKeyEvent* theEvent);
77   /// The signal about the widget is lost focus
78   /// \param theWidget the model base widget
79   void focusOutWidget(ModuleBase_ModelWidget* theWidget);
80
81 protected:
82   /// Returns the attribute name
83   /// \returns the string value
84   void setAttributeID(const std::string& theAttribute) { myAttributeID = theAttribute; }
85
86   bool myHasDefaultValue; /// the boolean state whether the control has a default value
87
88 private:
89   std::string myAttributeID; /// the attribute name of the model feature
90 };
91
92 #endif