Salome HOME
Merge branch 'Dev_1.1.0' of newgeom:newgeom into Dev_1.1.0
[modules/shaper.git] / src / ModuleBase / ModuleBase_ModelWidget.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        ModuleBase_ModelWidget.h
4 // Created:     25 Apr 2014
5 // Author:      Natalia ERMOLAEVA
6
7 #ifndef MODULEBASE_MODELWIDGET_H
8 #define MODULEBASE_MODELWIDGET_H
9
10 #include <ModuleBase.h>
11 #include <ModuleBase_ViewerPrs.h>
12
13 #include <ModelAPI_Feature.h>
14
15 #include <QObject>
16
17 #include <memory>
18
19 class Config_WidgetAPI;
20 class QKeyEvent;
21
22 /**\class ModuleBase_ModelWidget
23  * \ingroup GUI
24  * \brief An abstract custom widget class. This class realization is assumed to create some controls.
25  * The controls values modification should send signal about values change.
26  *
27  * Common interface for widgets in the property panel.
28  * Every widget are able to save/restore data from the model and/or to contain other widgets.
29  *
30  */
31 class MODULEBASE_EXPORT ModuleBase_ModelWidget : public QObject
32 {
33 Q_OBJECT
34  public:
35   /// Constructor
36   /// \param theParent the parent object
37   /// \param theData the widget configuation. The attribute of the model widget is obtained from
38   /// \param theParentId is Id of a parent of the current attribute
39   ModuleBase_ModelWidget(QWidget* theParent, const Config_WidgetAPI* theData,
40                          const std::string& theParentId);
41   /// Destructor
42   virtual ~ModuleBase_ModelWidget()
43   {
44   }
45
46   /// Returns the state whether the attribute of the feature is initialized
47   /// \param theObject a model feature to be checked
48   /// \return the boolean result
49   bool isInitialized(ObjectPtr theObject) const;
50
51   /// Returns true, if default value of the widget should be computed
52   /// on operation's execute, like radius for circle's constraint (can not be zero)
53   bool isComputedDefault() { return myIsComputedDefault; }
54
55   /// Returns true, if default value of the widget is defined in the XML and it is not the
56   /// computed value
57   /// \return the boolean result
58   bool isValueDefault() { return myIsValueDefault; }
59
60   /// Defines if it is supposed that the widget should interact with the viewer.
61   virtual bool isViewerSelector() { return false; }
62
63   /// Defines if it is supported to set the value in this widget
64   /// By default it returns true
65   virtual bool canSetValue() const { return true; };
66
67   /// Set the given wrapped value to the current widget
68   /// This value should be processed in the widget according to the needs
69   /// \param theValue the wrapped widget value
70   virtual bool setSelection(ModuleBase_ViewerPrs theValue)
71   {
72     return false;
73   }
74
75   /// Saves the internal parameters to the given feature
76   virtual bool storeValue() const = 0;
77
78   /// Restore value from attribute data to the widget's control
79   virtual bool restoreValue() = 0;
80
81   /// Set focus to the first control of the current widget. The focus policy of the control is checked.
82   /// If the widget has the NonFocus focus policy, it is skipped.
83   /// \return the state whether the widget can accept the focus
84   virtual bool focusTo();
85
86   /// The methiod called when widget is activated
87   void activate();
88
89   /// The methiod called when widget is deactivated
90   virtual void deactivate() {}
91
92   /// Returns the internal parent wiget control, that can be shown anywhere
93   /// \returns the widget
94   virtual QWidget* getControl() const = 0;
95
96   /// Returns list of widget controls
97   /// \return a control list
98   virtual QList<QWidget*> getControls() const = 0;
99
100   /// FocusIn events processing
101   virtual bool eventFilter(QObject* theObject, QEvent *theEvent);
102
103   //! \brief Enables processing of focus event on all controls by the widget
104   void enableFocusProcessing();
105
106   //! Switch On/Off highlighting of the widget
107   void setHighlighted(bool isHighlighted);
108
109   /// Returns the attribute name
110   /// \returns the string value
111   std::string attributeID() const
112   {
113     return myAttributeID;
114   }
115
116   /// Returns the parent of the attribute
117   /// \returns the string value
118   std::string parentID() const
119   {
120     return myParentId;
121   }
122
123   /// \return Current feature
124   FeaturePtr feature() const
125   {
126     return myFeature;
127   }
128
129   /// Set feature which is processing by active operation
130   void setFeature(const FeaturePtr& theFeature)
131   {
132     myFeature = theFeature;
133   }
134
135   /// Editing mode depends on mode of current operation. This value is defined by it.
136   void setEditingMode(bool isEditing) { myIsEditing = isEditing; }
137
138   /// \return Current Editing mode
139   bool isEditingMode() const { return myIsEditing; }
140
141 signals:
142   /// The signal about widget values changed
143   void valuesChanged();
144
145   /// The signal about key release on the control, that corresponds to the attribute
146   /// \param theEvent key release event
147   void keyReleased(QKeyEvent* theEvent);
148
149   /// The signal about the widget is get focus
150   /// \param theWidget the model base widget
151   void focusInWidget(ModuleBase_ModelWidget* theWidget);
152
153   /// The signal about the widget is lost focus
154   /// \param theWidget the model base widget
155   void focusOutWidget(ModuleBase_ModelWidget* theWidget);
156
157  protected:
158   /// \brief Set the attribute name
159   /// \param theAttribute the string value with attribute name
160   void setAttributeID(const std::string& theAttribute)
161   {
162     myAttributeID = theAttribute;
163   }
164
165   /// The methiod called when widget is activated
166   virtual void activateCustom() {};
167
168   /// Sends Update and Redisplay for the given object
169   /// \param theObj is updating object
170   void updateObject(ObjectPtr theObj) const;
171
172   /// Sends Move event for the given object
173   /// \param theObj is object for moving
174   void moveObject(ObjectPtr theObj) const;
175
176  protected:
177
178   /// The attribute name of the model feature
179   std::string myAttributeID; 
180
181   /// Name of parent
182   std::string myParentId;    
183
184   /// A feature which is processing by active operation
185   FeaturePtr myFeature;      
186
187   /// Value should be computed on execute, like radius for circle's constraint (can not be zero)
188   bool myIsComputedDefault; 
189                         
190   /// the default value is defined in the XML for this attribute    
191   bool myIsValueDefault;
192   /// Flag which shows that current operation is in editing mode
193   bool myIsEditing; 
194 };
195
196 #endif