1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
3 // File: SketchPlugin_ConstraintBase.h
4 // Created: 08 May 2014
5 // Author: Artem ZHIDKOV
7 #ifndef SketchPlugin_ConstraintBase_H_
8 #define SketchPlugin_ConstraintBase_H_
10 #include "SketchPlugin.h"
11 #include <SketchPlugin_Constraint.h>
12 #include <SketchPlugin_Sketch.h>
13 #include <ModelAPI_AttributeReference.h>
14 #include <ModelAPI_AttributeRefAttr.h>
16 #include <GeomAPI_IPresentable.h>
17 #include <GeomAPI_ICustomPrs.h>
22 * Each constraint uses a set of parameters. In the SolveSpace library
23 * these parameters are named "valA", "ptA", "ptB", "entityA", "entityB".
24 * The "ptA" and "ptB" parameters represents a point in the constraint.
25 * The "entityA" and "entityB" represents any other object (and a point too).
26 * And the "valA" represents a real value.
28 * The attributes below are named independent of the SolveSpace.
29 * Some of them may be unused.
31 * Also the list of possible attributes is provided to simplify assignment.
34 #define SKETCH_DIMENSION_COLOR "64,128,225"
36 /** \class SketchPlugin_ConstraintBase
38 * \brief Feature for creation of a new constraint between other features.
39 * Some feature's methods implemented here as dummy to
40 * Base class for all constraints.
42 class SketchPlugin_ConstraintBase : public SketchPlugin_Constraint, public GeomAPI_IPresentable,
43 public GeomAPI_ICustomPrs
46 /// Returns the AIS preview
47 SKETCHPLUGIN_EXPORT virtual AISObjectPtr getAISObject(AISObjectPtr thePrevious);
49 /** \brief Adds sub-feature of the higher level feature (sub-element of the sketch)
50 * \param theFeature sub-feature
52 SKETCHPLUGIN_EXPORT virtual const void addSub(const FeaturePtr& theFeature);
54 /// \param theDeltaX the delta for X coordinate is moved
55 /// \param theDeltaY the delta for Y coordinate is moved
56 SKETCHPLUGIN_EXPORT virtual void move(const double theDeltaX, const double theDeltaY);
58 /// Customize presentation of the feature
59 virtual bool customisePresentation(ResultPtr theResult, AISObjectPtr thePrs,
60 std::shared_ptr<GeomAPI_ICustomPrs> theDefaultPrs)
62 return theDefaultPrs->customisePresentation(theResult, thePrs, theDefaultPrs);
66 /// \brief Use plugin manager for features creation
67 SketchPlugin_ConstraintBase()