0023510: Integration of test grid "vis" into the new testing system
[occt.git] / src / AIS2D / AIS2D_LocalStatus.lxx
1 // Copyright (c) 1999-2012 OPEN CASCADE SAS
2 //
3 // The content of this file is subject to the Open CASCADE Technology Public
4 // License Version 6.5 (the "License"). You may not use the content of this file
5 // except in compliance with the License. Please obtain a copy of the License
6 // at http://www.opencascade.org and read it completely before using this file.
7 //
8 // The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
9 // main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
10 //
11 // The Original Code and all software distributed under the License is
12 // distributed on an "AS IS" basis, without warranty of any kind, and the
13 // Initial Developer hereby disclaims all such warranties, including without
14 // limitation, any warranties of merchantability, fitness for a particular
15 // purpose or non-infringement. Please see the License for the specific terms
16 // and conditions governing the rights and limitations under the License.
17
18 inline Handle(Standard_Transient) AIS2D_LocalStatus::PreviousState() const {
19      return myPrevState;     
20 }
21
22 inline Standard_Boolean AIS2D_LocalStatus::Decomposed() const {
23            return myDecomposition;
24 }
25
26 inline Standard_Boolean AIS2D_LocalStatus::IsTemporary() const {
27        return myIsTemporary;
28 }
29
30 inline Standard_Integer AIS2D_LocalStatus::DisplayMode() const {
31        return myDMode; 
32 }
33
34 inline AIS2D_PToListOfInt AIS2D_LocalStatus::SelectionModes() {
35         
36          return &mySModes;
37 }
38
39 inline AIS2D_TypeOfDetection AIS2D_LocalStatus::HighlightMode() const {
40     return myHMode;
41 }
42
43 inline Standard_Boolean AIS2D_LocalStatus::IsSubIntensityOn() const {
44         return mySubIntensity;
45 }
46
47 inline Standard_Boolean AIS2D_LocalStatus::IsFirstDisplay() const {
48         return myFirstDisplay;
49 }
50
51 inline Quantity_NameOfColor AIS2D_LocalStatus::HighlightColor() const {
52         return myHighlCol;
53 }
54
55 inline void AIS2D_LocalStatus::SubIntensityOn() {
56   mySubIntensity = Standard_True;
57 }
58
59 inline void AIS2D_LocalStatus::SetDecomposition(const Standard_Boolean aStatus) {
60     myDecomposition = aStatus;
61 }
62
63 inline void AIS2D_LocalStatus::SetTemporary(const Standard_Boolean aStatus) {
64     myIsTemporary = aStatus;
65 }
66
67 inline void AIS2D_LocalStatus::SetDisplayMode(const Standard_Integer aMode) {
68     myDMode = aMode;
69 }
70
71 inline void AIS2D_LocalStatus::SetFirstDisplay(const Standard_Boolean aStatus) {
72         myFirstDisplay = aStatus;
73 }
74
75 inline void AIS2D_LocalStatus::SetHighlightMode(const AIS2D_TypeOfDetection aMode) {
76     myHMode = aMode;
77 }
78
79 inline void AIS2D_LocalStatus::SetHighlightColor(const Quantity_NameOfColor aHiCol) {
80         myHighlCol = aHiCol;
81 }
82