0027764: Visualization - add functionality for animation of 3D camera and interactive...
[occt.git] / src / AIS / AIS_InteractiveObject.lxx
1 // Created on: 1997-01-08
2 // Created by: Robert COUBLANC
3 // Copyright (c) 1997-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 inline Standard_Boolean  AIS_InteractiveObject::AcceptShapeDecomposition() const 
18 {return Standard_False;}
19
20
21 inline Standard_Boolean AIS_InteractiveObject::IsInfinite() const 
22 {return myInfiniteState;}
23
24 inline Standard_Boolean AIS_InteractiveObject::HasColor() const 
25 {return hasOwnColor;}
26
27 inline const Handle(Standard_Transient)& 
28 AIS_InteractiveObject::GetOwner() const 
29 {return myOwner;}
30
31 inline void AIS_InteractiveObject::SetOwner(const Handle(Standard_Transient)& ApplicativeEntity)
32 {myOwner = ApplicativeEntity;}
33
34 inline const TColStd_ListOfTransient&  
35 AIS_InteractiveObject::Users() const 
36 {return myUsers;}
37
38 inline Standard_Boolean AIS_InteractiveObject::HasDisplayMode() const 
39 {return myDisplayMode!=-1;}
40
41 inline void AIS_InteractiveObject::UnsetDisplayMode()
42 {myDisplayMode =-1;}
43
44 inline Standard_Integer AIS_InteractiveObject::DisplayMode() const 
45 {return myDisplayMode;}
46
47 inline Quantity_NameOfColor AIS_InteractiveObject::Color() const 
48 {
49   return myOwnColor.Name();
50 }
51
52 inline void AIS_InteractiveObject::Color(Quantity_Color& aColor) const 
53 {
54   aColor = myOwnColor;
55 }
56
57 inline Standard_Boolean AIS_InteractiveObject::HasWidth() const 
58 {return !(myOwnWidth == 0.);}
59
60 inline Standard_Real AIS_InteractiveObject::Width() const 
61 {return myOwnWidth;}
62 inline Standard_Boolean AIS_InteractiveObject::HasMaterial() const 
63 {return hasOwnMaterial;}
64
65 //POP pour K4L
66 inline Graphic3d_NameOfMaterial AIS_InteractiveObject::Material() const 
67 //inline Graphic3d_NameOfPhysicalMaterial AIS_InteractiveObject::Material() const 
68 {return myOwnMaterial;}
69
70 inline Standard_Boolean AIS_InteractiveObject::HasHilightMode() const  
71 {return myHilightMode!=-1;}
72
73 inline Standard_Integer AIS_InteractiveObject::HilightMode() const
74 {return myHilightMode;}
75
76 inline void AIS_InteractiveObject::SetHilightMode(const Standard_Integer aMode)
77 {myHilightMode = aMode;}
78
79 inline void AIS_InteractiveObject::UnsetHilightMode()
80 {myHilightMode = -1;}
81
82
83 inline Standard_Boolean AIS_InteractiveObject::IsTransparent() const 
84 {return myTransparency >0.005;}
85
86 inline Standard_Boolean AIS_InteractiveObject::HasSelectionPriority() const 
87 {return mySelPriority != -1;}
88 inline void AIS_InteractiveObject::SetSelectionPriority(const Standard_Integer P)
89 {mySelPriority = P;}
90 inline void AIS_InteractiveObject::UnsetSelectionPriority()
91 {mySelPriority = -1;}
92 inline Standard_Integer AIS_InteractiveObject::SelectionPriority() const 
93 {return mySelPriority;}
94
95 inline Standard_Integer AIS_InteractiveObject::State() const
96 {return mystate;}
97
98 inline void AIS_InteractiveObject::State(const Standard_Integer TheState)
99 {mystate = TheState;}
100