X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_IntersectionPoint.h;h=4d2e73a7a1b08b63d5efad8c5a65fe80c62fbefc;hb=05e2e4a31fa248d71445c40e35eeafa44f5d3b1b;hp=b93e262a3294c1a504261708a7425260a54ddb70;hpb=7074394f8f08413d885f63be01df6bd5007b868c;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_IntersectionPoint.h b/src/SketchPlugin/SketchPlugin_IntersectionPoint.h index b93e262a3..4d2e73a7a 100644 --- a/src/SketchPlugin/SketchPlugin_IntersectionPoint.h +++ b/src/SketchPlugin/SketchPlugin_IntersectionPoint.h @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// Copyright (C) 2014-2022 CEA/DEN, EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -12,23 +12,22 @@ // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.salome-platform.org/ or -// email : webmaster.salome@opencascade.com +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // #ifndef SketchPlugin_IntersectionPoint_H_ #define SketchPlugin_IntersectionPoint_H_ -#include "SketchPlugin_Point.h" +#include "SketchPlugin_SketchEntity.h" /**\class SketchPlugin_IntersectionPoint * \ingroup Plugins * \brief Feature for creation of external point as an intersection * between external edge and a plane of the sketch. */ -class SketchPlugin_IntersectionPoint : public SketchPlugin_Point +class SketchPlugin_IntersectionPoint : public SketchPlugin_SketchEntity { public: /// Point feature kind @@ -44,24 +43,36 @@ public: return MY_KIND; } - static const std::string& EXTERNAL_LINE_ID() + static const std::string& EXTERNAL_FEATURE_ID() { - static std::string MY_LINE_ID("ExternalLine"); - return MY_LINE_ID; + static std::string MY_FEATURE_ID("ExternalFeature"); + return MY_FEATURE_ID; + } + + static const std::string& INTERSECTION_POINTS_ID() + { + static std::string MY_INTERSECTIONS_ID("IntersectionPoints"); + return MY_INTERSECTIONS_ID; + } + + static const std::string& INCLUDE_INTO_RESULT() + { + static std::string MY_INCLUDE("IncludeToResult"); + return MY_INCLUDE; } /// Returns true because intersection point is always external virtual bool isFixed() { return true; } + /// Returns true if the feature and the feature results can be displayed. + /// \return false + virtual bool canBeDisplayed() const + { return false; } + /// Creates a new part document if needed SKETCHPLUGIN_EXPORT virtual void execute(); - /// 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); - /// Called on change of any argument-attribute of this object: for external point SKETCHPLUGIN_EXPORT virtual void attributeChanged(const std::string& theID); @@ -74,7 +85,9 @@ protected: private: /// \brief Find intersection between a line and a sketch plane - void computePoint(); + void computePoint(const std::string& theID); + + bool myIsComputing; }; #endif