Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / PartSet / PartSet_OperationSketchBase.h
1 // File:        PartSet_OperationSketchBase.h
2 // Created:     20 Apr 2014
3 // Author:      Natalia ERMOLAEVA
4
5 #ifndef PartSet_OperationSketchBase_H
6 #define PartSet_OperationSketchBase_H
7
8 #include "PartSet.h"
9
10 #include <TopoDS_Shape.hxx>
11 #include <gp_Pnt.hxx>
12 #include <NCollection_List.hxx>
13
14 #include <ModuleBase_Operation.h>
15 #include <ModuleBase_Operation.h>
16
17 #include <XGUI_Constants.h>
18 #include <XGUI_Displayer.h>
19
20 #include <QObject>
21
22 #include <AIS_InteractiveObject.hxx>
23
24 #include <map>
25
26 class Handle_V3d_View;
27 class QMouseEvent;
28 class GeomAPI_Shape;
29 class ModuleBase_ViewerPrs;
30
31 /*!
32  \class PartSet_OperationSketchBase
33  * \brief The base operation for the sketch features.
34  *  Base class for all sketch operations. It provides an access to the feature preview
35  */
36 class PARTSET_EXPORT PartSet_OperationSketchBase : public ModuleBase_Operation
37 {
38 Q_OBJECT
39  public:
40   enum FeatureActionMode
41   {
42     FM_Activation,
43     FM_Deactivation,
44     FM_Hide
45   };
46
47  public:
48   /// Constructor
49   /// \param theId an feature index
50   /// \param theParent the object parent
51   PartSet_OperationSketchBase(const QString& theId, QObject* theParent);
52   /// Destructor
53   virtual ~PartSet_OperationSketchBase();
54
55   /// Returns the feature preview shape
56   /// \param theFeature the feature object to obtain the preview
57   static boost::shared_ptr<GeomAPI_Shape> preview(FeaturePtr theFeature);
58
59   /// Returns the list of the nested features
60   /// \return the list of subfeatures
61   virtual std::list<FeaturePtr> subFeatures() const;
62
63   /// Returns the operation local selection mode
64   /// \param theFeature the feature object to get the selection mode
65   /// \return the selection mode
66   virtual std::list<int> getSelectionModes(ObjectPtr theFeature) const;
67
68   /// Initializes the operation with previously created feature. It is used in sequental operations
69   virtual void initFeature(FeaturePtr theFeature)
70   {
71   }
72
73   /// Initialisation of operation with preliminary selection
74   /// \param theSelected the list of selected presentations
75   /// \param theHighlighted the list of highlighted presentations
76   virtual void initSelection(const std::list<ModuleBase_ViewerPrs>& theSelected,
77                              const std::list<ModuleBase_ViewerPrs>& theHighlighted)
78   {
79   }
80
81   /// Returns the operation sketch feature
82   /// \returns the sketch instance
83   virtual FeaturePtr sketch() const = 0;
84
85   /// Processes the mouse pressed in the point
86   /// \param theEvent the mouse event
87   /// \param theView a viewer to have the viewer the eye position
88   /// \param theSelected the list of selected presentations
89   /// \param theHighlighted the list of highlighted presentations
90   virtual void mousePressed(QMouseEvent* theEvent, Handle_V3d_View theView,
91                             const std::list<ModuleBase_ViewerPrs>& theSelected,
92                             const std::list<ModuleBase_ViewerPrs>& theHighlighted);
93
94   /// Processes the mouse release in the point
95   /// \param theEvent the mouse event
96   /// \param theView a viewer to have the viewer the eye position
97   /// \param theSelected the list of selected presentations
98   /// \param theHighlighted the list of highlighted presentations
99   virtual void mouseReleased(QMouseEvent* theEvent, Handle_V3d_View theView,
100                              const std::list<ModuleBase_ViewerPrs>& theSelected,
101                              const std::list<ModuleBase_ViewerPrs>& theHighlighted);
102
103   /// Processes the mouse move in the point
104   /// \param theEvent the mouse event
105   /// \param theView a viewer to have the viewer the eye position
106   virtual void mouseMoved(QMouseEvent* theEvent, Handle_V3d_View theView);
107
108   /// Processes the mouse double click in the point
109   /// \param theEvent the mouse event
110   /// \param theView a viewer to have the viewer the eye position
111   /// \param theSelected the list of selected presentations
112   /// \param theHighlighted the list of highlighted presentations
113   virtual void mouseDoubleClick(QMouseEvent* theEvent, Handle_V3d_View theView,
114                                 const std::list<ModuleBase_ViewerPrs>& theSelected,
115                                 const std::list<ModuleBase_ViewerPrs>& theHighlighted);
116
117   /// Emits a signal about the operation start. This signal has an information about the feature.
118   /// If the provided feature is empty, the current operation feature is used.
119   /// \param theType a type of an operation started
120   /// theFeature the operation argument
121   void restartOperation(const std::string& theType, ObjectPtr theFeature = ObjectPtr());
122
123 signals:
124   /// signal about the request to launch operation
125   /// theName the operation name
126   /// theFeature the operation argument
127   void restartRequired(std::string theName, ObjectPtr theFeature);
128
129   /// Signal about the feature construing is finished
130   /// \param theFeature the result feature
131   /// \param theMode the mode of the feature modification
132   void featureConstructed(ObjectPtr theFeature, int theMode);
133
134   /// Signal about the features should be selected
135   /// \param theSelected the list of selected presentations
136   void featureSelected(const std::list<ModuleBase_ViewerPrs>& theSelected);
137
138   /// signal to enable/disable multi selection in the viewer
139   /// \param theEnabled the boolean state
140   void multiSelectionEnabled(bool theEnabled);
141
142   /// signal to enable/disable selection in the viewer
143   /// \param theFeatures a list of features to be disabled
144   /// \param theToStop the boolean state whether it it stopped or non stopped
145   void stopSelection(const QList<ObjectPtr>& theFeatures, const bool theToStop);
146
147   /// signal to set selection in the viewer
148   /// \param theFeatures a list of features to be disabled
149   void setSelection(const QList<ObjectPtr>& theFeatures);
150
151   /// signal to close the operation local context if it is opened
152   void closeLocalContext();
153
154  protected:
155   /// Creates an operation new feature
156   /// In addition to the default realization it appends the created line feature to
157   /// the sketch feature
158   /// \param theFlushMessage the flag whether the create message should be flushed
159   /// \returns the created feature
160   virtual FeaturePtr createFeature(const bool theFlushMessage = true);
161 };
162
163 #endif