Salome HOME
41d678c599678afa5c04ec0cff62395cd5539b6d
[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   /// Redefinition of virtual function
92   /// \param theObject a sender of the event
93   /// \param theEvent the event
94   virtual bool eventFilter(QObject *theObject, QEvent *theEvent);
95
96   /// Start the operation and append it to the stack of operations
97   /// \param theOperation the started operation
98   /// \return the state whether the current operation is started
99   bool startOperation(ModuleBase_Operation* theOperation);
100
101   /// Returns whether the operation can be started. Check if there is already started operation and
102   /// the granted parameter of the launched operation
103   /// \param theId id of the operation which is going to start
104   bool canStartOperation(const QString& theId);
105
106   /// If Apply is enabled and operation has modification, it is applyed, otherwise aborted
107   /// \param theOperation the started operation
108   void stopOperation(ModuleBase_Operation* theOperation);
109
110   /// Aborts the parameter operation if it is current, else abort operations from the stack
111   /// of operations until the operation is found. All operations upper the parameter one are
112   /// not aborted.
113   /// \param theOperation an aborted operation
114   void abortOperation(ModuleBase_Operation* theOperation);
115
116   /// Slot that commits the current operation.
117   bool onCommitOperation();
118
119 public slots:
120   /// Slot that aborts the current operation.
121   void onAbortOperation();
122   /// Slot that validates the current operation using the validateOperation method.
123   void onValidateOperation();
124   /// Commit all operations
125   bool commitAllOperations();
126   /// Abort all operations
127   bool abortAllOperations();
128
129 signals:
130   /// Signal about an operation is started. It is emitted after the start() of operation is done.
131   void operationStarted(ModuleBase_Operation* theOperation);
132
133   /// Signal about an operation is stopped. It is emitted after the stop() of operation is done.
134   /// \param theOperation a stopped operation
135   void operationStopped(ModuleBase_Operation* theOperation);
136
137   /// Signal about an operation is resumed. It is emitted after the resume() of operation is done.
138   void operationResumed(ModuleBase_Operation* theOperation);
139
140   /// Emitted when current operation is Committed
141   void operationCommitted(ModuleBase_Operation* theOperation);
142
143   /// Emitted when current operation is aborted
144   void operationAborted(ModuleBase_Operation* theOperation);
145
146   /// Signal is emitted after the key released click.
147   void keyEnterReleased();
148
149 public: // TEMPORARY, it should be protected and be performed automatically
150   /// Emits nestedStateChange for operations with an information about validity of the operation
151   /// \param theOperation the sent operation. If it is NULL, all operations in the stack are sent.
152   void updateApplyOfOperations(ModuleBase_Operation* theOperation = 0);
153
154   /// Commits the current operatin if it is valid
155   bool commitOperation();
156
157 protected: // TEMPORARY
158   /// Sets the current operation or NULL
159   /// \param theOperation the started operation
160   void resumeOperation(ModuleBase_Operation* theOperation);
161
162   /// Returns whether the parameter operation is granted in relation to the previous operation
163   /// in a stack of started operations. It is used in canStopOperation to avoid warning message
164   /// when granted operation is aborted, e.g. SketchLine in Sketch
165   /// \param theId id of the operation which is checked
166   /// \return boolean result
167   bool isGrantedOperation(const QString& theId);
168
169   /// Sets the feature as a current in the document
170   /// \param theFeature a feature
171   void setCurrentFeature(const FeaturePtr& theFeature);
172
173  public slots:
174   /// SLOT, that is called by the key in the property panel is clicked.
175   /// \param theObject a sender of the event
176   /// \param theEvent the mouse event
177   bool onKeyReleased(QObject *theObject, QKeyEvent* theEvent);
178
179   /// The functionaly, that should be done by delete click
180   /// Fistly the active widget processes it, then workshop. If no one does not
181   /// process it, do nothing
182   /// \param theObject a sender of the event
183   bool onProcessDelete(QObject* theObject);
184
185   protected slots:
186   /// The functionaly, that should be done by enter click
187   /// Fistly the active widget processes it, then module. If no one does not
188   /// process it, the current operation is committed
189   /// \param theObject a sender of the event
190   bool onProcessEnter(QObject *theObject);
191
192   /// Slot that is called by an operation stop. Removes the stopped operation form the stack.
193   /// If there is a suspended operation, restart it.
194   void onOperationStopped();
195
196   /// Slot called before operation started. Stores the previous current feature, set the feature
197   /// of the operation as a current in the document. The previous current feature should be restored
198   /// by the operation abort/commit
199   void onBeforeOperationStarted();
200
201   /// Slot called after operation started
202   void onOperationStarted();
203
204   /// Slot called before operation aborted. Restore the previous current operation
205   void onBeforeOperationAborted();
206
207   /// Slot called after operation aborted
208   void onOperationAborted();
209
210   /// Slot called before operation committed. Restore the previous current operation
211   void onBeforeOperationCommitted();
212
213   /// Slot called after operation committed
214   void onOperationCommitted();
215
216   /// Slot called on operation resume
217   void onOperationResumed();
218
219 private:
220   /// Checks if the object is a parent or a child under
221   /// \param theObject an investivated object
222   /// \param theParent a candidate to be a parent
223   static bool isChildObject(const QObject* theObject, const QObject* theParent);
224
225  private:
226   typedef QList<ModuleBase_Operation*> Operations;  ///< definition for a list of operations
227   Operations myOperations;  ///< a stack of started operations. The active operation is on top,
228                             // others are suspended and started by the active is finished
229
230   /// Current workshop
231   ModuleBase_IWorkshop* myWorkshop;
232
233   XGUI_ShortCutListener* myShortCutListener;
234 };
235
236 #endif