]> SALOME platform Git repositories - modules/kernel.git/blob - src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx
Salome HOME
Copyrights update
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_AttributeDrawable.cxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/
19 //
20 //  File   : SALOMEDSImpl_AttributeDrawable.cxx
21 //  Author : Sergey RUIN
22 //  Module : SALOME
23
24 #ifndef WNT
25 using namespace std;
26 #endif
27 #include "SALOMEDSImpl_AttributeDrawable.hxx"
28
29 IMPLEMENT_STANDARD_HANDLE( SALOMEDSImpl_AttributeDrawable, SALOMEDSImpl_GenericAttribute )
30 IMPLEMENT_STANDARD_RTTIEXT( SALOMEDSImpl_AttributeDrawable, SALOMEDSImpl_GenericAttribute )
31
32 //=======================================================================
33 //function : GetID
34 //purpose  : 
35 //=======================================================================
36 const Standard_GUID& SALOMEDSImpl_AttributeDrawable::GetID () 
37 {
38   static Standard_GUID SALOMEDSImpl_AttributeDrawableID ("12837184-8F52-11d6-A8A3-0001021E8C7F");
39   return SALOMEDSImpl_AttributeDrawableID;
40 }
41
42
43 //=======================================================================
44 //function : Set
45 //purpose  : 
46 //=======================================================================
47
48 Handle(SALOMEDSImpl_AttributeDrawable) SALOMEDSImpl_AttributeDrawable::Set (const TDF_Label& L,
49                                                                             const Standard_Integer value) 
50 {
51   Handle(SALOMEDSImpl_AttributeDrawable) A;
52   if (!L.FindAttribute(SALOMEDSImpl_AttributeDrawable::GetID(),A)) {
53     A = new  SALOMEDSImpl_AttributeDrawable(); 
54     L.AddAttribute(A);
55   }
56   
57   A->SetDrawable (value); 
58   return A;
59 }
60
61
62 //=======================================================================
63 //function : constructor
64 //purpose  : 
65 //=======================================================================
66 SALOMEDSImpl_AttributeDrawable::SALOMEDSImpl_AttributeDrawable()
67 :SALOMEDSImpl_GenericAttribute("AttributeDrawable") 
68 {
69   myValue = 0;
70 }
71
72 //=======================================================================
73 //function : SetDrawable
74 //purpose  :
75 //=======================================================================
76 void SALOMEDSImpl_AttributeDrawable::SetDrawable(const Standard_Integer theValue)
77 {
78   CheckLocked();
79
80   Backup();
81
82   (theValue!=0)?myValue=1:myValue=0;
83 }
84            
85
86 //=======================================================================
87 //function : ID
88 //purpose  : 
89 //=======================================================================
90
91 const Standard_GUID& SALOMEDSImpl_AttributeDrawable::ID () const { return GetID(); }
92
93
94 //=======================================================================
95 //function : NewEmpty
96 //purpose  : 
97 //=======================================================================
98
99 Handle(TDF_Attribute) SALOMEDSImpl_AttributeDrawable::NewEmpty () const
100 {  
101   return new SALOMEDSImpl_AttributeDrawable(); 
102 }
103
104 //=======================================================================
105 //function : Restore
106 //purpose  : 
107 //=======================================================================
108
109 void SALOMEDSImpl_AttributeDrawable::Restore(const Handle(TDF_Attribute)& with) 
110 {
111   myValue = Handle(SALOMEDSImpl_AttributeDrawable)::DownCast (with)->IsDrawable ();
112 }
113
114 //=======================================================================
115 //function : Paste
116 //purpose  : 
117 //=======================================================================
118
119 void SALOMEDSImpl_AttributeDrawable::Paste (const Handle(TDF_Attribute)& into,
120                                     const Handle(TDF_RelocationTable)& RT) const
121 {
122   Handle(SALOMEDSImpl_AttributeDrawable)::DownCast (into)->SetDrawable (myValue);
123 }
124