Salome HOME
2075a16dee145981c8b13b56695c504b2f7b9ce7
[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_OperationFeature.h>
12 #include <ModelAPI_Feature.h>
13
14 #include <QWidget>
15
16 #include <memory>
17
18 class Config_WidgetAPI;
19 class ModuleBase_IWorkshop;
20 class ModuleBase_ViewerPrs;
21 class ModuleBase_WidgetValidator;
22 class QKeyEvent;
23
24 /**\class ModuleBase_ModelWidget
25  * \ingroup GUI
26  * \brief An abstract custom widget class. This class realization is assumed to create some controls.
27  * The controls values modification should send signal about values change.
28  *
29  * Common interface for widgets in the property panel.
30  * Every widget are able to save/restore data from the model and/or to contain other widgets.
31  *
32  */
33 class MODULEBASE_EXPORT ModuleBase_ModelWidget : public QWidget
34 {
35 Q_OBJECT
36  public:
37    /// State of the widget
38    enum ValueState { Stored, /// modification is finished and applyed to the model
39                      ModifiedInPP, /// modification has not been finished and set to the model yet
40                      ModifiedInViewer, /// modification performed by viewer events
41                      Reset }; /// the value is reset
42
43   /// Constructor
44   /// \param theParent the parent object
45   /// \param theData the widget configuration. The attribute of the model widget is obtained from
46   /// \param theData a low-level API for reading xml definitions of widgets
47   ModuleBase_ModelWidget(QWidget* theParent, const Config_WidgetAPI* theData);
48   /// Destructor
49   virtual ~ModuleBase_ModelWidget()
50   {
51   }
52
53   /// Fills the widget with default values. It calls the resetCustom method and change
54   /// the widget state to Reset if the reset is performed.
55   /// \return true if the widget current value is reset
56   bool reset();
57
58   /// Returns the state whether the attribute of the feature is initialized
59   /// \param theObject a model feature to be checked
60   /// \return the boolean result
61   bool isInitialized(ObjectPtr theObject) const;
62
63   /// Returns true, if default value of the widget should be computed
64   /// on operation's execute, like radius for circle's constraint (can not be zero)
65   bool isComputedDefault() const { return myIsComputedDefault; }
66
67   /// Returns true, if default value of the widget is defined in the XML and it is not the
68   /// computed value
69   /// \return the boolean result
70   std::string getDefaultValue() const { return myDefaultValue; }
71
72   /// Returns true, if widget is internal
73   /// \return the boolean result
74   bool isInternal() const { return myIsInternal; }
75
76   /// Returns true, if the obligatory value of the widget is not defined in the XML or has true value
77   /// \return the boolean result
78   bool isObligatory() const { return myIsObligatory; }
79
80   /// Returns this parameter value in the xml file
81   /// \return the boolean result
82   bool isUseReset() const { return myUseReset; }
83
84   /// Returns this widget value state
85   /// \return the enumeration result
86   ValueState getValueState() const { return myState; }
87
88   /// Returns an attribute error according to the value state
89   /// It exists in all cases excepring the "Store" case
90   QString getValueStateError() const;
91
92   /// Defines if it is supposed that the widget should interact with the viewer.
93   virtual bool isViewerSelector() { return false; }
94
95   /// Defines if it is supported to set the value in this widget
96   /// By default it returns true
97   virtual bool canAcceptFocus() const { return true; };
98
99   //! Returns the widget error, get it from the attribute validator and state of the widget
100   //! If the feature is correct, it returns an empty value
101   //! \return string value
102   QString getError() const;
103
104   /// Set the given wrapped value to the current widget
105   /// This value should be processed in the widget according to the needs
106   /// \param theValues the wrapped selection values
107   /// \param theToValidate the boolean value whether the value should be checked by filters
108   virtual bool setSelection(QList<std::shared_ptr<ModuleBase_ViewerPrs>>& theValues,
109                             const bool theToValidate)
110   {
111     return false;
112   }
113
114   /// Returns values which should be highlighted when the whidget is active
115   /// \param theValues a list of presentations
116   virtual void getHighlighted(QList<std::shared_ptr<ModuleBase_ViewerPrs>>& theValues) {};
117
118   /// Checks if the selection presentation is valid in widget 
119   /// \param theValue a selected presentation in the view
120   /// \return a boolean value
121   virtual bool isValidSelectionCustom(const std::shared_ptr<ModuleBase_ViewerPrs>& theValue) { return true; }
122
123   /// Returns widget validator, by default it is NULL. To be created in a child if necessary
124   ModuleBase_WidgetValidator* widgetValidator() { return myWidgetValidator; }
125
126   /// Restore value from attribute data to the widget's control. Emits signals before and after store
127   /// \return True in success
128   bool restoreValue();
129
130   /// Saves the internal parameters to the given feature. Emits signals before and after store
131   /// \return True in success
132   bool storeValue();
133
134   /// Set focus to the first control of the current widget. The focus policy of the control is checked.
135   /// If the widget has the NonFocus focus policy, it is skipped.
136   /// \return the state whether the widget can accept the focus
137   virtual bool focusTo();
138
139   /// Select the internal content if it can be selected. It is empty in the default realization
140   virtual void selectContent() {}
141
142   /// The method called when widget is activated
143   void activate();
144
145   /// The method called when widget is deactivated
146   virtual void deactivate();
147
148   /// Returns list of widget controls
149   /// \return a control list
150   virtual QList<QWidget*> getControls() const = 0;
151
152   /// Returns the first or the last control that can accept the focus
153   /// \param isFirst if true, the first controls is returned or the last one
154   /// \return a control from a list of controls
155   QWidget* getControlAcceptingFocus(const bool isFirst);
156
157   /// FocusIn events processing
158   virtual bool eventFilter(QObject* theObject, QEvent *theEvent);
159
160   /// \brief Enables processing of focus event on all controls by the widget
161   /// if this widget is not obligatory and set no-focus policy otherwise
162   virtual void enableFocusProcessing();
163
164   //! Switch On/Off highlighting of the widget
165   virtual void setHighlighted(bool isHighlighted);
166
167   /// Returns the attribute name
168   /// \returns the string value
169   std::string attributeID() const
170   {
171     return myAttributeID;
172   }
173
174   /// \return Current feature
175   FeaturePtr feature() const
176   {
177     return myFeature;
178   }
179
180   /// Set feature which is processing by active operation
181   /// \param theFeature a feature object
182   /// \param theToStoreValue a value about necessity to store the widget value to the feature
183   void setFeature(const FeaturePtr& theFeature, const bool theToStoreValue = false);
184
185   /// Editing mode depends on mode of current operation. This value is defined by it.
186   virtual void setEditingMode(bool isEditing) { myIsEditing = isEditing; }
187
188   /// \return Current Editing mode
189   bool isEditingMode() const { return myIsEditing; }
190
191   /// Returns true if the event is processed. The default implementation is empty, returns false.
192   virtual bool processEnter();
193
194   /// Returns true if the event is processed. The default implementation is empty, returns false.
195   virtual bool processDelete();
196
197   /// Sends Update and Redisplay for the given object
198   /// \param theObj is updating object
199   static void updateObject(ObjectPtr theObj);
200
201   /// Sends Move event for the given object
202   /// \param theObj is object for moving
203   static void moveObject(ObjectPtr theObj);
204
205   /// Sends a message about block/unblock viewer updating
206   /// \param theValue a boolean value
207   static void blockUpdateViewer(const bool theValue);
208
209 signals:
210   /// The signal about widget values are to be changed
211   void beforeValuesChanged();
212   /// The signal about widget values changed
213   void valuesChanged();
214   /// The signal about widget values modified
215   void valuesModified();
216   /// The signal about widget values are to be changed
217   void afterValuesChanged();
218
219   /// The signal about widget values are to be restored
220   void beforeValuesRestored();
221   /// The signal about widget values are to be restored
222   void afterValuesRestored();
223
224   /// The signal about key release on the control, that corresponds to the attribute
225   /// \param theObject a sender of the event
226   /// \param theEvent key release event
227   void keyReleased(QObject* theObject, QKeyEvent* theEvent);
228
229   /// The signal is emitted if the enter is clicked in the control of the widget
230   /// \param theObject a sender of the event
231   void enterClicked(QObject* theObject);
232
233   /// The signal about the widget is get focus
234   /// \param theWidget the model base widget
235   void focusInWidget(ModuleBase_ModelWidget* theWidget);
236
237   /// The signal about the widget is lost focus
238   /// \param theWidget the model base widget
239   void focusOutWidget(ModuleBase_ModelWidget* theWidget);
240
241   /// The signal about value state modification
242   void valueStateChanged(int theState);
243
244 protected:
245   /// Sets default value of widget. Normally, widget should fetch this value
246   /// from the xml. However, some widgets derived widgets could define it
247   void setDefaultValue(const std::string& theValue);
248   /// \brief Set the attribute name
249   /// \param theAttribute the string value with attribute name
250   void setAttributeID(const std::string& theAttribute)
251   {
252     myAttributeID = theAttribute;
253   }
254
255   /// Sets the current value state. If the value is changed, the signal is emitted
256   /// If the current value state is Blocked, this method do nothing
257   /// \param theState a new state
258   /// \return the previous value state
259   ValueState setValueState(const ValueState& theState);
260
261   /// Blocks the value state change.
262   /// \param theBlocked a block state
263   /// \return the previous value
264   bool blockValueState(const bool theBlocked);
265
266   /// Compute the feature default value and fill the controls with it
267   /// or store the control value to the feature
268   virtual void initializeValueByActivate();
269
270   /// Saves the internal parameters to the given feature
271   /// \return True in success
272   virtual bool storeValueCustom() const = 0;
273
274   /// Restore value from attribute data to the widget's control
275   virtual bool restoreValueCustom() = 0;
276
277   /// Fills the widget with default values
278   /// \return true if the widget current value is reset
279   virtual bool resetCustom() { return false; };
280
281   /// The method called when widget is activated
282   virtual void activateCustom() {};
283
284 protected slots:
285   /// Processing of values changed in model widget by store the current value to the feature
286   void onWidgetValuesChanged();
287
288   /// Changes widget state.
289   void onWidgetValuesModified();
290
291  protected:
292    ModuleBase_WidgetValidator* myWidgetValidator; /// own validator, by default it is zero
293
294   /// The attribute name of the model feature
295   std::string myAttributeID;
296
297   /// A feature which is processing by active operation
298   FeaturePtr myFeature;
299
300   /// Flag which shows that current operation is in editing mode
301   bool myIsEditing; 
302
303   /// Flag which shows whether current widget is obligatory
304   /// The non-obligatory widgets should not accept the focus in the property panel
305   bool myIsObligatory;
306
307   /// The widget value state
308   ValueState myState;
309
310 private:
311   /// Value should be computed on execute, like radius for circle's constraint (can not be zero)
312   bool myIsComputedDefault;
313
314   /// the default value, which is defined in the XML for this attribute    
315   std::string myDefaultValue;
316
317   /// an XML internal state
318   bool myIsInternal;
319
320   /// the reset state. If it is false, the reset method of the widget is not performed
321   bool myUseReset;
322   /// blocked flag of modification of the value state
323   bool myIsValueStateBlocked;
324 };
325
326 #endif