Salome HOME
Merge branch 'python_parametric_api' of https://git.salome-platform.org/git/modules...
[modules/shaper.git] / src / ModuleBase / ModuleBase_Operation.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 /*
4  * ModuleBase_Operation.h
5  *
6  *  Created on: Apr 2, 2014
7  *      Author: sbh
8  */
9
10 #ifndef ModuleBase_Operation_H
11 #define ModuleBase_Operation_H
12
13 #include <ModuleBase.h>
14
15 #include <QObject>
16 #include <QString>
17 #include <QStringList>
18
19 class ModuleBase_ModelWidget;
20 class ModuleBase_OperationDescription;
21 class ModuleBase_IPropertyPanel;
22
23 class QKeyEvent;
24
25 /*!
26  * \class ModuleBase_Operation
27  * \ingroup GUI
28  * \brief Base class for all operations
29  *
30  *  Base class for all operations. If you perform an action it is reasonable to create
31  *  operation intended for this. This is a base class for all operations which provides
32  *  mechanism for correct starting operations, starting operations above already started
33  *  ones, committing operations and so on. To create own operation it is reasonable to
34  *  inherit it from this class and redefines virtual methods to provide own behavior
35  *  Main virtual methods are
36  *  - virtual bool      isReadyToStart();
37  *  - virtual void      startOperation();
38  *  - virtual void      abortOperation();
39  *  - virtual void      commitOperation();
40  */
41
42 class MODULEBASE_EXPORT ModuleBase_Operation : public QObject
43 {
44 Q_OBJECT
45
46  public:
47   /// Constructor
48   /// \param theId the operation identifier
49   /// \param theParent the QObject parent
50   ModuleBase_Operation(const QString& theId = "", QObject* theParent = 0);
51
52   /// Destructor
53   virtual ~ModuleBase_Operation();
54
55   /// Returns the operation description
56   /// /returns the instance of the description class
57   ModuleBase_OperationDescription* getDescription() const { return myDescription; }
58
59   /// Returns list of granted operation indices
60   const QStringList& grantedOperationIds() const;
61
62   /// Sets list of operation indices, which can be started without the current operation stop
63   /// \param theList an ids
64   void setGrantedOperationIds(const QStringList& theList);
65
66   /// Must return true if this operation can be launched as nested for any current operation
67   /// and it is not necessary to check this operation on validity. By default 
68   /// the operation is not granted.
69   /// The method has to be redefined for granted operations.
70   virtual bool isGranted(QString theId) const;
71
72   /// Returns True if data of its feature was modified during operation
73   virtual bool isModified() const { return myIsModified; }
74
75   /// Change the modified state of the operation
76   void setIsModified(const bool theIsModified) { myIsModified = theIsModified;  }
77
78   /// Returns operations Id from it's description
79   QString id() const;
80
81   /// Must return True if the operation's feature is valid.
82   /// Since IOperation does not have any feature returns false.
83   virtual bool isValid() const;
84
85   /// \brief Set property pane to the operation
86   /// \param theProp a property panel instance
87   virtual void setPropertyPanel(ModuleBase_IPropertyPanel* theProp);
88
89   /// \return Currently installed property panel
90   ModuleBase_IPropertyPanel* propertyPanel() const { return myPropertyPanel; }
91
92 signals:
93   /// The operation is started
94   void beforeStarted();
95   void started();
96
97   /// The operation is aborted
98   void beforeAborted();
99   void aborted();
100
101   /// The operation is committed
102   void beforeCommitted();
103   void committed();
104
105   /// The operation is aborted or committed
106   void stopped();
107
108   /// The operation is resumed
109   void resumed();
110
111   /// The operation is postponed
112   void postponed();
113
114  public slots:
115   /// Starts operation
116   /// Public slot. Verifies whether operation can be started and starts operation.
117   /// This slot is not virtual and cannot be redefined. Redefine startOperation method
118   /// to change behavior of operation. There is no point in using this method. It would
119   /// be better to inherit own operator from base one and redefine startOperation method
120   /// instead.
121   virtual void start();
122
123   /// Deactivates current operation which can be resumed later.
124   virtual void postpone();
125
126   /// Resumes operation
127   /// Public slot. Verifies whether operation can be started and starts operation.
128   /// This slot is not virtual and cannot be redefined. Redefine startOperation method
129   /// to change behavior of operation. There is no point in using this method. It would
130   /// be better to inherit own operator from base one and redefine startOperation method
131   /// instead.
132   virtual void resume();
133
134   /// Aborts operation
135   /// Public slot. Aborts operation. This slot is not virtual and cannot be redefined.
136   /// Redefine abortOperation method to change behavior of operation instead
137   virtual void abort();
138
139   /// Commits operation
140   /// Public slot. Commits operation. This slot is not virtual and cannot be redefined.
141   /// Redefine commitOperation method to change behavior of operation instead
142   virtual bool commit();
143
144   /// Changes the modified flag of the operation
145   void onValuesChanged();
146
147  protected:
148   /// Virtual method called when operation started (see start() method for more description)
149   /// Default impl calls corresponding slot and commits immediately.
150    virtual void startOperation() {}
151
152   /// Implementation of specific steps on postpone operation
153   virtual void postponeOperation() {}
154
155   /// Virtual method called when operation stopped - committed or aborted.
156   virtual void stopOperation() {}
157
158   /// Virtual method called when operation aborted (see abort() method for more description)
159   virtual void abortOperation() {}
160
161   /// Virtual method called when operation committed (see commit() method for more description)
162   virtual void commitOperation() {};
163
164   /// Virtual method called after operation committed (see commit() method for more description)
165   virtual void afterCommitOperation() {}
166
167   /// Virtual method called after operation resume (see resume() method for more description)
168   virtual void resumeOperation() {}
169
170   /// Verifies whether this operator can be commited.
171   /// \return Returns TRUE if current operation can be committed, e.g. all parameters are filled
172   virtual bool canBeCommitted() const;
173
174 private:
175   /// the container to have the operation description
176   ModuleBase_OperationDescription* myDescription;
177
178   /// Modified feature flag
179   bool myIsModified;
180
181   /// List of operations IDs which are granted of the current operation
182   QStringList myGrantedIds;
183
184   /// Access to property panel
185   ModuleBase_IPropertyPanel* myPropertyPanel;
186 };
187
188 #endif