X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_ConstraintDistance.h;h=ef9e3eb1a506e6eaaa98a944130b628fcb7f9c7d;hb=3f1a42a51c7de1911c75453ff7134593d7d2c6b1;hp=99281efdb4ed724a4e7d065174e552ff5f2a8c66;hpb=2d5cbfca3d96c8251370fc563d2d675650aabd28;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_ConstraintDistance.h b/src/SketchPlugin/SketchPlugin_ConstraintDistance.h index 99281efdb..ef9e3eb1a 100644 --- a/src/SketchPlugin/SketchPlugin_ConstraintDistance.h +++ b/src/SketchPlugin/SketchPlugin_ConstraintDistance.h @@ -12,13 +12,13 @@ #include "SketchPlugin_Sketch.h" #include "ModelAPI_Data.h" +#include + #include class SketchPlugin_Line; class GeomDataAPI_Point2D; -#define DISTANCE_COLOR "#ff00ff" - /** \class SketchPlugin_ConstraintDistance * \ingroup Plugins * \brief Feature for creation of a new constraint which defines a distance @@ -47,14 +47,13 @@ class SketchPlugin_ConstraintDistance : public SketchPlugin_ConstraintBase /// \brief Creates a new part document if needed SKETCHPLUGIN_EXPORT virtual void execute(); - /// Computes the attribute value on the base of other attributes if the value can be computed - /// \param theAttributeId an attribute index to be computed - /// \return a boolean value about it is computed - SKETCHPLUGIN_EXPORT virtual bool compute(const std::string& theAttributeId); - /// \brief Request for initialization of data model of the feature: adding all attributes SKETCHPLUGIN_EXPORT virtual void initAttributes(); + /// Retuns the parameters of color definition in the resources config manager + SKETCHPLUGIN_EXPORT virtual void colorConfigInfo(std::string& theSection, std::string& theName, + std::string& theDefault); + /// Returns the AIS preview SKETCHPLUGIN_EXPORT virtual AISObjectPtr getAISObject(AISObjectPtr thePrevious); @@ -67,22 +66,15 @@ class SketchPlugin_ConstraintDistance : public SketchPlugin_ConstraintBase /// \param theID identifier of changed attribute SKETCHPLUGIN_EXPORT virtual void attributeChanged(const std::string& theID); - /// Returns the current distance between the feature attributes - double calculateCurrentDistance() const; - /// \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); +protected: + /// Returns the current distance between the feature attributes + double calculateCurrentDistance(); -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