X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_Circle.h;h=e183384d83d15b3388c65c5e8c4b57dd2b42cc5b;hb=30c051954fe28016ee74f7aaf851dbdec4249d8c;hp=11311dcb0da8c230e74ce32ee5623e8797ea2841;hpb=d9db5498b576854aae37ddf8c0bb6fceb264712e;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_Circle.h b/src/SketchPlugin/SketchPlugin_Circle.h index 11311dcb0..e183384d8 100644 --- a/src/SketchPlugin/SketchPlugin_Circle.h +++ b/src/SketchPlugin/SketchPlugin_Circle.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> + // File: SketchPlugin_Circle.h // Created: 26 May 2014 // Author: Artem ZHIDKOV @@ -6,15 +8,15 @@ #define SketchPlugin_Circle_H_ #include "SketchPlugin.h" -#include +#include #include #include /**\class SketchPlugin_Circle - * \ingroup DataModel + * \ingroup Plugins * \brief Feature for creation of the new circle in PartSet. */ -class SketchPlugin_Circle : public SketchPlugin_Feature //, public GeomAPI_IPresentable +class SketchPlugin_Circle : public SketchPlugin_SketchEntity, public GeomAPI_IPresentable { public: /// Circle feature kind @@ -24,6 +26,26 @@ class SketchPlugin_Circle : public SketchPlugin_Feature //, public GeomAPI_IPre 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() { @@ -38,6 +60,27 @@ class SketchPlugin_Circle : public SketchPlugin_Feature //, public GeomAPI_IPre 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() { @@ -51,33 +94,36 @@ class SketchPlugin_Circle : public SketchPlugin_Feature //, public GeomAPI_IPre /// 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(); - - /// Returns the AIS preview - virtual AISObjectPtr getAISObject(AISObjectPtr thePrevious) - { - return simpleAISObject(firstResult(), thePrevious); - } - /// 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 boost::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