Salome HOME
Issue #738 select point by mouse change predefined coordinates of connected object
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_ConstraintBase.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 // File:    SketchPlugin_ConstraintBase.h
4 // Created: 08 May 2014
5 // Author:  Artem ZHIDKOV
6
7 #ifndef SketchPlugin_ConstraintBase_H_
8 #define SketchPlugin_ConstraintBase_H_
9
10 #include "SketchPlugin.h"
11 #include <SketchPlugin_Constraint.h>
12 #include <SketchPlugin_Sketch.h>
13 #include <ModelAPI_AttributeReference.h>
14 #include <ModelAPI_AttributeRefAttr.h>
15
16 #include <GeomAPI_IPresentable.h>
17
18 #include <list>
19
20 /** Description: 
21  *    Each constraint uses a set of parameters. In the SolveSpace library 
22  *    these parameters are named "valA", "ptA", "ptB", "entityA", "entityB". 
23  *    The "ptA" and "ptB" parameters represents a point in the constraint.
24  *    The "entityA" and "entityB" represents any other object (and a point too).
25  *    And the "valA" represents a real value.
26  *
27  *    The attributes below are named independent of the SolveSpace.
28  *    Some of them may be unused. 
29  *
30  *    Also the list of possible attributes is provided to simplify assignment.
31  */
32
33 #define SKETCH_DIMENSION_COLOR "64,128,225"
34
35 /** \class SketchPlugin_ConstraintBase
36  *  \ingroup Plugins
37  *  \brief Feature for creation of a new constraint between other features.
38  *         Some feature's methods implemented here as dummy to
39  *         Base class for all constraints.
40  */
41 class SketchPlugin_ConstraintBase : public SketchPlugin_Constraint, public GeomAPI_IPresentable
42 {
43  public:
44   /// Returns the AIS preview
45   SKETCHPLUGIN_EXPORT virtual AISObjectPtr getAISObject(AISObjectPtr thePrevious);
46
47   /** \brief Adds sub-feature of the higher level feature (sub-element of the sketch)
48    *  \param theFeature sub-feature
49    */
50   SKETCHPLUGIN_EXPORT virtual const void addSub(const FeaturePtr& theFeature);
51   /// Moves the feature
52   /// \param theDeltaX the delta for X coordinate is moved
53   /// \param theDeltaY the delta for Y coordinate is moved
54   SKETCHPLUGIN_EXPORT virtual void move(const double theDeltaX, const double theDeltaY);
55
56  protected:
57   /// \brief Use plugin manager for features creation
58   SketchPlugin_ConstraintBase()
59   {
60   }
61 };
62
63 #endif