0027818: Visualization - provide an interface to define highlight presentation properties
[occt.git] / src / AIS / AIS_InteractiveContext.lxx
CommitLineData
b311480e 1// Copyright (c) 1998-1999 Matra Datavision
973c2be1 2// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 3//
973c2be1 4// This file is part of Open CASCADE Technology software library.
b311480e 5//
d5f74e42 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
973c2be1 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.
b311480e 11//
973c2be1 12// Alternatively, this file may be used under the terms of Open CASCADE
13// commercial license or contractual agreement.
b311480e 14
7fd59977 15inline const Handle(V3d_Viewer)& AIS_InteractiveContext::CurrentViewer() const
16{
17 return myMainVwr;
18}
19
7fd59977 20inline Quantity_NameOfColor AIS_InteractiveContext::PreSelectionColor() const
21{
22 return myPreselectionColor;
23}
24
25inline Quantity_NameOfColor AIS_InteractiveContext::DefaultColor() const
26{ return myDefaultColor;
27}
7fd59977 28
7fd59977 29inline void AIS_InteractiveContext::SetPreselectionColor(const Quantity_NameOfColor aCol)
30{
31 myPreselectionColor = aCol;
32}
33
7fd59977 34inline Standard_Integer AIS_InteractiveContext::DisplayMode() const
35{
36 return myDisplayMode;
37}
38
39inline const Handle(Prs3d_Drawer)& AIS_InteractiveContext::DefaultDrawer() const
40{return myDefaultDrawer;}
41inline const Handle(SelectMgr_SelectionManager)& AIS_InteractiveContext::SelectionManager() const
42{return mgrSelector ;}
43
44inline const Handle(PrsMgr_PresentationManager3d)& AIS_InteractiveContext::MainPrsMgr() const
45{return myMainPM ;}
46
7fd59977 47inline Standard_Boolean AIS_InteractiveContext::HasOpenedContext() const
48{return myCurLocalIndex != 0;}
49
857ffd5e 50inline Handle(AIS_LocalContext) AIS_InteractiveContext::LocalContext() const
1bd2fa67
A
51{ return (myCurLocalIndex > 0) ? myLocalContexts(myCurLocalIndex) : NULL; }
52
7fd59977 53inline Standard_Boolean AIS_InteractiveContext::WasCurrentTouched() const
54{return myCurrentTouched;}
55
56inline void AIS_InteractiveContext::SetOkCurrent()
57{myCurrentTouched= Standard_False;}
58
59
60inline const Handle(StdSelect_ViewerSelector3d)& AIS_InteractiveContext::MainSelector() const
61{return myMainSel;}
62
7fd59977 63inline void AIS_InteractiveContext::SetToHilightSelected(const Standard_Boolean toHilight)
64{
65 myToHilightSelected = toHilight;
66}
67
68inline 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