Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / PartSet / PartSet_OperationFeatureBase.h
1 // File:        PartSet_OperationFeatureBase.h
2 // Created:     20 Apr 2014
3 // Author:      Natalia ERMOLAEVA
4
5 #ifndef PARTSET_OPERATIONFEATUREBASE_H
6 #define PARTSET_OPERATIONFEATUREBASE_H
7
8 #include "PartSet.h"
9
10 #include <PartSet_OperationSketchBase.h>
11 #include <PartSet_Constants.h>
12
13 #include <QObject>
14
15 class GeomDataAPI_Point2D;
16 class QMouseEvent;
17 class QKeyEvent;
18
19 /*!
20  \class PartSet_OperationFeatureBase
21  * \brief The operation for the sketch feature creation
22  */
23 class PARTSET_EXPORT PartSet_OperationFeatureBase : public PartSet_OperationSketchBase
24 {
25 Q_OBJECT
26
27  public:
28   /// Constructor
29   /// \param theId the feature identifier
30   /// \param theParent the operation parent
31   /// \param theSketch the parent feature
32   PartSet_OperationFeatureBase(const QString& theId, QObject* theParent, CompositeFeaturePtr theSketch);
33   /// Destructor
34   virtual ~PartSet_OperationFeatureBase();
35
36   /// Returns the operation sketch feature
37   /// \returns the sketch instance
38   virtual CompositeFeaturePtr sketch() const;
39
40   /// Gives the current selected objects to be processed by the operation
41   /// \param theEvent the mouse event
42   /// \param theView a viewer to have the viewer the eye position
43   /// \param theSelected the list of selected presentations
44   /// \param theHighlighted the list of highlighted presentations
45   virtual void mouseReleased(QMouseEvent* theEvent, Handle_V3d_View theView,
46                              const std::list<ModuleBase_ViewerPrs>& theSelected,
47                              const std::list<ModuleBase_ViewerPrs>& theHighlighted);
48
49
50  protected:
51   /// Set value to the active widget
52   /// \param theFeature the feature
53   /// \param theX the horizontal coordinate
54   /// \param theY the vertical coordinate
55   /// \return true if the point is set
56   //bool setWidgetValue(ObjectPtr theFeature, double theX, double theY);
57
58  protected:
59   CompositeFeaturePtr mySketch;  ///< the sketch of the feature
60 };
61
62 #endif