]> SALOME platform Git repositories - modules/shaper.git/blob - src/ModuleBase/ModuleBase_IOperation.h
Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / ModuleBase / ModuleBase_IOperation.h
1 /*
2  * ModuleBase_IOperation.h
3  *
4  *  Created on: May 5, 2014
5  *      Author: nds
6  */
7
8
9 #ifndef ModuleBase_IOperation_H
10 #define ModuleBase_IOperation_H
11
12 #include <ModuleBase.h>
13
14 #include <QObject>
15 #include <QString>
16
17 #include <boost/shared_ptr.hpp>
18
19 class ModelAPI_Document;
20 class ModuleBase_OperationDescription;
21
22 /*!
23  \class ModuleBase_IOperation
24  * \brief Base class for all operations
25  *
26  *  Base class for all operations. If you perform an action it is reasonable to create
27  *  operation intended for this. This is a base class for all operations which provides
28  *  mechanism for correct starting operations, starting operations above already started
29  *  ones, committing operations and so on. To create own operation it is reasonable to
30  *  inherit it from this class and redefines virtual methods to provide own behavior
31  *  Main virtual methods are
32  *  - virtual bool      isReadyToStart();
33  *  - virtual void      startOperation();
34  *  - virtual void      abortOperation();
35  *  - virtual void      commitOperation();
36  */
37
38 class MODULEBASE_EXPORT ModuleBase_IOperation: public QObject
39 {
40 Q_OBJECT
41
42 public:
43   /// Constructor
44   /// Constructs an empty operation. Constructor should work very fast because many
45   /// operators may be created after starting workshop but only several from them
46   /// may be used. As result this constructor stores given workshop in myApp field
47   /// and set Waiting status.
48   /// \param theId the operation identifier
49   /// \param theParent the QObject parent
50   ModuleBase_IOperation(const QString& theId = "", QObject* theParent = 0);
51   /// Destructor
52   virtual ~ModuleBase_IOperation();
53
54   /// Returns the operation description
55   /// /returns the instance of the description class
56   ModuleBase_OperationDescription* getDescription() const;
57
58   /// Verifies whether this operator can be always started above any already running one
59   /// \return Returns TRUE if current operation must not be checked for ActiveOperation->IsValid( this )
60   /// This method must be redefined in derived operation if operation of derived class
61   /// must be always can start above any launched one. Default impl returns FALSE,
62   /// so it is being checked for IsValid, but some operations may overload IsGranted()
63   /// In this case they will always start, no matter what operation is running.
64   /// \param theOperation the previous running operation
65   virtual bool isGranted(ModuleBase_IOperation* theOperation) const;
66
67 signals:
68   void started(); /// the operation is started
69   void aborted(); /// the operation is aborted
70   void committed(); /// the operation is committed
71   void stopped(); /// the operation is aborted or committed
72
73 public slots:
74   /// Starts operation
75   /// Public slot. Verifies whether operation can be started and starts operation.
76   /// This slot is not virtual and cannot be redefined. Redefine startOperation method
77   /// to change behavior of operation. There is no point in using this method. It would
78   /// be better to inherit own operator from base one and redefine startOperation method
79   /// instead.
80   void start();
81   /// Resumes operation
82   /// Public slot. Verifies whether operation can be started and starts operation.
83   /// This slot is not virtual and cannot be redefined. Redefine startOperation method
84   /// to change behavior of operation. There is no point in using this method. It would
85   /// be better to inherit own operator from base one and redefine startOperation method
86   /// instead.
87   void resume();
88   /// Aborts operation
89   /// Public slot. Aborts operation. This slot is not virtual and cannot be redefined.
90   /// Redefine abortOperation method to change behavior of operation instead
91   void abort();
92   /// Commits operation
93   /// Public slot. Commits operation. This slot is not virtual and cannot be redefined.
94   /// Redefine commitOperation method to change behavior of operation instead
95   void commit();
96
97   /// Alias for start/abort slots
98   /// Public slot. Aborts operation if false, else does nothing.
99   /// Provided for S/S compatibility with QAction's toggle(bool)
100   /// \param theState th flag to abort, if it is true, do nothing, overwise abort
101   void setRunning(bool theState);
102
103   // Data model methods.
104   /// Stores a real value in model.
105   /// \param theValue - to store
106   virtual void storeReal(double theValue) = 0;
107   /// Stores a custom value in model.
108   virtual void storeCustomValue() = 0;
109
110 protected:
111   /// Virtual method called when operation started (see start() method for more description)
112   /// Default impl calls corresponding slot and commits immediately.
113   virtual void startOperation() = 0;
114   /// Virtual method called when operation stopped - committed or aborted.
115   virtual void stopOperation() = 0;
116   /// Virtual method called when operation aborted (see abort() method for more description)
117   virtual void abortOperation() = 0;
118   /// Virtual method called when operation committed (see commit() method for more description)
119   virtual void commitOperation() = 0;
120
121   /// Returns pointer to the root document.
122   boost::shared_ptr<ModelAPI_Document> document() const;
123
124 private:
125   ModuleBase_OperationDescription* myDescription; /// the container to have the operation description
126 };
127
128 #endif