SHAPER 9.16.0
PartSet_CenterPrs.h
1// Copyright (C) 2017-2026 CEA, EDF
2//
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.
7//
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.
12//
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
16//
17// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18//
19
20// File: PartSet_CenterPrs.h
21// Created: 25 April 2017
22// Author: Vitaly SMETANNIKOV
23
24#ifndef PartSet_CenterPrs_H
25#define PartSet_CenterPrs_H
26
27#include <ModelAPI_Object.h>
28#include <ModelAPI_AttributeSelection.h>
29#include <GeomAPI_Edge.h>
30
31#include <AIS_Point.hxx>
32#include <Standard_DefineHandle.hxx>
33#include <gp_Pnt.hxx>
34#include <Geom_Point.hxx>
35
36DEFINE_STANDARD_HANDLE(PartSet_CenterPrs, AIS_Point)
37
38
43{
44public:
50 Standard_EXPORT PartSet_CenterPrs(const ObjectPtr& theObject,
51 const GeomEdgePtr& theEdge,
52 const gp_Pnt& theCenter,
54
56 ObjectPtr object() const { return myObject; }
57
59 GeomEdgePtr edge() const { return myEdge; }
60
62 ModelAPI_AttributeSelection::CenterType centerType() const { return myCenterType; }
63
64 virtual void HilightSelected(const Handle(PrsMgr_PresentationManager3d)& PM,
65 const SelectMgr_SequenceOfOwner& Seq);
66 virtual void HilightOwnerWithColor (const Handle(PrsMgr_PresentationManager3d)&,
67 const Handle(Prs3d_Drawer)&,
68 const Handle(SelectMgr_EntityOwner)&);
69
70 DEFINE_STANDARD_RTTIEXT(PartSet_CenterPrs, AIS_Point)
71
72private:
73 void drawPoint(const Handle(Prs3d_Presentation)& thePrs, Quantity_Color theColor);
74
75 ObjectPtr myObject;
76 GeomEdgePtr myEdge;
78};
79
80#endif
CenterType
Type of the center of the circular of elliptic edge.
Definition: ModelAPI_AttributeSelection.h:38
A presentation class for displaying of centers of external curcular objects in a sketch.
Definition: PartSet_CenterPrs.h:43
PartSet_CenterPrs(const ObjectPtr &theObject, const GeomEdgePtr &theEdge, const gp_Pnt &theCenter, ModelAPI_AttributeSelection::CenterType theType)
Constructor.
ModelAPI_AttributeSelection::CenterType centerType() const
Returns type of the center.
Definition: PartSet_CenterPrs.h:62
ObjectPtr object() const
Returns an Object which contains the circular edge.
Definition: PartSet_CenterPrs.h:56
GeomEdgePtr edge() const
Returns a circular edge shape.
Definition: PartSet_CenterPrs.h:59