Salome HOME
Provide editing on multi-selection
[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 <ModelAPI_Feature.h>
13 #include <ModelAPI_Attribute.h>
14 #include <ModelAPI_CompositeFeature.h>
15 #include <ModelAPI_Result.h>
16
17 #include <ModuleBase_ViewerFilters.h>
18 #include <ModuleBase_Definitions.h>
19
20 #include <GeomAPI_Pln.h>
21 #include <SelectMgr_IndexedMapOfOwner.hxx>
22
23 #include <QObject>
24 #include <QList>
25
26 class PartSet_Module;
27 class ModuleBase_IViewWindow;
28 class ModuleBase_Operation;
29 class QMouseEvent;
30
31
32 /**
33 * A class for management of sketch operations
34 */
35 class PARTSET_EXPORT PartSet_SketcherMgr : public QObject
36 {
37   Q_OBJECT
38 public:
39   PartSet_SketcherMgr(PartSet_Module* theModule);
40
41   virtual ~PartSet_SketcherMgr();
42
43   static QStringList sketchOperationIdList();
44
45   /// Launches the operation from current highlighting
46   void launchEditing();
47
48   // Returns current Sketch feature/ Returns NULL if there is no launched sketch operation
49   CompositeFeaturePtr activeSketch() const { return myCurrentSketch; }
50
51   /// Starts sketch operation
52   void startSketch(ModuleBase_Operation* theOperation);
53
54   /// Stops sketch operation
55   void stopSketch(ModuleBase_Operation* theOperation);
56
57 public slots:
58   void onPlaneSelected(const std::shared_ptr<GeomAPI_Pln>& thePln);
59
60
61 private slots:
62   void onMousePressed(ModuleBase_IViewWindow*, QMouseEvent*);
63   void onMouseReleased(ModuleBase_IViewWindow*, QMouseEvent*);
64   void onMouseMoved(ModuleBase_IViewWindow*, QMouseEvent*);
65   void onMouseDoubleClick(ModuleBase_IViewWindow*, QMouseEvent*);
66
67 private:
68    /// Converts mouse position to 2d coordinates. 
69    /// Member myCurrentSketch has to be correctly defined
70   void get2dPoint(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent, 
71                   double& theX, double& theY);
72
73   /// Obtains the current selection of the object in the workshop viewer 
74   /// It includes the selection in all modes of activation, even local context - vertices, edges
75   /// It gets all results of the feature, find an AIS object in the viewer and takes all BRep
76   /// selection owners. If the owner is vertex, the corresponded attribute is seached in
77   /// the feature, if the owner is edge, the current result is added to the container of results.
78   /// \param theObject a feature or result object
79   /// \param theSketch a current sketch feature
80   /// \param theWorkshop a workshop to have an access to AIS context and displayer
81   /// \param theSelectedAttributes an out list of selected attributes
82   /// \param theSelectedResults an out list of selected results
83   static void getCurrentSelection(const ObjectPtr& theObject,
84                                   const FeaturePtr& theSketch,
85                                   ModuleBase_IWorkshop* theWorkshop,
86                                   std::set<AttributePtr>& theSelectedAttributes,
87                                   std::set<ResultPtr>& theSelectedResults);
88
89   /// Applyes the current selection to the object in the workshop viewer 
90   /// It includes the selection in all modes of activation, even local context - vertexes, edges
91   /// It gets all results of the feature, find an AIS object in the viewer and takes all BRep
92   /// selection owners. If the owner is vertex, the corresponded attribute is seached in
93   /// the feature and if it is in the container of selected attributes, the owner is put in the
94   /// out container. If the owner is edge and the current result is in the container of selected
95   /// results, the owner is put in the out container.
96   /// \param theObject a feature or result object
97   /// \param theSketch a current sketch feature
98   /// \param theWorkshop a workshop to have an access to AIS context and displayer
99   /// \param theSelectedAttributes an list of selected attributes
100   /// \param theSelectedResults an list of selected results
101   /// \param theOwnersToSelect an out container of found owners
102   static void getSelectionOwners(const ObjectPtr& theObject,
103                                   const FeaturePtr& theSketch,
104                                   ModuleBase_IWorkshop* theWorkshop,
105                                   const std::set<AttributePtr>& theSelectedAttributes,
106                                   const std::set<ResultPtr>& theSelectedResults,
107                                   SelectMgr_IndexedMapOfOwner& anOwnersToSelect);
108
109 private:
110   PartSet_Module* myModule;
111
112   bool myIsDragging;
113   bool myDragDone;
114   double myCurX, myCurY;
115
116   CompositeFeaturePtr myCurrentSketch;
117   QList<FeaturePtr> myEditingFeatures;
118   QList<AttributePtr> myEditingAttr;
119
120   Handle(ModuleBase_ShapeInPlaneFilter) myPlaneFilter;
121 };
122
123
124 #endif