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   virtual bool isGranted() const;
65
66 signals:
67   void started(); /// the operation is started
68   void aborted(); /// the operation is aborted
69   void committed(); /// the operation is committed
70   void stopped(); /// the operation is aborted or committed
71
72 public slots:
73   /// Starts operation
74   /// Public slot. Verifies whether operation can be started and starts operation.
75   /// This slot is not virtual and cannot be redefined. Redefine startOperation method
76   /// to change behavior of operation. There is no point in using this method. It would
77   /// be better to inherit own operator from base one and redefine startOperation method
78   /// instead.
79   void start();
80   /// Resumes operation
81   /// Public slot. Verifies whether operation can be started and starts operation.
82   /// This slot is not virtual and cannot be redefined. Redefine startOperation method
83   /// to change behavior of operation. There is no point in using this method. It would
84   /// be better to inherit own operator from base one and redefine startOperation method
85   /// instead.
86   void resume();
87   /// Aborts operation
88   /// Public slot. Aborts operation. This slot is not virtual and cannot be redefined.
89   /// Redefine abortOperation method to change behavior of operation instead
90   void abort();
91   /// Commits operation
92   /// Public slot. Commits operation. This slot is not virtual and cannot be redefined.
93   /// Redefine commitOperation method to change behavior of operation instead
94   void commit();
95
96   /// Alias for start/abort slots
97   /// Public slot. Aborts operation if false, else does nothing.
98   /// Provided for S/S compatibility with QAction's toggle(bool)
99   /// \param theState th flag to abort, if it is true, do nothing, overwise abort
100   void setRunning(bool theState);
101
102   // Data model methods.
103   /// Stores a real value in model.
104   /// \param theValue - to store
105   virtual void storeReal(double theValue) = 0;
106   /// Stores a custom value in model.
107   virtual void storeCustomValue() = 0;
108
109 protected:
110   /// Virtual method called when operation started (see start() method for more description)
111   /// Default impl calls corresponding slot and commits immediately.
112   virtual void startOperation() = 0;
113   /// Virtual method called when operation stopped - committed or aborted.
114   virtual void stopOperation() = 0;
115   /// Virtual method called when operation aborted (see abort() method for more description)
116   virtual void abortOperation() = 0;
117   /// Virtual method called when operation committed (see commit() method for more description)
118   virtual void commitOperation() = 0;
119
120   /// Returns pointer to the root document.
121   boost::shared_ptr<ModelAPI_Document> document() const;
122
123 private:
124   ModuleBase_OperationDescription* myDescription; /// the container to have the operation description
125 };
126
127 #endif