Salome HOME
Optimize the flushing: this improvement speed ups the unit test for 3-4 times
[modules/shaper.git] / src / PartSet / PartSet_Module.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 #ifndef PartSet_Module_H
4 #define PartSet_Module_H
5
6 #include "PartSet.h"
7
8 #include <ModuleBase_IModule.h>
9 #include <ModuleBase_Definitions.h>
10 #include <ModelAPI_Feature.h>
11 #include <ModelAPI_Attribute.h>
12 #include <ModelAPI_CompositeFeature.h>
13
14 #include <Events_Listener.h>
15
16 //#include <StdSelect_FaceFilter.hxx>
17 #include <TopoDS_Shape.hxx>
18 #include <SelectMgr_ListOfFilter.hxx>
19
20 #include <QMap>
21 #include <QMenu>
22 #include <QObject>
23 #include <QModelIndex>
24
25 #include <string>
26
27 #include <memory>
28
29 class ModuleBase_Operation;
30 class ModuleBase_IViewWindow;
31 class PartSet_MenuMgr;
32 class PartSet_CustomPrs;
33 class PartSet_SketcherMgr;
34
35 class QAction;
36
37 /**
38 * \ingroup Modules
39 * Implementation of Partset module
40 */
41 class PARTSET_EXPORT PartSet_Module : public ModuleBase_IModule, public Events_Listener
42 {
43 Q_OBJECT
44
45 /// Enumeration to specify the restart operation properties.
46 enum RestartingMode {
47   RM_None, /// the operation should not be restarted
48   RM_Forbided, /// the operation should not be restarted after there is no active widget
49   RM_LastFeatureUsed, /// the operation is restarted and use the previous feature for own initialization
50   RM_EmptyFeatureUsed /// the operation is restarted and does not use the previous feature
51 };
52
53 public:
54
55   /// Constructor
56   /// \param theWshop a pointer to a workshop
57   PartSet_Module(ModuleBase_IWorkshop* theWshop);
58   virtual ~PartSet_Module();
59
60   // Add default selection filters of the module to the current viewer
61   virtual void activateSelectionFilters();
62   // Remove default selection filters of the module from the current viewer
63   virtual void deactivateSelectionFilters();
64
65   /// Creates custom widgets for property panel
66   virtual ModuleBase_ModelWidget* createWidgetByType(const std::string& theType, QWidget* theParent,
67                                                      Config_WidgetAPI* theWidgetApi, std::string theParentId);
68
69   /// Call back forlast tuning of property panel before operation performance
70   virtual void propertyPanelDefined(ModuleBase_Operation* theOperation);
71
72   /// Creates an operation and send it to loop
73   /// \param theCmdId the operation name
74   virtual void launchOperation(const QString& theCmdId);
75
76   /// Realizes some functionality by an operation start
77   /// Displays all sketcher sub-Objects, hides sketcher result, appends selection filters
78   /// Activate the operation presentation
79   /// \param theOperation a started operation
80   virtual void onOperationStarted(ModuleBase_Operation* theOperation);
81
82   /// Realizes some functionality by an operation resume
83   /// Activate the operation presentation
84   /// \param theOperation a resumed operation
85   virtual void onOperationResumed(ModuleBase_Operation* theOperation);
86
87   /// Realizes some functionality by an operation commit
88   /// Restarts sketcher operation automatically of it is necessary
89   /// \param theOperation a committed operation
90   virtual void onOperationCommitted(ModuleBase_Operation* theOperation);
91
92   /// Realizes some functionality by an operation abort
93   /// Hides all sketcher sub-Objects, displays sketcher result and removes selection filters
94   /// \param theOperation an aborted operation
95   virtual void onOperationAborted(ModuleBase_Operation* theOperation);
96
97   /// Realizes some functionality by an operation stop
98   /// Hides all sketcher sub-Objects, displays sketcher result and removes selection filters
99   /// \param theOperation a stopped operation
100   virtual void onOperationStopped(ModuleBase_Operation* theOperation);
101
102   /// Returns current operation
103   virtual ModuleBase_Operation* currentOperation() const;
104
105   /// Returns True if there are available Undos and the sketch manager allows undo
106   /// \return the boolean result
107   virtual bool canUndo() const;
108
109   //! Returns True if there are available Redos and the sketch manager allows redo
110   /// \return the boolean result
111   virtual bool canRedo() const;
112
113   /// Returnas true if the action can be applyed to the object
114   /// \param theObject a checked object
115   /// \param theActionId an identifier of action, to be found in the menu manager like "DELETE_CMD"
116   /// \return the a booean result
117   virtual bool canApplyAction(const ObjectPtr& theObject, const QString& theActionId) const;
118
119   /// Returns True if the current operation can be committed. Asks the sketch manager.
120   /// \return a boolean value
121   virtual bool canCommitOperation() const;
122
123   /// Returns whether the object can be erased at the bounds of the active operation.
124   /// The sub-objects of the current operation can not be erased
125   /// \param theObject a model object
126   virtual bool canEraseObject(const ObjectPtr& theObject) const;
127
128   /// Returns whether the object can be displayed at the bounds of the active operation.
129   /// Display only current operation results for usual operation and ask the sketcher manager
130   /// if it is a sketch operation
131   /// \param theObject a model object
132   virtual bool canDisplayObject(const ObjectPtr& theObject) const;
133
134   /// Returns true if selection for the object can be activate.
135   /// For sketch operation allow the selection activation if the operation is edit, for other
136   /// operation uses the default result
137   /// \param theObject a model object
138   virtual bool canActivateSelection(const ObjectPtr& theObject) const;
139
140   /// Add menu atems for object browser into the given menu
141   /// \param theMenu a popup menu to be shown in the object browser
142   virtual void addObjectBrowserMenu(QMenu* theMenu) const;
143
144   /// Add menu atems for viewer into the given menu
145   /// \param theMenu a popup menu to be shown in the viewer
146   /// \param theStdActions a map of standard actions
147   /// \return true if items are added and there is no necessity to provide standard menu
148   virtual bool addViewerMenu(QMenu* theMenu, const QMap<QString, QAction*>& theStdActions) const;
149
150   /// Returns a list of modes, where the AIS objects should be activated
151   /// \param theModes a list of modes
152   virtual void activeSelectionModes(QIntList& theModes);
153
154   /// Returns whether the mouse enter the viewer's window
155   /// \return true if items are added and there is no necessity to provide standard menu
156   bool isMouseOverWindow();
157
158   /// Returns sketch manager object
159   PartSet_SketcherMgr* sketchMgr() const { return mySketchMgr; }
160
161   /// Performs functionality on closing document
162   virtual void closeDocument();
163
164   /// Clears specific presentations in the viewer
165   virtual void clearViewer();
166
167   /// Event Listener method
168   /// \param theMessage an event message
169   virtual void processEvent(const std::shared_ptr<Events_Message>& theMessage);
170
171   /// Set the object with the object results are customized
172   /// \param theFeature a feature
173   void setCustomized(const FeaturePtr& theFeature);
174
175   /** Update the object presentable properties such as color, lines width and other
176   * If the object is result with the color attribute value set, it is used,
177   * otherwise the customize is applyed to the object's feature if it is a custom prs
178   * \param theObject an object instance
179   * \param theUpdateViewer the parameter whether the viewer should be update immediatelly
180   * \returns true if the object is modified
181   */
182   virtual bool customizeObject(ObjectPtr theObject, const bool theUpdateViewer);
183
184   /// This method is called on object browser creation for customisation of module specific features
185   /// \param theObjectBrowser a pinter on Object Browser widget
186   virtual void customizeObjectBrowser(QWidget* theObjectBrowser);
187
188   /// Returns the viewer Z layer
189   int getVisualLayerId() const { return myVisualLayerId; }
190
191   //! Returns data object by AIS
192   virtual ObjectPtr findPresentedObject(const AISObjectPtr& theAIS) const;
193
194   /// Update state of pop-up menu items in viewer
195   /// \param theStdActions - a map of standard actions
196   virtual void updateViewerMenu(const QMap<QString, QAction*>& theStdActions); 
197
198   //! Returns the feature error if the current state of the feature in the module is not correct
199   //! If the feature is correct, it returns an empty value
200   //! \return string value
201   virtual QString getFeatureError(const FeaturePtr& theFeature);
202
203 public slots:
204   /// SLOT, that is called by no more widget signal emitted by property panel
205   /// Set a specific flag to restart the sketcher operation
206   void onNoMoreWidgets();
207
208   /// Redefines the parent method in order to customize the next case:
209   /// If the sketch nested operation is active and the presentation is not visualized in the viewer,
210   /// the operation should be always aborted.
211   virtual void onFeatureTriggered();
212
213   /// Slolt called on object display
214   /// \param theObject a data object
215   /// \param theAIS a presentation object
216   virtual void onObjectDisplayed(ObjectPtr theObject, AISObjectPtr theAIS);
217
218   /// Slot called on before object erase
219   /// \param theObject a data object
220   /// \param theAIS a presentation object
221   virtual void onBeforeObjectErase(ObjectPtr theObject, AISObjectPtr theAIS);
222
223   /// Called on transformation in current viewer
224   /// \param theTrsfType type of tranformation
225   void onViewTransformed(int theTrsfType = 2);
226
227 protected slots:
228   /// Called when previous operation is finished
229   virtual void onSelectionChanged();
230
231   /// SLOT, that is called by key release in the viewer.
232   /// \param theWnd a view window
233   /// \param theEvent the key event
234   void onKeyRelease(ModuleBase_IViewWindow* theWnd, QKeyEvent* theEvent);
235
236   /// SLOT, that is called by enter key released
237   /// Set a specific type of restarting the current operation
238   void onEnterReleased();
239
240   /// SLOT, that is called by the current operation filling with the preselection.
241   /// It commits the operation of it is can be committed
242   void onOperationActivatedByPreselection();
243
244   /// A slot called on view window creation
245   void onViewCreated(ModuleBase_IViewWindow*);
246
247  protected:
248   /// Register validators for this module
249   virtual void registerValidators();
250
251   /// Register selection filters for this module
252   virtual void registerFilters();
253
254   /// Register properties of this module
255   virtual void registerProperties();
256
257  private slots:
258    /// Processing of vertex selected
259    void onVertexSelected();
260
261    void onTreeViewDoubleClick(const QModelIndex&);
262
263  private:
264   /// Breaks sequense of automatically resterted operations
265   void breakOperationSequence();
266
267   //! Delete features
268   virtual bool deleteObjects();
269
270  private:
271    QString myLastOperationId;
272    FeaturePtr myLastFeature;
273
274    // Automatical restarting mode flag
275    RestartingMode myRestartingMode;
276
277   SelectMgr_ListOfFilter mySelectionFilters;
278
279   PartSet_SketcherMgr* mySketchMgr;
280   PartSet_MenuMgr* myMenuMgr;
281   /// A default custom presentation, which is used for references objects of started operation
282   PartSet_CustomPrs* myCustomPrs;
283   int myVisualLayerId;
284
285   bool myHasConstraintShown;
286
287   QModelIndex aActivePartIndex;
288 };
289
290 #endif