X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_ConstraintBase.h;h=508980aa819e92230763f57ee5ebe347db08ae12;hb=fe3678a85238df2b57ea18b341003ebef176e287;hp=8636d3948ceae139a9db792ec92836340fbf2b76;hpb=a0bf1eb5af40ce92ee7e682959bf5738a3fc092b;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_ConstraintBase.h b/src/SketchPlugin/SketchPlugin_ConstraintBase.h index 8636d3948..508980aa8 100644 --- a/src/SketchPlugin/SketchPlugin_ConstraintBase.h +++ b/src/SketchPlugin/SketchPlugin_ConstraintBase.h @@ -14,6 +14,7 @@ #include #include +#include #include @@ -30,13 +31,16 @@ * Also the list of possible attributes is provided to simplify assignment. */ +#define SKETCH_DIMENSION_COLOR "64,128,225" + /** \class SketchPlugin_ConstraintBase * \ingroup Plugins * \brief Feature for creation of a new constraint between other features. * Some feature's methods implemented here as dummy to * Base class for all constraints. */ -class SketchPlugin_ConstraintBase : public SketchPlugin_Constraint, public GeomAPI_IPresentable +class SketchPlugin_ConstraintBase : public SketchPlugin_Constraint, public GeomAPI_IPresentable, + public GeomAPI_ICustomPrs { public: /// Returns the AIS preview @@ -51,9 +55,12 @@ class SketchPlugin_ConstraintBase : public SketchPlugin_Constraint, public GeomA /// \param theDeltaY the delta for Y coordinate is moved SKETCHPLUGIN_EXPORT virtual void move(const double theDeltaX, const double theDeltaY); - /// Return the distance between the feature and the point - /// \param thePoint the point - virtual double distanceToPoint(const std::shared_ptr& thePoint); + /// Customize presentation of the feature + virtual bool customisePresentation(ResultPtr theResult, AISObjectPtr thePrs, + std::shared_ptr theDefaultPrs) + { + return theDefaultPrs->customisePresentation(theResult, thePrs, theDefaultPrs); + } protected: /// \brief Use plugin manager for features creation