X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_ConstraintRadius.h;h=a8ef9bb6bd48d1fde32294b4b85808a4452c723e;hb=e6aea428c7da7751e753eac36b99e16b7e3166e4;hp=26a0ecbdc0dfebb7842851bdfde34c8022563c48;hpb=c9770e53785962f70c0b1c10dcc03a23980048c9;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_ConstraintRadius.h b/src/SketchPlugin/SketchPlugin_ConstraintRadius.h index 26a0ecbdc..a8ef9bb6b 100644 --- a/src/SketchPlugin/SketchPlugin_ConstraintRadius.h +++ b/src/SketchPlugin/SketchPlugin_ConstraintRadius.h @@ -6,8 +6,11 @@ #define SketchPlugin_ConstraintRadius_HeaderFile #include "SketchPlugin.h" +#include #include "SketchPlugin_Constraint.h" +/// Radius constraint kind +const std::string SKETCH_CONSTRAINT_RADIUS_KIND("SketchConstraintRadius"); /** \class SketchPlugin_ConstraintRadius * \ingroup DataModel @@ -22,11 +25,11 @@ class SketchPlugin_ConstraintRadius: public SketchPlugin_Constraint public: /// \brief Returns the kind of a feature SKETCHPLUGIN_EXPORT virtual const std::string& getKind() - {static std::string MY_KIND = "SketchConstraintRadius"; return MY_KIND;} + {static std::string MY_KIND = SKETCH_CONSTRAINT_RADIUS_KIND; return MY_KIND;} /// \brief Returns to which group in the document must be added feature SKETCHPLUGIN_EXPORT virtual const std::string& getGroup() - {static std::string MY_GROUP = "Sketch"; return MY_GROUP;} + {static std::string MY_GROUP = SKETCH_KIND; return MY_GROUP;} /// \brief Creates a new part document if needed SKETCHPLUGIN_EXPORT virtual void execute(); @@ -34,8 +37,13 @@ public: /// \brief Request for initialization of data model of the feature: adding all attributes SKETCHPLUGIN_EXPORT virtual void initAttributes(); - /// \brief Returns the sketch preview - SKETCHPLUGIN_EXPORT virtual const boost::shared_ptr& preview(); + /// Returns the AIS preview + SKETCHPLUGIN_EXPORT virtual Handle_AIS_InteractiveObject getAISShape(Handle_AIS_InteractiveObject thePrevious); + + /// Moves the feature + /// \param theDeltaX the delta for X coordinate is moved + /// \param theDeltaY the delta for Y coordinate is moved + SKETCHPLUGIN_EXPORT virtual void move(const double theDeltaX, const double theDeltaY); /// \brief Use plugin manager for features creation SketchPlugin_ConstraintRadius();