]> SALOME platform Git repositories - modules/shaper.git/blob - src/XGUI/XGUI_OperationMgr.h
Salome HOME
2e74ab0b1d045c300b820b0a6259d6e4ba85d443
[modules/shaper.git] / src / XGUI / XGUI_OperationMgr.h
1 // File:        XGUI_OperationMgr.h
2 // Created:     20 Apr 2014
3 // Author:      Natalia ERMOLAEVA
4
5 #ifndef XGUI_OperationMgr_H
6 #define XGUI_OperationMgr_H
7
8 #include "XGUI.h"
9
10 #include <ModuleBase_Operation.h>
11
12 #include <QList>
13 #include <QObject>
14
15 /**\class XGUI_OperationMgr
16  * \ingroup GUI
17  * \brief Operation manager. Servers to manupulate to the workshop operations. Contains a stack
18  * of started operations. In simple case, if only one operration is started, the stack contains
19  * one operation. It is possible for some kind of operations to start them above already
20  * started one. In that case, the previous active operation becames suspended, a new one - active.
21  * The new operation is added to the top of the stack. Then it is finished, it is removed from
22  * the stack and the previous operation is activated.
23  */
24 class XGUI_EXPORT XGUI_OperationMgr : public QObject
25 {
26   Q_OBJECT
27 public:
28   /// Constructor
29   /// \param theParent the parent
30   XGUI_OperationMgr(QObject* theParent);
31   /// Destructor
32   virtual ~XGUI_OperationMgr();
33
34   /// Returns the current operation or NULL
35   /// \return the current operation
36   ModuleBase_Operation* currentOperation() const;
37   /// Start the operation and append it to the stack of operations
38   /// \param theOperation the started operation
39   /// \return the state whether the current operation is started
40   bool startOperation(ModuleBase_Operation* theOperation);
41
42 signals:
43   /// Signal about an operation is started. It is emitted after the start() of operation is done.
44   void operationStarted();
45   /// Signal about an operation is stopped. It is emitted after the stop() of operation is done.
46   /// \param theOperation a stopped operation
47   void operationStopped(ModuleBase_Operation* theOperation);
48
49 protected:
50   /// Sets the current operation or NULL
51   /// \param theOperation the started operation
52   /// \param isCheckBeforeStart the flag whether to check whether the operation can be started
53   /// \return the state whether the operation is resumed
54   void resumeOperation(ModuleBase_Operation* theOperation);
55
56   /// Returns whether the operation can be started. Check if there is already started operation and
57   /// the granted parameter of the launched operation
58   /// \param theOperation an operation to check
59   bool canStartOperation(ModuleBase_Operation* theOperation);
60
61 protected slots:
62   /// Slot that is called by an operation stop. Removes the stopped operation form the stack.
63   /// If there is a suspended operation, restart it.
64   void onOperationStopped();
65
66 private:
67   typedef QList<ModuleBase_Operation*> Operations; ///< definition for a list of operations
68   Operations myOperations; ///< a stack of started operations. The active operation is on top,
69                            // others are suspended and started by the active is finished
70 };
71
72 #endif