Salome HOME
Issue #1774: Can't select edge for tangent constraint creation
[modules/shaper.git] / src / PartSet / PartSet_SketcherMgr.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        PartSet_SketcherMgr.h
4 // Created:     19 Dec 2014
5 // Author:      Vitaly SMETANNIKOV
6
7 #ifndef PartSet_SketcherMgr_H
8 #define PartSet_SketcherMgr_H
9
10 #include "PartSet.h"
11
12 #include "PartSet_Filters.h"
13 #include "PartSet_Tools.h"
14
15 #include <ModelAPI_Feature.h>
16 #include <ModelAPI_Attribute.h>
17 #include <ModelAPI_CompositeFeature.h>
18 #include <ModelAPI_Result.h>
19
20 #include <ModuleBase_ViewerFilters.h>
21 #include <ModuleBase_Definitions.h>
22 #include <ModuleBase_ModelWidget.h>
23
24 #include <GeomAPI_Pln.h>
25 #include <SelectMgr_IndexedMapOfOwner.hxx>
26
27 #include <QObject>
28 #include <QList>
29 #include <QMap>
30
31 class PartSet_Module;
32 class ModuleBase_IViewWindow;
33 class ModuleBase_ModelWidget;
34 class ModuleBase_Operation;
35 class XGUI_OperationMgr;
36 class XGUI_Workshop;
37
38 class Handle_AIS_InteractiveObject;
39
40 class QMouseEvent;
41
42 /**
43 * \ingroup Modules
44 * A class for management of sketch operations
45   At the time of the sketcher operation active, only the sketch sub-feature results are
46   displayed in the viewer. After the sketch create/edit operation is finished, the sub-feature
47   are hidden, the sketch feature result is displayed
48 */
49 class PARTSET_EXPORT PartSet_SketcherMgr : public QObject
50 {
51   Q_OBJECT
52   /// Struct to define gp point, with the state is the point is initialized
53   struct Point
54   {
55     /// Constructor
56     Point()
57     {
58       myIsInitialized = false;
59     }
60     /// Destructor
61     ~Point()
62     {
63     }
64
65     /// clear the initialized flag.
66     void clear()
67     {
68       myIsInitialized = false;
69     }
70     /// set the point and switch on the initialized flag
71     /// \param thePoint the point
72     void setValue(const double theX, const double theY)
73     {
74       myIsInitialized = true;
75       myCurX = theX;
76       myCurY = theY;
77     }
78
79     bool myIsInitialized;  /// the state whether the point is set
80     double myCurX, myCurY; /// the point coordinates
81   };
82 public:
83   /// Constructor
84   /// \param theModule a pointer to PartSet module
85   PartSet_SketcherMgr(PartSet_Module* theModule);
86
87   virtual ~PartSet_SketcherMgr();
88
89   /// Returns true if the operation is the sketch
90   /// \param theOperation an operation
91   /// \return the boolean result
92   static bool isSketchOperation(ModuleBase_Operation* theOperation);
93
94   /// Returns true if the operation feature belongs to list of granted features of Sketch
95   /// operation. An operation of a sketch should be started before.
96   /// \param theOperation an operation
97   /// \return the boolean result
98   bool isNestedSketchOperation(ModuleBase_Operation* theOperation) const;
99
100   /// Returns true if the operation is a create and nested sketch operationn
101   /// \param theOperation a checked operation
102   /// \param theSketch a sketch feature
103   //// \return boolean value
104   bool isNestedCreateOperation(ModuleBase_Operation* theOperation,
105                                       const CompositeFeaturePtr& /*theSketch*/) const;
106
107   /// Returns true if the operation is an edit nested feature one
108   /// \param theOperation a checked operation
109   //// \return boolean value
110   bool isNestedEditOperation(ModuleBase_Operation* theOperation,
111                                     const CompositeFeaturePtr& /*theSketch*/) const;
112
113   /// Returns whether the current operation is a sketch entity - line, point, arc or circle
114   /// \param theId is an id of object
115   /// \return a boolean value
116   static bool isEntity(const std::string& theId);
117
118   /// Returns whether the current operation is a sketch distance - lenght, distance or radius
119   /// \param theOperation the operation
120   /// \return a boolean value
121   static bool isDistanceOperation(ModuleBase_Operation* theOperation);
122
123   /// Returns whether the feature kind is a sketch distance - lenght, distance or radius
124   /// \param theKind the feature kind
125   /// \return a boolean value
126   static bool isDistanceKind(std::string& theKind);
127
128   /// Returns true if a mouse cursor is over viewer window
129   bool isMouseOverWindow() { return myIsMouseOverWindow; }
130
131   /// Returns current Sketch feature/ Returns NULL if there is no launched sketch operation
132   CompositeFeaturePtr activeSketch() const { return myCurrentSketch; }
133
134   /// Starts sketch operation
135   void startSketch(ModuleBase_Operation* );
136
137   /// Stops sketch operation
138   void stopSketch(ModuleBase_Operation* );
139
140   /// Starts sketch operation, connects to the opeation property panel
141   /// \param theOperation a committed operation
142   void startNestedSketch(ModuleBase_Operation* theOperation);
143
144   /// Stop sketch operation, disconnects from the opeation property panel
145   /// \param theOperation a stopped operation
146   void stopNestedSketch(ModuleBase_Operation* theOperation);
147
148   /// Visualizes the operation feature if it is a creation nested feature operation
149   /// \param theOperation a committed operation
150   void commitNestedSketch(ModuleBase_Operation* theOperation);
151
152   /// Append the sketch plane filter into the current viewer
153   /// \param toActivate state whether the filter should be activated/deactivated
154   void activatePlaneFilter(const bool& toActivate);
155
156   /// Commit the operation if it is possible. If the operation is dimention constraint,
157   /// it gives widget editor to input dimention value
158   /// \return true if the operation is stopped after activation
159   bool operationActivatedByPreselection();
160
161   /// Returns True if there are available Undos and the sketch manager allows undo
162   /// \return the boolean result
163   bool canUndo() const;
164
165   //! Returns True if there are available Redos and the sketch manager allows redo
166   /// \return the boolean result
167   bool canRedo() const;
168
169   /// Returns False only if the sketch creating feature can not be visualized.
170   /// \return a boolean value
171   //bool canCommitOperation() const;
172
173   /// Returns whether the object can be erased at the bounds of the active operation.
174   /// Sketch sub-entities can not be erased during the sketch operation
175   /// \param theObject a model object
176   bool canEraseObject(const ObjectPtr& theObject) const;
177
178   /// Returns whether the object can be displayed at the bounds of the active operation.
179   /// Display only current operation results for usual operation and ask the sketcher manager
180   /// if it is a sketch operation
181   /// \param theObject a model object
182   bool canDisplayObject(const ObjectPtr& theObject) const;
183
184   /// Returns whether the constraint object can be displayed. It depends on the sketch check
185   /// box states
186   /// \param theObject a model object
187   /// \param theState the constraint visible state state to be checked
188   /// \param isProcessed an output parameter if it is processed
189   /// \return result value
190   bool canDisplayConstraint(const FeaturePtr& theObject,
191                             const PartSet_Tools::ConstraintVisibleState& theState,
192                             bool& isProcessed) const;
193
194   /// Check the given objects either there are some results of the current sketch. If so,
195   /// it suggests to delete them as there are no functionality to show back hidden sketch objects
196   /// \param theObjects a list of hidden objects
197   //virtual void processHiddenObject(const std::list<ObjectPtr>& theObjects);
198
199   /// Returns true if the mouse is over viewer or property panel value is changed
200   /// \return boolean result
201   bool canDisplayCurrentCreatedFeature() const;
202
203   /// Returns true if the current operation is nested creation or internal reentrant edit
204   /// \param theOperation an operation
205   bool canChangeCursor(ModuleBase_Operation* theOperation) const;
206
207   /// Returns state of constraints showing flag 
208   const QMap<PartSet_Tools::ConstraintVisibleState, bool>& showConstraintStates();
209
210   /// Returns true if the object is a current sketch sub feature of a result of the feature
211   /// \param theObject an object
212   /// \return boolean value
213   bool isObjectOfSketch(const ObjectPtr& theObject) const;
214
215   /// Saves the current selection in the viewer into an internal container
216   /// It obtains the selected attributes. The highlighted objects can be processes as the selected ones
217   /// \param theHighlightedOnly a boolean flag
218   void storeSelection(const bool theHighlightedOnly = false);
219
220   /// Restores previously saved selection state
221   void restoreSelection();
222
223   /// Return error state of the sketch feature, true if the error has happened
224   /// \return boolean value
225   bool sketchSolverError();
226
227   //! Returns the feature error if the current state of the feature in the sketch is not correct
228   //! If the feature is correct, it returns an empty value
229   //! Incorrect states: the feature is sketch, the solver error value
230   //! The feature value is reset, this is the flag of sketch mgr
231   //! \return string value
232   QString getFeatureError(const FeaturePtr& theFeature);
233
234   /// It nullify internal flags concerned to clicked mouse event
235   void clearClickedFlags();
236
237   /// Returns list of strings which contains id's of sketch replication operations
238   static const QStringList& replicationsIdList();
239
240   /// Returns list of strings which contains id's of constraints operations
241   static const QStringList& constraintsIdList();
242
243   /// Returns a list of modes, where the AIS objects should be activated
244   /// \param theModes a list of modes
245   static void sketchSelectionModes(QIntList& theModes);
246
247   /// Create specific for the module presentation
248   /// \param theResult an object for presentation
249   /// \return created presentation or NULL(default value)
250   virtual Handle_AIS_InteractiveObject createPresentation(const ResultPtr& theResult);
251
252   /// Connects or disconnects to the value changed signal of the property panel widgets
253   /// \param theWidget a property contol widget
254   /// \param isToConnect a boolean value whether connect or disconnect
255   void connectToPropertyPanel(ModuleBase_ModelWidget* theWidget, const bool isToConnect);
256
257   /// Visualize the operation feature if the previous state is modified value in property panel
258   /// \param thePreviousState the previous widget value state
259   void widgetStateChanged(int thePreviousState);
260
261   /// If the current operation is a dimention one, the style of dimension visualization is send for
262   /// the current object
263   /// \param theObject an object to be customized
264   void customizePresentation(const ObjectPtr& theObject);
265
266   /// Update sketch presentations according to the the state
267   /// \param theType a type of sketch visualization style
268   /// \param theState a boolean state
269   void updateBySketchParameters(const PartSet_Tools::ConstraintVisibleState& theType,
270                                 bool theState);
271
272 public slots:
273   /// Process sketch plane selected event
274   void onPlaneSelected(const std::shared_ptr<GeomAPI_Pln>& thePln);
275
276 private slots:
277   /// Toggle show constraints
278   void onShowConstraintsToggle(int theType, bool theState);
279   /// Process the enter mouse to the view port. If the current operation is a create of
280   /// a nested sketch feature, it updates internal flags to display the feature on mouse move
281   void onEnterViewPort();
282   /// Process the leave mouse of the view port. If the current operation is a create of
283   /// a nested sketch feature, it hides the feature in the viewer
284   void onLeaveViewPort();
285   /// Listens to the value changed signal and display the current operation feature
286   void onBeforeValuesChangedInPropertyPanel();
287   /// Listens to the signal about the modification of the values have been done in the property panel
288   void onAfterValuesChangedInPropertyPanel();
289
290   void onMousePressed(ModuleBase_IViewWindow*, QMouseEvent*);
291   void onMouseReleased(ModuleBase_IViewWindow*, QMouseEvent*);
292   void onMouseMoved(ModuleBase_IViewWindow*, QMouseEvent*);
293   void onMouseDoubleClick(ModuleBase_IViewWindow*, QMouseEvent*);
294   void onApplicationStarted();
295   //void onBeforeWidgetActivated(ModuleBase_ModelWidget* theWidget);
296
297   void onBeforeContextMenu();
298   void onAfterContextMenu();
299
300 private:
301   /// Launches the operation from current highlighting
302   void launchEditing();
303
304   /// Converts mouse position to 2d coordinates. 
305   /// Member myCurrentSketch has to be correctly defined
306   void get2dPoint(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent, 
307                   Point& thePoint);
308
309   /// Show distance value editor if it is a distance operation and all attribute references
310   /// are filled by preseletion
311   /// \return true if the value is accepted
312   static bool setDistanceValueByPreselection(ModuleBase_Operation* theOperation,
313                                              ModuleBase_IWorkshop* theWorkshop,
314                                              bool& theCanCommitOperation);
315
316   typedef QMap<FeaturePtr, std::pair<std::set<AttributePtr>, std::set<ResultPtr> > >
317                                                                        FeatureToSelectionMap;
318
319   /// Applyes the current selection to the object in the workshop viewer 
320   /// It includes the selection in all modes of activation, even local context - vertexes, edges
321   /// It gets all results of the feature, find an AIS object in the viewer and takes all BRep
322   /// selection owners. If the owner is vertex, the corresponded attribute is seached in
323   /// the feature and if it is in the container of selected attributes, the owner is put in the
324   /// out container. If the owner is edge and the current result is in the container of selected
325   /// results, the owner is put in the out container.
326   /// \param theFeature a feature or result object
327   /// \param theSketch a current sketch feature
328   /// \param theWorkshop a workshop to have an access to AIS context and displayer
329   /// \param theSelection a container of the selection, it has results and attributres for a feature
330   /// \param theOwnersToSelect an out container of found owners
331   static void getSelectionOwners(const FeaturePtr& theFeature,
332                                   const FeaturePtr& theSketch,
333                                   ModuleBase_IWorkshop* theWorkshop,
334                                   const FeatureToSelectionMap& theSelection,
335                                   SelectMgr_IndexedMapOfOwner& anOwnersToSelect);
336
337   /// Returns true if the created feature is visible
338   /// \param 
339   bool isVisibleCreatedFeature() const;
340
341   /// Returns a current operation
342   /// \return an operation
343   ModuleBase_Operation* getCurrentOperation() const;
344
345   /// Get the active widget in the property panel
346   ModuleBase_ModelWidget* getActiveWidget() const;
347
348   /// Erase or display the feature of the current operation. If the mouse over the active view or
349   /// a current value is changed by property panel, the feature is displayed otherwise it is hidden
350   /// \param theOperation an operation which feature is to be displayed, it is nested create operation
351   /// \param isToDisplay a flag about the display or erase the feature
352   void visualizeFeature(const FeaturePtr& theFeature, const bool isEditOperation,
353                         const bool isToDisplay, const bool isFlushRedisplay = true);
354
355 private:
356   /// Updates selection priority of the presentation
357   /// \param theObject object to find a presentation which will be corrected
358   /// \param theFeature a feature of the presentation
359   void updateSelectionPriority(ObjectPtr theObject, FeaturePtr theFeature);
360   /// Returns current workshop
361   XGUI_Workshop* workshop() const;
362   /// Returns operation manager
363   XGUI_OperationMgr* operationMgr() const;
364
365 private:
366   PartSet_Module* myModule;
367
368   bool myPreviousDrawModeEnabled; // the previous selection enabled state in the viewer
369   bool myIsDragging;
370   bool myDragDone;
371   bool myIsMouseOverWindow; /// the state that the mouse over the view
372   bool myIsMouseOverViewProcessed; /// the state whether the over view state is processed by mouseMove method
373   bool myIsPopupMenuActive; /// the state of the popup menu is shown
374   Point myCurrentPoint;
375   //Point myClickedPoint;
376
377   CompositeFeaturePtr myCurrentSketch;
378
379   Handle(PartSet_CirclePointFilter) myCirclePointFilter;
380   Handle(ModuleBase_ShapeInPlaneFilter) myPlaneFilter;
381   FeatureToSelectionMap myCurrentSelection;
382   bool myPreviousUpdateViewerEnabled;
383
384   QMap<PartSet_Tools::ConstraintVisibleState, bool> myIsConstraintsShown;
385 };
386
387
388 #endif