Salome HOME
Issues #2173, #2169: processing focus in widget by SHAPER loop (instead of Qt loop...
[modules/shaper.git] / src / XGUI / XGUI_OperationMgr.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 // File:        XGUI_OperationMgr.h
4 // Created:     20 Apr 2014
5 // Author:      Natalia ERMOLAEVA
6
7 #ifndef XGUI_OperationMgr_H
8 #define XGUI_OperationMgr_H
9
10 #include "XGUI.h"
11
12 #include <ModuleBase_Operation.h>
13 #include "ModelAPI_Feature.h"
14
15 #include <QList>
16 #include <QObject>
17 #include <QStringList>
18
19 class QKeyEvent;
20
21 class ModuleBase_IWorkshop;
22 class XGUI_Workshop;
23 class XGUI_ShortCutListener;
24
25 /**\class XGUI_OperationMgr
26  * \ingroup GUI
27  * \brief Operation manager. Servers to manipulate to the workshop operations. Contains a stack
28  * of started operations. In simple case, if only one operation is started, the stack contains
29  * one operation. It is possible for some kind of operations to start them above already
30  * started one. In that case, the previous active operation becomes suspended, a new one - active.
31  * The new operation is added to the top of the stack. Then it is finished, it is removed from
32  * the stack and the previous operation is activated.
33  */
34 class XGUI_EXPORT XGUI_OperationMgr : public QObject
35 {
36 Q_OBJECT
37  public:
38   /// Constructor
39   /// \param theParent the parent
40   /// \param theWorkshop a reference to workshop
41   XGUI_OperationMgr(QObject* theParent, ModuleBase_IWorkshop* theWorkshop);
42
43   /// Destructor
44   virtual ~XGUI_OperationMgr();
45
46   /// Switch on short cut listener
47   void activate();
48   /// Switch off short cut listener
49   void deactivate();
50
51   /// Set reference to workshop
52   /// \param theWorkshop reference to workshop
53   void setWorkshop(ModuleBase_IWorkshop* theWorkshop)
54   { myWorkshop = theWorkshop; };
55
56   /// Current workshop
57   ModuleBase_IWorkshop* workshop() const { return myWorkshop; }
58
59   /// Returns the current operation or NULL
60   /// \return the current operation
61   ModuleBase_Operation* currentOperation() const;
62
63   /// Check if the given operation is active operation.
64   /// Also, returns false is ther is no active operation.
65   bool isCurrentOperation(ModuleBase_Operation* theOperation);
66
67   /// Returns true is operation manager has at least one non-null operation.
68   bool hasOperation() const;
69
70   /// Returns true is operation manager has an operation with given Id.
71   bool hasOperation(const QString& theId) const;
72
73   /// Returns true if the operation can be aborted. If the operation is modified,
74   /// the warning message box is shown.
75   /// \param theOperation an operation which is checked on stop
76   bool canStopOperation(ModuleBase_Operation* theOperation);
77
78   /// Find and return operation by its Id.
79   ModuleBase_Operation* findOperation(const QString& theId) const;
80
81   /// Returns number of operations in the stack
82   int operationsCount() const;
83
84   /// Returns list of all operations IDs
85   QStringList operationList() const;
86
87   /// Returns previous (parent) operation if given operation started.
88   /// else, or if there is no parent - returns NULL
89   ModuleBase_Operation* previousOperation(ModuleBase_Operation* theOperation) const;
90
91   /// Start the operation and append it to the stack of operations
92   /// \param theOperation the started operation
93   /// \return the state whether the current operation is started
94   bool startOperation(ModuleBase_Operation* theOperation);
95
96   /// Returns whether the operation can be started. Check if there is already started operation and
97   /// the granted parameter of the launched operation
98   /// \param theId id of the operation which is going to start
99   /// \param isCommitted boolean value if the operation was committed otherwise it was aborted
100   bool canStartOperation(const QString& theId, bool& isCommitted);
101
102   /// If Apply is enabled and operation has modification, it is applyed, otherwise aborted
103   /// \param theOperation the started operation
104   /// \param isCommitted boolean value if the operation was committed otherwise it was aborted
105   void stopOperation(ModuleBase_Operation* theOperation, bool& isCommitted);
106
107   /// Aborts the parameter operation if it is current, else abort operations from the stack
108   /// of operations until the operation is found. All operations upper the parameter one are
109   /// not aborted.
110   /// \param theOperation an aborted operation
111   void abortOperation(ModuleBase_Operation* theOperation);
112
113   /// Slot that commits the current operation.
114   bool onCommitOperation();
115
116 public slots:
117   /// Slot that aborts the current operation.
118   void onAbortOperation();
119   /// Slot that validates the current operation using the validateOperation method.
120   void onValidateOperation();
121   /// Commit all operations
122   bool commitAllOperations();
123   /// Abort all operations
124   bool abortAllOperations();
125
126 signals:
127   /// Signal about an operation is stopped. It is emitted after the stop() of operation is done.
128   /// \param theOperation a stopped operation
129   void operationStopped(ModuleBase_Operation* theOperation);
130
131   /// Signal about an operation is resumed. It is emitted after the resume() of operation is done.
132   void operationResumed(ModuleBase_Operation* theOperation);
133
134   /// Emitted when current operation is Committed
135   void operationCommitted(ModuleBase_Operation* theOperation);
136
137   /// Emitted when current operation is aborted
138   void operationAborted(ModuleBase_Operation* theOperation);
139
140   /// Signal is emitted after the key released click.
141   void keyEnterReleased();
142
143 public: // TEMPORARY, it should be protected and be performed automatically
144   /// Emits nestedStateChange for operations with an information about validity of the operation
145   /// \param theOperation the sent operation. If it is NULL, all operations in the stack are sent.
146   void updateApplyOfOperations(ModuleBase_Operation* theOperation = 0);
147
148   /// Commits the current operatin if it is valid
149   bool commitOperation();
150
151 protected: // TEMPORARY
152   /// Sets the current operation or NULL
153   /// \param theOperation the started operation
154   void resumeOperation(ModuleBase_Operation* theOperation);
155
156   /// Returns whether the parameter operation is granted in relation to the previous operation
157   /// in a stack of started operations. It is used in canStopOperation to avoid warning message
158   /// when granted operation is aborted, e.g. SketchLine in Sketch
159   /// \param theId id of the operation which is checked
160   /// \return boolean result
161   bool isGrantedOperation(const QString& theId);
162
163   /// Sets the feature as a current in the document
164   /// \param theFeature a feature
165   void setCurrentFeature(const FeaturePtr& theFeature);
166
167  public slots:
168   /// SLOT, that is called by the key in the property panel is clicked.
169   /// \param theObject a sender of the event
170   /// \param theEvent the mouse event
171   bool onKeyReleased(QObject *theObject, QKeyEvent* theEvent);
172
173   /// The functionaly, that should be done by delete click
174   /// Fistly the active widget processes it, then workshop. If no one does not
175   /// process it, do nothing
176   /// \param theObject a sender of the event
177   bool onProcessDelete(QObject* theObject);
178
179   protected slots:
180   /// The functionaly, that should be done by enter click
181   /// Fistly the active widget processes it, then module. If no one does not
182   /// process it, the current operation is committed
183   /// \param theObject a sender of the event
184   bool onProcessEnter(QObject *theObject);
185
186   /// Slot that is called by an operation stop. Removes the stopped operation form the stack.
187   /// If there is a suspended operation, restart it.
188   void onOperationStopped();
189
190   /// Slot called before operation started. Stores the previous current feature, set the feature
191   /// of the operation as a current in the document. The previous current feature should be restored
192   /// by the operation abort/commit
193   void onBeforeOperationStarted();
194
195   /// Slot called after operation started
196   void onOperationStarted();
197
198   /// Slot called before operation aborted. Restore the previous current operation
199   void onBeforeOperationAborted();
200
201   /// Slot called after operation aborted
202   void onOperationAborted();
203
204   /// Slot called before operation committed. Restore the previous current operation
205   void onBeforeOperationCommitted();
206
207   /// Slot called after operation committed
208   void onOperationCommitted();
209
210   /// Slot called on operation resume
211   void onOperationResumed();
212
213 private:
214   /// Checks if the object is a parent or a child under
215   /// \param theObject an investivated object
216   /// \param theParent a candidate to be a parent
217   static bool isChildObject(const QObject* theObject, const QObject* theParent);
218
219  private:
220   typedef QList<ModuleBase_Operation*> Operations;  ///< definition for a list of operations
221   Operations myOperations;  ///< a stack of started operations. The active operation is on top,
222                             // others are suspended and started by the active is finished
223
224   /// Current workshop
225   ModuleBase_IWorkshop* myWorkshop;
226
227   XGUI_ShortCutListener* myShortCutListener;
228 };
229
230 #endif