1 // Copyright (C) 2017 CEA/DEN, EDF R&D
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
21 // File: PartSet_CenterPrs.h
22 // Created: 25 April 2017
23 // Author: Vitaly SMETANNIKOV
25 #ifndef PartSet_CenterPrs_H
26 #define PartSet_CenterPrs_H
28 #include <ModelAPI_Object.h>
29 #include <ModelAPI_AttributeSelection.h>
30 #include <GeomAPI_Edge.h>
32 #include <AIS_Point.hxx>
33 #include <Standard_DefineHandle.hxx>
35 #include <Geom_Point.hxx>
37 DEFINE_STANDARD_HANDLE(PartSet_CenterPrs, AIS_Point)
41 * A presentation class for displaying of centers of external curcular objects in a sketch
43 class PartSet_CenterPrs: public AIS_Point
47 /// \param theObject an object with circular edge
48 /// \param theEdge a circular edge
49 /// \param theCenter a center point of the circular edge
50 /// \param theType a type of the center
51 Standard_EXPORT PartSet_CenterPrs(const ObjectPtr& theObject,
52 const GeomEdgePtr& theEdge,
53 const gp_Pnt& theCenter,
54 ModelAPI_AttributeSelection::CenterType theType);
56 /// Returns an Object which contains the circular edge
57 ObjectPtr object() const { return myObject; }
59 /// Returns a circular edge shape
60 GeomEdgePtr edge() const { return myEdge; }
62 /// Returns type of the center
63 ModelAPI_AttributeSelection::CenterType centerType() const { return myCenterType; }
65 virtual void HilightSelected(const Handle(PrsMgr_PresentationManager3d)& PM,
66 const SelectMgr_SequenceOfOwner& Seq);
67 virtual void HilightOwnerWithColor (const Handle(PrsMgr_PresentationManager3d)&,
68 const Handle(Graphic3d_HighlightStyle)&,
69 const Handle(SelectMgr_EntityOwner)&);
71 DEFINE_STANDARD_RTTIEXT(PartSet_CenterPrs, AIS_Point)
74 void drawPoint(const Handle(Prs3d_Presentation)& thePrs, Quantity_Color theColor);
78 ModelAPI_AttributeSelection::CenterType myCenterType;