]> SALOME platform Git repositories - modules/shaper.git/blob - src/PartSet/PartSet_Module.h
Salome HOME
Using mouse double click for history line change
[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_Filters.h"
8 #include "PartSet_DocumentDataModel.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
21 #include <QMap>
22 #include <QMenu>
23 #include <QObject>
24
25 #include <string>
26
27 #include <memory>
28
29 class ModuleBase_Operation;
30 class ModuleBase_IViewWindow;
31 class PartSet_MenuMgr;
32 class PartSet_SketcherMgr;
33
34 class QAction;
35
36 /**
37 * \ingroup Modules
38 * Implementation of Partset module
39 */
40 class PARTSET_EXPORT PartSet_Module : public ModuleBase_IModule, public Events_Listener
41 {
42 Q_OBJECT
43
44 /// Enumeration to specify the restart operation properties.
45 enum RestartingMode {
46   RM_None, /// the operation should not be restarted
47   RM_Forbided, /// the operation should not be restarted after there is no active widget
48   RM_LastFeatureUsed, /// the operation is restarted and use the previous feature for own initialization
49   RM_EmptyFeatureUsed /// the operation is restarted and does not use the previous feature
50 };
51
52 public:
53
54   /// Constructor
55   /// \param theWshop a pointer to a workshop
56   PartSet_Module(ModuleBase_IWorkshop* theWshop);
57   virtual ~PartSet_Module();
58
59   /// Creates custom widgets for property panel
60   virtual ModuleBase_ModelWidget* createWidgetByType(const std::string& theType, QWidget* theParent,
61                                                      Config_WidgetAPI* theWidgetApi, std::string theParentId);
62
63   /// Call back forlast tuning of property panel before operation performance
64   virtual void propertyPanelDefined(ModuleBase_Operation* theOperation);
65
66
67   /// Realizes some functionality by an operation start
68   /// Displays all sketcher sub-Objects, hides sketcher result, appends selection filters
69   /// \param theOperation a started operation
70   virtual void operationStarted(ModuleBase_Operation* theOperation);
71
72   /// Realizes some functionality by an operation commit
73   /// Restarts sketcher operation automatically of it is necessary
74   /// \param theOperation a committed operation
75   virtual void operationCommitted(ModuleBase_Operation* theOperation);
76
77   /// Realizes some functionality by an operation abort
78   /// Hides all sketcher sub-Objects, displays sketcher result and removes selection filters
79   /// \param theOperation an aborted operation
80   virtual void operationAborted(ModuleBase_Operation* theOperation);
81
82   /// Realizes some functionality by an operation stop
83   /// Hides all sketcher sub-Objects, displays sketcher result and removes selection filters
84   /// \param theOperation a stopped operation
85   virtual void operationStopped(ModuleBase_Operation* theOperation);
86
87   /// Returns current operation
88   virtual ModuleBase_Operation* currentOperation() const;
89
90   /// Returns True if there are available Undos and the sketch manager allows undo
91   /// \return the boolean result
92   virtual bool canUndo() const;
93
94   //! Returns True if there are available Redos and the sketch manager allows redo
95   /// \return the boolean result
96   virtual bool canRedo() const;
97
98   /// Returns whether the object can be displayed at the bounds of the active operation.
99   /// Display only current operation results for usual operation and ask the sketcher manager
100   /// if it is a sketch operation
101   /// \param theObject a model object
102   virtual bool canDisplayObject(const ObjectPtr& theObject) const;
103
104   /// Add menu atems for object browser into the given menu
105   /// \param theMenu a popup menu to be shown in the object browser
106   virtual void addObjectBrowserMenu(QMenu* theMenu) const;
107
108   /// Add menu atems for viewer into the given menu
109   /// \param theMenu a popup menu to be shown in the viewer
110   /// \param theStdActions a map of standard actions
111   /// \return true if items are added and there is no necessity to provide standard menu
112   virtual bool addViewerMenu(QMenu* theMenu, const QMap<QString, QAction*>& theStdActions) const;
113
114   /// Returns a list of modes, where the AIS objects should be activated
115   /// \param theModes a list of modes
116   virtual void activeSelectionModes(QIntList& theModes);
117
118   /// Returns whether the mouse enter the viewer's window
119   /// \return true if items are added and there is no necessity to provide standard menu
120   bool isMouseOverWindow();
121
122   PartSet_SketcherMgr* sketchMgr() const { return mySketchMgr; }
123
124   /// Returns data model object for representation of data tree in Object browser
125   virtual ModuleBase_IDocumentDataModel* dataModel() const { return myDataModel; }
126
127   /// Event Listener method
128   /// \param theMessage an event message
129   virtual void processEvent(const std::shared_ptr<Events_Message>& theMessage);
130
131   /// This method is called on object browser creation for customisation of module specific features
132   /// \param theObjectBrowser a pinter on Object Browser widget
133   virtual void customizeObjectBrowser(QWidget* theObjectBrowser);
134
135 public slots:
136   /// SLOT, that is called by no more widget signal emitted by property panel
137   /// Set a specific flag to restart the sketcher operation
138   void onNoMoreWidgets();
139
140   /// Slolt called on object display
141   /// \param theObject a data object
142   /// \param theAIS a presentation object
143   virtual void onObjectDisplayed(ObjectPtr theObject, AISObjectPtr theAIS);
144
145 protected slots:
146   /// Called when previous operation is finished
147   virtual void onSelectionChanged();
148
149   /// SLOT, that is called by key release in the viewer.
150   /// \param theWnd a view window
151   /// \param theEvent the key event
152   void onKeyRelease(ModuleBase_IViewWindow* theWnd, QKeyEvent* theEvent);
153
154   /// SLOT, that is called by enter key released
155   /// Set a specific type of restarting the current operation
156   void onEnterReleased();
157
158   /// SLOT, that is called by the current operation filling with the preselection.
159   /// It commits the operation of it is can be committed
160   void onOperationActivatedByPreselection();
161
162  protected:
163   /// Register validators for this module
164   virtual void registerValidators();
165
166   /// Register selection filters for this module
167   virtual void registerFilters();
168
169   /// Register properties of this module
170   virtual void registerProperties();
171
172   /// Sends the operation for launching
173   /// \param theOperation the operation
174   virtual void sendOperation(ModuleBase_Operation* theOperation);
175
176   //! Activates or deactivates a part
177   //! If PartPtr is Null pointer then PartSet will be activated
178   //void activatePart(std::shared_ptr<ModelAPI_ResultPart> theFeature);
179
180  private slots:
181    /// Processing of vertex selected
182    void onVertexSelected();
183
184    /// Called on transformation in current viewer
185    /// \param theTrsfType type of tranformation
186    void onViewTransformed(int theTrsfType = 2);
187
188  private:
189   /// Breaks sequense of automatically resterted operations
190   void breakOperationSequence();
191
192   //! Delete features
193   virtual bool deleteObjects();
194
195  private:
196    QString myLastOperationId;
197    FeaturePtr myLastFeature;
198
199    // Automatical restarting mode flag
200    RestartingMode myRestartingMode;
201
202   /// A filter which provides selection within a current document or whole PartSet
203   Handle(PartSet_GlobalFilter) myDocumentShapeFilter;
204
205   PartSet_SketcherMgr* mySketchMgr;
206
207   PartSet_MenuMgr* myMenuMgr;
208
209   int myVisualLayerId;
210
211   PartSet_DocumentDataModel* myDataModel;
212 };
213
214 #endif