X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FSketchPlugin%2FSketchPlugin_Circle.h;h=e183384d83d15b3388c65c5e8c4b57dd2b42cc5b;hb=64981a525f8bc2c450475822e96dcc2766454ad3;hp=e4f705e76300fe56dee16c4ab913127247f1b77a;hpb=a24b7e6f4d112d5e7889fd76f030298fc428cd01;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_Circle.h b/src/SketchPlugin/SketchPlugin_Circle.h index e4f705e76..e183384d8 100644 --- a/src/SketchPlugin/SketchPlugin_Circle.h +++ b/src/SketchPlugin/SketchPlugin_Circle.h @@ -16,7 +16,7 @@ * \ingroup Plugins * \brief Feature for creation of the new circle in PartSet. */ -class SketchPlugin_Circle : public SketchPlugin_SketchEntity +class SketchPlugin_Circle : public SketchPlugin_SketchEntity, public GeomAPI_IPresentable { public: /// Circle feature kind @@ -26,6 +26,26 @@ class SketchPlugin_Circle : public SketchPlugin_SketchEntity return MY_CIRCLE_ID; } + inline static const std::string& CIRCLE_TYPE() + { + static const std::string TYPE("CircleType"); + return TYPE; + } + + /// Creation method by center and radius. + inline static const std::string& CIRCLE_TYPE_CENTER_AND_RADIUS() + { + static const std::string TYPE("CenterRadius"); + return TYPE; + } + + /// Creation method by three points. + inline static const std::string& CIRCLE_TYPE_THREE_POINTS() + { + static const std::string TYPE("ThreePoints"); + return TYPE; + } + /// 2D point - center of the circle inline static const std::string& CENTER_ID() { @@ -40,6 +60,27 @@ class SketchPlugin_Circle : public SketchPlugin_SketchEntity return MY_CIRCLE_RADIUS_ID; } + /// First point id. + inline static const std::string& FIRST_POINT_ID() + { + static const std::string FIRST_PNT("FirstPoint"); + return FIRST_PNT; + } + + /// Second point id. + inline static const std::string& SECOND_POINT_ID() + { + static const std::string SECOND_PNT("SecondPoint"); + return SECOND_PNT; + } + + /// Third point id. + inline static const std::string& THIRD_POINT_ID() + { + static const std::string THIRD_PNT("ThirdPoint"); + return THIRD_PNT; + } + /// Returns the kind of a feature SKETCHPLUGIN_EXPORT virtual const std::string& getKind() { @@ -53,30 +94,36 @@ class SketchPlugin_Circle : public SketchPlugin_SketchEntity /// Creates a new part document if needed SKETCHPLUGIN_EXPORT virtual void execute(); - /// Request for initialization of data model of the feature: adding all attributes - SKETCHPLUGIN_EXPORT virtual void initAttributes(); - /// Adds sub-feature of the higher level feature (sub-element of the sketch) /// \param theFeature sub-feature SKETCHPLUGIN_EXPORT virtual const void addSub(const FeaturePtr& theFeature) { } - ; /// 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); - /// Return the distance between the feature and the point - /// \param thePoint the point - virtual double distanceToPoint(const std::shared_ptr& thePoint); - /// Called on change of any argument-attribute of this object SKETCHPLUGIN_EXPORT virtual void attributeChanged(const std::string& theID); + /// Returns the AIS preview + virtual AISObjectPtr getAISObject(AISObjectPtr thePrevious); + /// Use plugin manager for features creation SketchPlugin_Circle(); + +protected: + /// \brief Initializes attributes of derived class. + virtual void initDerivedClassAttributes(); + +private: + /// Returns true if all obligatory attributes are initialized + bool isFeatureValid(); + + /// Update coordinates of representation by three points + void adjustThreePoints(); }; #endif