Salome HOME
Issue #1664: In the Sketcher, add the function Split a segment:
[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 #include "PartSet_Tools.h"
8 #include "PartSet_OverconstraintListener.h"
9
10 #include <ModuleBase_IModule.h>
11 #include <ModuleBase_Definitions.h>
12 #include <ModelAPI_Feature.h>
13 #include <ModelAPI_Attribute.h>
14 #include <ModelAPI_CompositeFeature.h>
15
16 #include <Events_Listener.h>
17
18 //#include <StdSelect_FaceFilter.hxx>
19 #include <TopoDS_Shape.hxx>
20 #include <SelectMgr_ListOfFilter.hxx>
21
22 #include <QMap>
23 #include <QMenu>
24 #include <QObject>
25 #include <QModelIndex>
26
27 #include <string>
28
29 #include <memory>
30
31 class ModuleBase_Operation;
32 class ModuleBase_IViewWindow;
33 class XGUI_Workshop;
34 class PartSet_MenuMgr;
35 class PartSet_CustomPrs;
36 class PartSet_SketcherMgr;
37 class PartSet_SketcherReetntrantMgr;
38 class ModelAPI_Result;
39
40 class QAction;
41
42 /**
43 * \ingroup Modules
44 * Implementation of Partset module
45 */
46 class PARTSET_EXPORT PartSet_Module : public ModuleBase_IModule, public Events_Listener
47 {
48 Q_OBJECT
49
50 /// Enumeration to specify the restart operation properties.
51 enum RestartingMode {
52   RM_None, /// the operation should not be restarted
53   RM_Forbided, /// the operation should not be restarted after there is no active widget
54   RM_LastFeatureUsed, /// the operation is restarted and use the previous feature for own initialization
55   RM_EmptyFeatureUsed /// the operation is restarted and does not use the previous feature
56 };
57
58 public:
59
60   /// Constructor
61   /// \param theWshop a pointer to a workshop
62   PartSet_Module(ModuleBase_IWorkshop* theWshop);
63   virtual ~PartSet_Module();
64
65   // Add default selection filters of the module to the current viewer
66   virtual void activateSelectionFilters();
67   // Remove default selection filters of the module from the current viewer
68   virtual void deactivateSelectionFilters();
69
70   // Stores the current selection
71   virtual void storeSelection();
72
73   // Restores the current selection
74   virtual void restoreSelection();
75
76   /// Creates custom widgets for property panel
77   virtual ModuleBase_ModelWidget* createWidgetByType(const std::string& theType, QWidget* theParent,
78                                                      Config_WidgetAPI* theWidgetApi);
79
80   /// Returns the active widget, by default it is the property panel active widget
81   /// If the internal edit operation is started, this is the first widget of the operation
82   virtual ModuleBase_ModelWidget* activeWidget() const;
83
84   /// Call back forlast tuning of property panel before operation performance
85   virtual void propertyPanelDefined(ModuleBase_Operation* theOperation);
86
87   /// If there is found selected attribute, widgets are created and contains only a widget for the attribute
88   /// It is important for Property Panel filling by sketch point attribute
89   /// \param theOperation a started operation
90   /// \param theWidgets a list of created widgets
91   /// \return boolean result, false by default
92   virtual bool createWidgets(ModuleBase_Operation* theOperation,
93                              QList<ModuleBase_ModelWidget*>& theWidgets) const;
94
95   /// Launching of a edit operation on the feature 
96   /// \param theFeature feature for editing
97   virtual void editFeature(FeaturePtr theFeature);
98
99   /// Returns true if the operation can be committed. Result in default implementation is true.
100   /// \return boolean value
101   virtual bool canCommitOperation() const;
102
103   /// Creates an operation and send it to loop
104   /// \param theCmdId the operation name
105   virtual void launchOperation(const QString& theCmdId);
106
107   /// Realizes some functionality by an operation start
108   /// Displays all sketcher sub-Objects, hides sketcher result, appends selection filters
109   /// Activate the operation presentation
110   /// \param theOperation a started operation
111   virtual void operationStarted(ModuleBase_Operation* theOperation);
112
113   /// Realizes some functionality by an operation resume
114   /// Activate the operation presentation
115   /// \param theOperation a resumed operation
116   virtual void operationResumed(ModuleBase_Operation* theOperation);
117
118   /// Realizes some functionality by an operation commit
119   /// Restarts sketcher operation automatically of it is necessary
120   /// \param theOperation a committed operation
121   virtual void operationCommitted(ModuleBase_Operation* theOperation);
122
123   /// Realizes some functionality by an operation abort
124   /// Hides all sketcher sub-Objects, displays sketcher result and removes selection filters
125   /// \param theOperation an aborted operation
126   virtual void operationAborted(ModuleBase_Operation* theOperation);
127
128   /// Realizes some functionality by an operation stop
129   /// Hides all sketcher sub-Objects, displays sketcher result and removes selection filters
130   /// \param theOperation a stopped operation
131   virtual void operationStopped(ModuleBase_Operation* theOperation);
132
133   /// Returns current operation
134   virtual ModuleBase_Operation* currentOperation() const;
135
136   /// Returns True if there are available Undos and the sketch manager allows undo
137   /// \return the boolean result
138   virtual bool canUndo() const;
139
140   //! Returns True if there are available Redos and the sketch manager allows redo
141   /// \return the boolean result
142   virtual bool canRedo() const;
143
144   /// Returnas true if the action can be applyed to the object
145   /// \param theObject a checked object
146   /// \param theActionId an identifier of action, to be found in the menu manager like "DELETE_CMD"
147   /// \return the a booean result
148   virtual bool canApplyAction(const ObjectPtr& theObject, const QString& theActionId) const;
149
150   /// Returns True if the current operation can be committed. Asks the sketch manager.
151   /// \return a boolean value
152   //virtual bool canCommitOperation() const;
153
154   /// Returns whether the object can be erased at the bounds of the active operation.
155   /// The sub-objects of the current operation can not be erased
156   /// \param theObject a model object
157   virtual bool canEraseObject(const ObjectPtr& theObject) const;
158
159   /// Returns whether the object can be displayed at the bounds of the active operation.
160   /// Display only current operation results for usual operation and ask the sketcher manager
161   /// if it is a sketch operation
162   /// \param theObject a model object
163   virtual bool canDisplayObject(const ObjectPtr& theObject) const;
164
165   /// Make some functionality after the objects are hidden in viewer
166   /// \param theObjects a list of hidden objects
167   //virtual void processHiddenObject(const std::list<ObjectPtr>& theObjects);
168
169   /// Returns true if selection for the object can be activate.
170   /// For sketch operation allow the selection activation if the operation is edit, for other
171   /// operation uses the default result
172   /// \param theObject a model object
173   virtual bool canActivateSelection(const ObjectPtr& theObject) const;
174
175   /// Add menu atems for object browser into the given menu
176   /// \param theMenu a popup menu to be shown in the object browser
177   virtual void addObjectBrowserMenu(QMenu* theMenu) const;
178
179   /// Add menu items for viewer into the actions map
180   /// \param theStdActions a map of standard actions
181   /// \param theParent a parent widget
182   /// \param theMenuActions map of action/menu for the desirable index in the viewer menu
183   /// \return true if items are added and there is no necessity to provide standard menu
184   virtual bool addViewerMenu(const QMap<QString, QAction*>& theStdActions,
185                              QWidget* theParent,
186                              QMap<int, QAction*>& theMenuActions) const;
187
188   /// Returns a list of modes, where the AIS objects should be activated
189   /// \param theModes a list of modes
190   virtual void activeSelectionModes(QIntList& theModes);
191
192   /// Appends specific selection modes for the module to the list of types
193   /// \param theTypes a selection modes to be extended
194   virtual void customSubShapesSelectionModes(QIntList& theTypes);
195
196   /// Returns whether the mouse enter the viewer's window
197   /// \return true if items are added and there is no necessity to provide standard menu
198   bool isMouseOverWindow();
199
200   /// Returns sketch manager object
201   PartSet_SketcherMgr* sketchMgr() const { return mySketchMgr; }
202
203   /// Returns sketch reentrant manager
204   PartSet_SketcherReetntrantMgr* sketchReentranceMgr() const { return mySketchReentrantMgr; }
205
206   /// Returns listener of overconstraint signal
207   /// \return the listener
208   PartSet_OverconstraintListener* overconstraintListener() { return myOverconstraintListener; }
209
210   /// Returns true if the current operation is not reentrant and the current state of the
211   /// application is not in launch operation mode
212   /// \return boolean value
213   bool isSketchNeutralPointActivated() const;
214
215   /// Performs functionality on closing document
216   virtual void closeDocument();
217
218   /// Clears specific presentations in the viewer
219   virtual void clearViewer();
220
221   /// Event Listener method
222   /// \param theMessage an event message
223   virtual void processEvent(const std::shared_ptr<Events_Message>& theMessage);
224
225   /// Set the object with the object results are customized
226   /// \param theFeature a feature
227   void setCustomized(const FeaturePtr& theFeature);
228
229   /// Return true if the custom presentation is activated
230   /// \param theFlag a flag of level of customization, which means that only part of sub-elements
231   /// \return boolean value
232   virtual bool isCustomPrsActivated(const ModuleBase_CustomizeFlag& theFlag) const;
233
234   /// Activate custom presentation for the object
235   /// \param theFeature a feature instance
236   /// \param theFlag a flag of level of customization, which means that only part of sub-elements
237   /// \param theUpdateViewer the parameter whether the viewer should be update immediately
238   virtual void activateCustomPrs(const FeaturePtr& theFeature,
239                                  const ModuleBase_CustomizeFlag& theFlag,
240                                  const bool theUpdateViewer);
241
242   /// Deactivate custom presentation for the object
243   /// \param theFlag a flag of level of customization, which means that only part of sub-elements
244   /// \param theUpdateViewer the parameter whether the viewer should be update immediately
245   virtual void deactivateCustomPrs(const ModuleBase_CustomizeFlag& theFlag,
246                                    const bool theUpdateViewer);
247
248   /// Modifies the given presentation in the custom way.
249   virtual bool customisePresentation(std::shared_ptr<ModelAPI_Result> theResult,
250                                      AISObjectPtr thePrs,
251                                      std::shared_ptr<GeomAPI_ICustomPrs> theCustomPrs);
252
253   /// Update the object presentable properties such as color, lines width and other
254   /// If the object is result with the color attribute value set, it is used,
255   /// otherwise the customize is applyed to the object's feature if it is a custom prs
256   /// \param theObject an object instance
257   /// \param theFlag a flag of level of customization, which means that only part of sub-elements
258   /// should be updated(e.g. only highlighted elements)
259   /// \param theUpdateViewer the parameter whether the viewer should be update immediatelly
260   /// \returns true if the object is modified
261   virtual bool customizeObject(ObjectPtr theObject, const ModuleBase_CustomizeFlag& theFlag,
262                                const bool theUpdateViewer);
263
264   /// This method is called on object browser creation for customisation of module specific features
265   /// \param theObjectBrowser a pinter on Object Browser widget
266   virtual void customizeObjectBrowser(QWidget* theObjectBrowser);
267
268   /// Returns the viewer Z layer
269   int getVisualLayerId() const { return myVisualLayerId; }
270
271   /// Create specific for the module presentation
272   /// \param theResult an object for presentation
273   /// \return created presentation or NULL(default value)
274   virtual Handle(AIS_InteractiveObject) createPresentation(
275                               const std::shared_ptr<ModelAPI_Result>& theResult);
276
277   //! Returns data object by AIS
278   virtual ObjectPtr findPresentedObject(const AISObjectPtr& theAIS) const;
279
280   //! Returns true if the presentation can be shown in shading mode
281   //! \param theAIS presentation to be checked
282   //! \return boolean value
283   virtual bool canBeShaded(Handle(AIS_InteractiveObject) theAIS) const;
284
285   /// Update state of pop-up menu items in viewer
286   /// \param theStdActions - a map of standard actions
287   virtual void updateViewerMenu(const QMap<QString, QAction*>& theStdActions); 
288
289   /// Returns true if the action should be always enabled
290   /// \param theActionId an action index: Accept or Accept All
291   /// \return boolean value
292   virtual bool isActionEnableStateFixed(const int theActionId) const;
293
294   //! Returns the feature error if the current state of the feature in the module is not correct
295   //! If the feature is correct, it returns an empty value
296   //! \return string value
297   virtual QString getFeatureError(const FeaturePtr& theFeature);
298
299   /// Returns list of granted operation indices
300   virtual void grantedOperationIds(ModuleBase_Operation* theOperation, QStringList& theIds) const;
301
302   /// Validates the current operation and send the state change to sketch manager
303   /// \param thePreviousState the previous widget value state
304   virtual void widgetStateChanged(int thePreviousState);
305
306   /// Returns true if the event is processed. It gives the reentrance manager to process the enter.
307   /// \param thePreviousAttributeID an index of the previous active attribute
308   virtual bool processEnter(const std::string& thePreviousAttributeID);
309
310   /// Performs some GUI actions before an operation transaction is stopped
311   /// Default realization is empty
312   virtual void beforeOperationStopped(ModuleBase_Operation* theOperation);
313
314   /// Finds a shape by attribute if it is possible
315   /// \param theAttribute an attribute
316   /// \return a geom shape
317   virtual GeomShapePtr findShape(const AttributePtr& theAttribute);
318
319   /// Finds an attribute by geom shape if it is possible
320   /// \param theObject an object of the attribute
321   /// \param theGeomShape a geom shape
322   /// \return theAttribute
323   virtual AttributePtr findAttribute(const ObjectPtr& theObject, const GeomShapePtr& theGeomShape);
324
325 public slots:
326   /// Redefines the parent method in order to customize the next case:
327   /// If the sketch nested operation is active and the presentation is not visualized in the viewer,
328   /// the operation should be always aborted.
329   virtual void onFeatureTriggered();
330
331   /// Slolt called on object display
332   /// \param theObject a data object
333   /// \param theAIS a presentation object
334   virtual void onObjectDisplayed(ObjectPtr theObject, AISObjectPtr theAIS);
335
336   /// Slot called on before object erase
337   /// \param theObject a data object
338   /// \param theAIS a presentation object
339   virtual void onBeforeObjectErase(ObjectPtr theObject, AISObjectPtr theAIS);
340
341   /// Called on transformation in current viewer
342   /// \param theTrsfType type of tranformation
343   void onViewTransformed(int theTrsfType = 2);
344
345 protected slots:
346   /// Called when previous operation is finished
347   virtual void onSelectionChanged();
348
349   /// SLOT, that is called by key release in the viewer.
350   /// \param theWnd a view window
351   /// \param theEvent the key event
352   void onKeyRelease(ModuleBase_IViewWindow* theWnd, QKeyEvent* theEvent);
353
354   /// A slot called on view window creation
355   void onViewCreated(ModuleBase_IViewWindow*);
356
357   /// A slot to change property panel title by choice type change if the title information
358   /// exists in the XML definition of this control attribute
359   /// \param theWidget a sender
360   /// \param theIndex the current choice index
361   void onChoiceChanged(ModuleBase_ModelWidget* theWidget, int theIndex);
362
363 protected:
364   /// Sets the constraints states in internal map. If the feature kind is a dimensional constraint
365   /// other dimensions are shown.
366   /// \param theFeatureKindId a feature kind
367   void storeConstraintsState(const std::string& theFeatureKindId);
368
369   /// If the feature kind is a geometrical or dimensional constraint, set visible state for
370   /// all types of constraints
371   /// \param theFeatureKindId a feature kind
372   void updateConstraintsState(const std::string& theFeatureKind);
373
374   /// Register validators for this module
375   virtual void registerValidators();
376
377   /// Register selection filters for this module
378   virtual void registerFilters();
379
380   /// Register properties of this module
381   virtual void registerProperties();
382
383   /// Connects or disconnects to the value changed signal of the property panel widgets
384   /// \param theWidget a property contol widget
385   /// \param isToConnect a boolean value whether connect or disconnect
386   virtual void connectToPropertyPanel(ModuleBase_ModelWidget* theWidget, const bool isToConnect);
387
388   /// Updates reentrant manager state or sketcher operations for the started operation
389   /// \param theOperation the started operation
390   void updateSketcherOnStart(ModuleBase_Operation* theOperation);
391
392   /// Updates presetnations of results and arguments by operation start
393   /// \param theOperation the started operation
394   void updatePresentationsOnStart(ModuleBase_Operation* theOperation);
395
396  private slots:
397    void onTreeViewDoubleClick(const QModelIndex&);
398
399    void onActiveDocPopup(const QPoint&);
400
401  private:
402   //! Delete features
403   virtual bool deleteObjects();
404
405   /// Returns the workshop
406   XGUI_Workshop* getWorkshop() const;
407
408   void setDefaultConstraintShown();
409
410 private:
411   bool myIsOperationIsLaunched; /// state of application between launch and stop operation
412   SelectMgr_ListOfFilter mySelectionFilters;
413
414   PartSet_SketcherMgr* mySketchMgr;
415   PartSet_SketcherReetntrantMgr* mySketchReentrantMgr;
416   PartSet_MenuMgr* myMenuMgr;
417   /// A default custom presentation, which is used for references objects of started operation
418   PartSet_CustomPrs* myCustomPrs;
419   PartSet_OverconstraintListener* myOverconstraintListener;
420   int myVisualLayerId;
421
422   /// backup of the visible state to restore them by operation stop
423   QMap<PartSet_Tools::ConstraintVisibleState, bool> myHasConstraintShown;
424
425   QModelIndex aActivePartIndex;
426 };
427
428 #endif