X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketcherPrs%2FSketcherPrs_Radius.h;h=9fcec1fd897a29be4a377bb6d8ea2f90ae827df2;hb=d2034a988bc73596aab1bb256ddb02ce9ad2bd5a;hp=3ba60e08306b7a630bfec9745e6036d812b8f978;hpb=935fe05ec267f2b38c82ab5fd12d89bcdd78c2a4;p=modules%2Fshaper.git diff --git a/src/SketcherPrs/SketcherPrs_Radius.h b/src/SketcherPrs/SketcherPrs_Radius.h index 3ba60e083..9fcec1fd8 100644 --- a/src/SketcherPrs/SketcherPrs_Radius.h +++ b/src/SketcherPrs/SketcherPrs_Radius.h @@ -1,9 +1,22 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: SketcherPrs_Radius.h -// Created: 26 March 2015 -// Author: Vitaly SMETANNIKOV - +// Copyright (C) 2014-2017 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 @@ -14,7 +27,7 @@ #include #include -class SketcherPrs_DimensionStyleListener; +#include DEFINE_STANDARD_HANDLE(SketcherPrs_Radius, AIS_RadiusDimension) @@ -28,15 +41,16 @@ public: /// Constructor /// \param theConstraint a constraint feature /// \param thePlane a coordinate plane of current sketch - Standard_EXPORT SketcherPrs_Radius(ModelAPI_Feature* theConstraint, + Standard_EXPORT SketcherPrs_Radius(ModelAPI_Feature* theConstraint, const std::shared_ptr& thePlane); /// 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 @@ -48,15 +62,14 @@ private: /// \param thePlane a coordinate plane of current sketch /// \param theCircle a circle build on the constraint values /// \param thePoint an anchor point to show text value - /// \param theRadius a circle custom radius value to be visualized /// \return boolean result value static bool readyToDisplay(ModelAPI_Feature* theConstraint, const std::shared_ptr& thePlane, - gp_Circ& theCircle, gp_Pnt& theAnchorPoint, - double& theRadius); + 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 @@ -74,12 +87,10 @@ private: SketcherPrs_DimensionStyleListener* myStyleListener; /// container of values obtained from the constraint, which are necessary to fill the presentation - double myRadius; ///< the radius custom value gp_Circ myCircle; ///< the radius circle gp_Pnt myAnchorPoint; ///< an ancor for the radius value visualization - bool myHasParameters; ///< true if the atrribute value has used parameters - std::string myValue; ///< dimension value + SketcherPrs_DimensionStyleListener::DimensionValue myValue; /// the structure filled by constraint }; #endif \ No newline at end of file