]> SALOME platform Git repositories - modules/shaper.git/blob - src/SketchPlugin/SketchPlugin_Sketch.h
Salome HOME
4fd2a58eb636b0db623407a9b33b8bbe69f00cf9
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_Sketch.h
1 // File:        SketchPlugin_Sketch.h
2 // Created:     27 Mar 2014
3 // Author:      Mikhail PONIKAROV
4
5 #ifndef SketchPlugin_Sketch_HeaderFile
6 #define SketchPlugin_Sketch_HeaderFile
7
8 #include "SketchPlugin.h"
9 #include <SketchPlugin_Feature.h>
10 #include <GeomAPI_Pnt.h>
11 #include <GeomAPI_Pln.h>
12 #include <list>
13
14 /**\class SketchPlugin_Sketch
15  * \ingroup DataModel
16  * \brief Feature for creation of the new part in PartSet.
17  */
18 class SketchPlugin_Sketch: public SketchPlugin_Feature
19 {
20 public:
21   /// Sketch feature kind
22   inline static const std::string& ID()
23   {
24     static const std::string MY_SKETCH_ID("Sketch");
25     return MY_SKETCH_ID;
26   }
27   /// Origin point of the sketcher in 3D space
28   inline static const std::string& ORIGIN_ID()
29   {
30     static const std::string MY_ORIGIN_ID("Origin");
31     return MY_ORIGIN_ID;
32   }
33   /// Vector X inside of the sketch plane
34   inline static const std::string& DIRX_ID()
35   {
36     static const std::string MY_DIRX_ID("DirX");
37     return MY_DIRX_ID;
38   }
39   /// Vector Y inside of the sketch plane
40   inline static const std::string& DIRY_ID()
41   {
42     static const std::string MY_DIRY_ID("DirY");
43     return MY_DIRY_ID;
44   }
45   /// Vector Z, normal to the sketch plane
46   inline static const std::string& NORM_ID()
47   {
48     static const std::string MY_NORM_ID("Norm");
49     return MY_NORM_ID;
50   }
51   /// All features of this sketch (list of references)
52   inline static const std::string& FEATURES_ID()
53   {
54     static const std::string MY_FEATURES_ID("Features");
55     return MY_FEATURES_ID;
56   }
57
58   /// Returns the kind of a feature
59   SKETCHPLUGIN_EXPORT virtual const std::string& getKind() 
60   {static std::string MY_KIND = SketchPlugin_Sketch::ID(); return MY_KIND;}
61
62   /// Creates a new part document if needed
63   SKETCHPLUGIN_EXPORT virtual void execute();
64
65   /// Request for initialization of data model of the feature: adding all attributes
66   SKETCHPLUGIN_EXPORT virtual void initAttributes();
67
68   /// Adds sub-feature of the higher level feature (sub-element of the sketch)
69   /// \param theFeature sub-feature
70   SKETCHPLUGIN_EXPORT virtual const void addSub(
71     const FeaturePtr& theFeature);
72
73   /// Moves the feature
74   /// \param theDeltaX the delta for X coordinate is moved
75   /// \param theDeltaY the delta for Y coordinate is moved
76   SKETCHPLUGIN_EXPORT virtual void move(const double theDeltaX, const double theDeltaY) {};
77
78   /// Return the distance between the feature and the point
79   /// \param thePoint the point
80   virtual double distanceToPoint(const boost::shared_ptr<GeomAPI_Pnt2d>& thePoint) { return 0; };
81
82   /// Converts a 2D sketch space point into point in 3D space
83   SKETCHPLUGIN_EXPORT boost::shared_ptr<GeomAPI_Pnt> to3D(
84     const double theX, const double theY);
85
86   /// Returns true if this feature must be displayed in the history (top level of Part tree)
87   SKETCHPLUGIN_EXPORT virtual bool isInHistory() {return true;}
88
89   /// Use plugin manager for features creation
90   SketchPlugin_Sketch();
91
92   /// Returns the basis plane for the sketch
93   boost::shared_ptr<GeomAPI_Pln> plane();
94 protected:
95   /// Creates a plane and append it to the list
96   /// \param theX the X normal value
97   /// \param theY the Y normal value
98   /// \param theZ the Z normal value
99   /// \param theShapes the list of result shapes
100   //void addPlane(double theX, double theY, double theZ,
101   //              std::list<boost::shared_ptr<GeomAPI_Shape> >& theShapes) const;
102
103   /// Checks whether the plane is set in the sketch.
104   /// \returns the boolean state
105   bool isPlaneSet();
106 };
107
108 #endif