Salome HOME
9875c71b5367625e3572a15b996618cbbf01366a
[modules/shaper.git] / src / PartSet / PartSet_CenterPrs.h
1 // Copyright (C) 2017-2021  CEA/DEN, EDF R&D
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
36 DEFINE_STANDARD_HANDLE(PartSet_CenterPrs, AIS_Point)
37
38 /**
39 * \ingroup GUI
40 * A presentation class for displaying of centers of external curcular objects in a sketch
41 */
42 class PartSet_CenterPrs: public AIS_Point
43 {
44 public:
45   /// Constructor
46   /// \param theObject an object with circular edge
47   /// \param theEdge a circular edge
48   /// \param theCenter a center point of the circular edge
49   /// \param theType a type of the center
50   Standard_EXPORT PartSet_CenterPrs(const ObjectPtr& theObject,
51                                     const GeomEdgePtr& theEdge,
52                                     const gp_Pnt& theCenter,
53                                     ModelAPI_AttributeSelection::CenterType theType);
54
55   /// Returns an Object which contains the circular edge
56   ObjectPtr object() const { return myObject; }
57
58   /// Returns a circular edge shape
59   GeomEdgePtr edge() const { return myEdge; }
60
61   /// Returns type of the center
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
72 private:
73   void drawPoint(const Handle(Prs3d_Presentation)& thePrs, Quantity_Color theColor);
74
75   ObjectPtr myObject;
76   GeomEdgePtr myEdge;
77   ModelAPI_AttributeSelection::CenterType myCenterType;
78 };
79
80 #endif