0024002: Overall code and build procedure refactoring -- automatic
[occt.git] / src / AIS / AIS_DimensionOwner.cxx
1 // Created on: 1996-12-05
2 // Created by: Odile Olivier
3 // Copyright (c) 1996-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17
18 #include <AIS_Dimension.hxx>
19 #include <AIS_DimensionOwner.hxx>
20 #include <PrsMgr_PresentationManager.hxx>
21 #include <SelectMgr_SelectableObject.hxx>
22 #include <Standard_Type.hxx>
23 #include <StdSelect_Shape.hxx>
24 #include <TopoDS.hxx>
25 #include <TopoDS_Vertex.hxx>
26
27 namespace
28 {
29   //=======================================================================
30   //function : HighlightMode
31   //purpose  : Return corresponding compute mode for selection type.
32   //=======================================================================
33   static AIS_Dimension::ComputeMode HighlightMode (const Standard_Integer theSelMode)
34   {
35     switch (theSelMode)
36     {
37       case AIS_DSM_Line : return AIS_Dimension::ComputeMode_Line;
38       case AIS_DSM_Text : return AIS_Dimension::ComputeMode_Text;
39       default:
40         return AIS_Dimension::ComputeMode_All;
41     }
42   }
43 };
44
45 //=======================================================================
46 //function : Constructor
47 //purpose  : 
48 //=======================================================================
49 AIS_DimensionOwner::AIS_DimensionOwner (const Handle(SelectMgr_SelectableObject)& theSelObject,
50                                         const AIS_DimensionSelectionMode theMode,
51                                         const Standard_Integer thePriority)
52 : SelectMgr_EntityOwner(theSelObject, thePriority),
53   mySelectionMode (theMode)
54 {
55 }
56
57 //=======================================================================
58 //function : AIS_DimensionSelectionMode
59 //purpose  : 
60 //=======================================================================
61 AIS_DimensionSelectionMode AIS_DimensionOwner::SelectionMode () const
62 {
63   return mySelectionMode;
64 }
65
66 //=======================================================================
67 //function : IsHilighted
68 //purpose  : 
69 //=======================================================================
70 Standard_Boolean AIS_DimensionOwner::IsHilighted (const Handle(PrsMgr_PresentationManager)& thePM,
71                                                   const Standard_Integer /*theMode*/) const
72 {
73   if (!HasSelectable())
74   {
75     return Standard_False;
76   }
77
78   return thePM->IsHighlighted (Selectable(), HighlightMode (mySelectionMode));
79 }
80
81 //=======================================================================
82 //function : Hilight
83 //purpose  : 
84 //=======================================================================
85 void AIS_DimensionOwner::Hilight (const Handle(PrsMgr_PresentationManager)& thePM,
86                                   const Standard_Integer /*theMode*/)
87 {
88   if (!HasSelectable())
89   {
90     return;
91   }
92
93   thePM->Highlight (Selectable(), HighlightMode (mySelectionMode));
94 }
95
96 //=======================================================================
97 //function : Unhilight
98 //purpose  : 
99 //=======================================================================
100 void AIS_DimensionOwner::Unhilight (const Handle(PrsMgr_PresentationManager)& thePM,
101                                     const Standard_Integer /*theMode*/)
102 {
103   if (!HasSelectable())
104   {
105     return;
106   }
107
108   thePM->Unhighlight (Selectable(), HighlightMode (mySelectionMode));
109 }
110
111 //=======================================================================
112 //function : HilightWithColor
113 //purpose  : 
114 //=======================================================================
115 void AIS_DimensionOwner::HilightWithColor (const Handle(PrsMgr_PresentationManager3d)& thePM,
116                                            const Quantity_NameOfColor theColor,
117                                            const Standard_Integer /*theMode*/)
118 {
119   thePM->Color (Selectable(), theColor, HighlightMode (mySelectionMode));
120 }