0027818: Visualization - provide an interface to define highlight presentation properties
[occt.git] / src / AIS / AIS_InteractiveContext.lxx
1 // Copyright (c) 1998-1999 Matra Datavision
2 // Copyright (c) 1999-2014 OPEN CASCADE SAS
3 //
4 // This file is part of Open CASCADE Technology software library.
5 //
6 // This library is free software; you can redistribute it and/or modify it under
7 // the terms of the GNU Lesser General Public License version 2.1 as published
8 // by the Free Software Foundation, with special exception defined in the file
9 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
10 // distribution for complete text of the license and disclaimer of any warranty.
11 //
12 // Alternatively, this file may be used under the terms of Open CASCADE
13 // commercial license or contractual agreement.
14
15 inline const Handle(V3d_Viewer)& AIS_InteractiveContext::CurrentViewer() const 
16 {
17   return myMainVwr;
18 }
19
20 inline Quantity_NameOfColor AIS_InteractiveContext::PreSelectionColor() const 
21 {
22   return  myPreselectionColor;
23 }
24
25 inline Quantity_NameOfColor AIS_InteractiveContext::DefaultColor() const 
26 {  return myDefaultColor;
27 }
28
29 inline void AIS_InteractiveContext::SetPreselectionColor(const Quantity_NameOfColor aCol)
30 {
31   myPreselectionColor = aCol;
32 }
33
34 inline Standard_Integer AIS_InteractiveContext::DisplayMode() const 
35 {
36   return myDisplayMode;
37 }
38
39 inline const Handle(Prs3d_Drawer)& AIS_InteractiveContext::DefaultDrawer() const 
40 {return myDefaultDrawer;}
41 inline const Handle(SelectMgr_SelectionManager)& AIS_InteractiveContext::SelectionManager() const 
42 {return mgrSelector ;}
43
44 inline const Handle(PrsMgr_PresentationManager3d)& AIS_InteractiveContext::MainPrsMgr() const 
45 {return myMainPM  ;}
46
47 inline Standard_Boolean AIS_InteractiveContext::HasOpenedContext() const 
48 {return myCurLocalIndex != 0;}
49
50 inline Handle(AIS_LocalContext) AIS_InteractiveContext::LocalContext() const
51 { return (myCurLocalIndex > 0) ? myLocalContexts(myCurLocalIndex) : NULL; }
52
53 inline  Standard_Boolean AIS_InteractiveContext::WasCurrentTouched() const 
54 {return myCurrentTouched;}
55
56 inline void  AIS_InteractiveContext::SetOkCurrent()
57 {myCurrentTouched= Standard_False;}
58
59
60 inline const Handle(StdSelect_ViewerSelector3d)& AIS_InteractiveContext::MainSelector() const 
61 {return myMainSel;}
62
63 inline void AIS_InteractiveContext::SetToHilightSelected(const Standard_Boolean toHilight)
64 {
65   myToHilightSelected = toHilight;
66 }
67
68 inline Standard_Boolean AIS_InteractiveContext::ToHilightSelected() const
69 {
70   return myToHilightSelected;
71 }
72
73
74
75
76
77
78
79
80
81
82
83
84
85