X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_ConstraintDistance.h;h=a1e315d2bc0246a0a75b8b7fec4d8aff02847b8f;hb=74e9ba33303efc2282db1261706e904efa36b255;hp=9bc3d5d06cfe07cabe52ddb9e8c220ba7f13ecf2;hpb=a24b7e6f4d112d5e7889fd76f030298fc428cd01;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_ConstraintDistance.h b/src/SketchPlugin/SketchPlugin_ConstraintDistance.h index 9bc3d5d06..a1e315d2b 100644 --- a/src/SketchPlugin/SketchPlugin_ConstraintDistance.h +++ b/src/SketchPlugin/SketchPlugin_ConstraintDistance.h @@ -12,6 +12,8 @@ #include "SketchPlugin_Sketch.h" #include "ModelAPI_Data.h" +#include + #include class SketchPlugin_Line; @@ -25,7 +27,7 @@ class GeomDataAPI_Point2D; * This constraint has three attributes: * SketchPlugin_Constraint::VALUE(), SketchPlugin_Constraint::ENTITY_A() and SketchPlugin_Constraint::ENTITY_B() */ -class SketchPlugin_ConstraintDistance : public SketchPlugin_ConstraintBase +class SketchPlugin_ConstraintDistance : public SketchPlugin_ConstraintBase, public GeomAPI_ICustomPrs { public: /// Distance constraint kind @@ -66,21 +68,17 @@ class SketchPlugin_ConstraintDistance : public SketchPlugin_ConstraintBase SKETCHPLUGIN_EXPORT virtual void attributeChanged(const std::string& theID); /// Returns the current distance between the feature attributes - double calculateCurrentDistance() const; + double calculateCurrentDistance(); + + /// Customize presentation of the feature + virtual bool customisePresentation(ResultPtr theResult, AISObjectPtr thePrs, + std::shared_ptr theDefaultPrs); /// \brief Use plugin manager for features creation SketchPlugin_ConstraintDistance(); -}; -/// Obtain the point object from specified constraint parameter -std::shared_ptr getFeaturePoint(DataPtr theData, - const std::string& theAttribute); - -std::shared_ptr getFeatureLine(DataPtr theData, - const std::string& theAttribute); - -std::shared_ptr getProjectionPoint( - const std::shared_ptr& theLine, - const std::shared_ptr& thePoint); +private: + bool myFlyoutUpdate; ///< to avoid cyclic dependencies on automatic updates of flyout point +}; #endif