Salome HOME
Making compilable all non-GUI classes
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_Line.h
1 // File:        SketchPlugin_Line.h
2 // Created:     24 Apr 2014
3 // Author:      Mikhail PONIKAROV
4
5 #ifndef SketchPlugin_Line_HeaderFile
6 #define SketchPlugin_Line_HeaderFile
7
8 #include "SketchPlugin.h"
9 #include <SketchPlugin_Feature.h>
10 #include <SketchPlugin_Sketch.h>
11 #include <list>
12
13 /// Line feature kind
14 const std::string SKETCH_LINE_KIND("SketchLine");
15
16 /// Start 2D point of the line
17 const std::string LINE_ATTR_START("StartPoint");
18 /// End 2D point of the line
19 const std::string LINE_ATTR_END("EndPoint");
20
21 /**\class SketchPlugin_Line
22  * \ingroup DataModel
23  * \brief Feature for creation of the new part in PartSet.
24  */
25 class SketchPlugin_Line: public SketchPlugin_Feature
26 {
27 public:
28   /// Returns the kind of a feature
29   SKETCHPLUGIN_EXPORT virtual const std::string& getKind() 
30   {static std::string MY_KIND = SKETCH_LINE_KIND; return MY_KIND;}
31
32   /// Creates a new part document if needed
33   SKETCHPLUGIN_EXPORT virtual void execute();
34
35   /// Request for initialization of data model of the feature: adding all attributes
36   SKETCHPLUGIN_EXPORT virtual void initAttributes();
37
38   /// Returns the AIS preview
39   SKETCHPLUGIN_EXPORT virtual boost::shared_ptr<GeomAPI_AISObject> getAISObject(
40                                 boost::shared_ptr<GeomAPI_AISObject> thePrevious)
41   {return simpleAISObject(firstResult(), thePrevious);}
42
43   /// Moves the feature
44   /// \param theDeltaX the delta for X coordinate is moved
45   /// \param theDeltaY the delta for Y coordinate is moved
46   SKETCHPLUGIN_EXPORT virtual void move(const double theDeltaX, const double theDeltaY);
47
48   /// Return the distance between the feature and the point
49   /// \param thePoint the point
50   virtual double distanceToPoint(const boost::shared_ptr<GeomAPI_Pnt2d>& thePoint);
51
52   /// Use plugin manager for features creation
53   SketchPlugin_Line();
54 };
55
56 #endif