X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketcherPrs%2FSketcherPrs_Radius.h;h=a6fbe75e9227e91fac4e1954c7c8eafe368661e4;hb=a2e697d6efc2f36155ad2236ec52915b59cce738;hp=ee3cbe929d656addba17d095c4b2710d1735c91e;hpb=066d35261d20a2d10910172a20882e9f0ef24fc3;p=modules%2Fshaper.git diff --git a/src/SketcherPrs/SketcherPrs_Radius.h b/src/SketcherPrs/SketcherPrs_Radius.h index ee3cbe929..a6fbe75e9 100644 --- a/src/SketcherPrs/SketcherPrs_Radius.h +++ b/src/SketcherPrs/SketcherPrs_Radius.h @@ -1,15 +1,28 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: SketcherPrs_Radius.h -// Created: 26 March 2015 -// Author: Vitaly SMETANNIKOV - +// Copyright (C) 2014-2019 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 +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// 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 +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #ifndef SketcherPrs_Radius_H #define SketcherPrs_Radius_H #include #include +#include #include #include @@ -28,20 +41,28 @@ public: /// Constructor /// \param theConstraint a constraint feature /// \param thePlane a coordinate plane of current sketch - Standard_EXPORT SketcherPrs_Radius(ModelAPI_Feature* theConstraint, - const std::shared_ptr& thePlane); + Standard_EXPORT SketcherPrs_Radius(ModelAPI_Feature* theConstraint, + SketchPlugin_Sketch* theSketcher); /// Destructor Standard_EXPORT ~SketcherPrs_Radius(); - DEFINE_STANDARD_RTTI(SketcherPrs_Radius) + DEFINE_STANDARD_RTTIEXT(SketcherPrs_Radius, AIS_RadiusDimension) - /// Returns true if the constraint feature arguments are correcly filled to build AIS presentation + /// Returns true if the constraint feature arguments are correcly filled + /// to build AIS presentation /// \param theConstraint a constraint feature /// \param thePlane a coordinate plane of current sketch /// \return boolean result value static bool IsReadyToDisplay(ModelAPI_Feature* theConstraint, const std::shared_ptr& thePlane); + + /// Returns sketcher plane + Standard_EXPORT std::shared_ptr plane() const + { + return mySketcher->coordinatePlane(); + } + private: /// Fills the constraint parameters by constraint and plane /// \param theConstraint a constraint feature @@ -54,7 +75,8 @@ private: gp_Circ& theCircle, gp_Pnt& theAnchorPoint); protected: /// Redefinition of virtual function - Standard_EXPORT virtual void Compute(const Handle(PrsMgr_PresentationManager3d)& thePresentationManager, + Standard_EXPORT virtual void Compute( + const Handle(PrsMgr_PresentationManager3d)& thePresentationManager, const Handle(Prs3d_Presentation)& thePresentation, const Standard_Integer theMode = 0); /// Redefinition of virtual function @@ -65,8 +87,8 @@ private: /// Constraint feature ModelAPI_Feature* myConstraint; - /// Plane of the current sketcher - std::shared_ptr mySketcherPlane; + /// A current sketcher + SketchPlugin_Sketch* mySketcher; /// Listener to update dimension visualization style SketcherPrs_DimensionStyleListener* myStyleListener;