1 // File: PartSet_OperationSketch.h
2 // Created: 20 Apr 2014
3 // Author: Natalia ERMOLAEVA
5 #ifndef PartSet_OperationSketch_H
6 #define PartSet_OperationSketch_H
10 #include <PartSet_OperationSketchBase.h>
14 \class PartSet_OperationSketch
15 * \brief The operation for the sketch feature creation
17 class PARTSET_EXPORT PartSet_OperationSketch : public PartSet_OperationSketchBase
21 /// Returns the operation type key
22 static std::string Type() { return "Sketch"; }
26 /// \param theId the feature identifier
27 /// \param theParent the operation parent
28 PartSet_OperationSketch(const QString& theId, QObject* theParent);
30 virtual ~PartSet_OperationSketch();
32 /// Returns the operation local selection mode
33 /// \param theFeature the feature object to get the selection mode
34 /// \return the selection mode
35 virtual std::list<int> getSelectionModes(boost::shared_ptr<ModelAPI_Feature> theFeature) const;
37 /// Processes the mouse release in the point
38 /// \param thePoint a point clicked in the viewer
39 /// \param theEvent the mouse event
40 /// \param theSelected the list of selected presentations
41 virtual void mouseReleased(QMouseEvent* theEvent, Handle_V3d_View theView,
42 const std::list<XGUI_ViewerPrs>& theSelected);
45 /// signal about the sketch plane is selected
46 /// \param theX the value in the X direction of the plane
47 /// \param theX the value in the Y direction value of the plane
48 /// \param theX the value in the Z direction of the plane
49 void planeSelected(double theX, double theY, double theZ);
52 /// Set the plane to the current sketch
53 /// \param theShape the shape
54 void setSketchPlane(const TopoDS_Shape& theShape);
57 bool myIsEditMode; /// the edit mode of this operation