Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_ConstraintParallel.h
1 // File:    SketchPlugin_ConstraintParallel.h
2 // Created: 26 May 2014
3 // Author:  Artem ZHIDKOV
4
5 #ifndef SketchPlugin_ConstraintParallel_HeaderFile
6 #define SketchPlugin_ConstraintParallel_HeaderFile
7
8 #include "SketchPlugin.h"
9 #include <SketchPlugin_Sketch.h>
10 #include "SketchPlugin_Constraint.h"
11
12 /// Parallel constraint kind
13 const std::string SKETCH_CONSTRAINT_PARALLEL_KIND("SketchConstraintParallel");
14
15 /** \class SketchPlugin_ConstraintParallel
16  *  \ingroup DataModel
17  *  \brief Feature for creation of a new constraint parallelism of two lines
18  *
19  *  These constraint has two attributes:
20  *  CONSTRAINT_ATTR_ENTITY_A and CONSTRAINT_ATTR_ENTITY_B
21  */
22 class SketchPlugin_ConstraintParallel: public SketchPlugin_Constraint
23 {
24 public:
25   /// \brief Returns the kind of a feature
26   SKETCHPLUGIN_EXPORT virtual const std::string& getKind() 
27   {static std::string MY_KIND = SKETCH_CONSTRAINT_PARALLEL_KIND; return MY_KIND;}
28
29   /// \brief Returns to which group in the document must be added feature
30   SKETCHPLUGIN_EXPORT virtual const std::string& getGroup() 
31   {static std::string MY_GROUP = SKETCH_KIND; return MY_GROUP;}
32
33   /// \brief Creates a new part document if needed
34   SKETCHPLUGIN_EXPORT virtual void execute();
35
36   /// \brief Request for initialization of data model of the feature: adding all attributes
37   SKETCHPLUGIN_EXPORT virtual void initAttributes();
38
39   /// \brief Returns the sketch preview
40   SKETCHPLUGIN_EXPORT virtual const boost::shared_ptr<GeomAPI_Shape>& preview();
41
42   /// Returns the AIS preview
43   SKETCHPLUGIN_EXPORT virtual Handle_AIS_InteractiveObject getAISShape(Handle_AIS_InteractiveObject thePrevious);
44
45   /// Moves the feature
46   /// \param theDeltaX the delta for X coordinate is moved
47   /// \param theDeltaY the delta for Y coordinate is moved
48   SKETCHPLUGIN_EXPORT virtual void move(const double theDeltaX, const double theDeltaY);
49
50   /// \brief Use plugin manager for features creation
51   SketchPlugin_ConstraintParallel();
52 };
53
54 #endif