Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / ModuleBase / ModuleBase_Operation.h
1 /*
2  * ModuleBase_Operation.h
3  *
4  *  Created on: Apr 2, 2014
5  *      Author: sbh
6  */
7
8
9 #ifndef ModuleBase_Operation_H
10 #define ModuleBase_Operation_H
11
12 #include <ModuleBase.h>
13 #include <ModuleBase_IOperation.h>
14
15 #include <QObject>
16 #include <QString>
17
18 #include <boost/shared_ptr.hpp>
19
20 class ModelAPI_Feature;
21 class ModelAPI_Document;
22
23 /*!
24  \class ModuleBase_Operation
25  * \brief Base class for all operations
26  *
27  *  Base class for all operations. If you perform an action it is reasonable to create
28  *  operation intended for this. This is a base class for all operations which provides
29  *  mechanism for correct starting operations, starting operations above already started
30  *  ones, committing operations and so on. To create own operation it is reasonable to
31  *  inherit it from this class and redefines virtual methods to provide own behavior
32  *  Main virtual methods are
33  *  - virtual bool      isReadyToStart();
34  *  - virtual void      startOperation();
35  *  - virtual void      abortOperation();
36  *  - virtual void      commitOperation();
37  */
38
39 class MODULEBASE_EXPORT ModuleBase_Operation: public ModuleBase_IOperation
40 {
41 Q_OBJECT
42
43 public:
44   /// Constructor
45   /// \param theId the operation identifier
46   /// \param theParent the QObject parent
47   ModuleBase_Operation(const QString& theId = "", QObject* theParent = 0);
48   /// Destructor
49   virtual ~ModuleBase_Operation();
50
51   /// Returns the operation feature
52   /// \return the feature
53   boost::shared_ptr<ModelAPI_Feature> feature() const;
54
55   // Data model methods.
56   /// Stores a real value in model.
57   /// \param theValue - to store
58   void storeReal(double theValue);
59   /// Stores a custom value in model.
60   void storeCustomValue();
61
62 protected:
63   /// Virtual method called when operation started (see start() method for more description)
64   /// Default impl calls corresponding slot and commits immediately.
65   virtual void startOperation();
66   /// Virtual method called when operation stopped - committed or aborted.
67   virtual void stopOperation();
68   /// Virtual method called when operation aborted (see abort() method for more description)
69   virtual void abortOperation();
70   /// Virtual method called when operation committed (see commit() method for more description)
71   virtual void commitOperation();
72
73   /// Creates an operation new feature
74   /// \returns the created feature
75   virtual boost::shared_ptr<ModelAPI_Feature> createFeature();
76
77   /// Returns the operation feature
78   /// \return the feature
79   void setFeature(boost::shared_ptr<ModelAPI_Feature> theFeature);
80
81 private:
82   boost::shared_ptr<ModelAPI_Feature> myFeature; /// the operation feature to be handled
83 };
84
85 #endif