Salome HOME
0937d50e3d6392aed72b1cde67450934ff23f76e
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_AttributeSelectable.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_AttributeSelectable.cxx
21 //  Author : Sergey RUIN
22 //  Module : SALOME
23
24 #include "SALOMEDSImpl_AttributeSelectable.hxx"
25 #include <Standard_GUID.hxx>
26
27 using namespace std;
28
29 IMPLEMENT_STANDARD_HANDLE( SALOMEDSImpl_AttributeSelectable, SALOMEDSImpl_GenericAttribute )
30 IMPLEMENT_STANDARD_RTTIEXT( SALOMEDSImpl_AttributeSelectable, SALOMEDSImpl_GenericAttribute )
31
32 //=======================================================================
33 //function : GetID
34 //purpose  : 
35 //=======================================================================
36
37 const Standard_GUID& SALOMEDSImpl_AttributeSelectable::GetID () 
38 {
39   static Standard_GUID SALOMEDSImpl_AttributeSelectableID ("12837188-8F52-11d6-A8A3-0001021E8C7F");
40   return SALOMEDSImpl_AttributeSelectableID;
41 }
42
43
44
45 //=======================================================================
46 //function : Set
47 //purpose  : 
48 //=======================================================================
49
50 Handle(SALOMEDSImpl_AttributeSelectable) SALOMEDSImpl_AttributeSelectable::Set (const TDF_Label& L,
51                                                                                 const Standard_Integer value) 
52 {
53   Handle(SALOMEDSImpl_AttributeSelectable) A;
54   if (!L.FindAttribute(SALOMEDSImpl_AttributeSelectable::GetID(),A)) {
55     A = new  SALOMEDSImpl_AttributeSelectable(); 
56     L.AddAttribute(A);
57   }
58   
59   A->SetSelectable (value); 
60   return A;
61 }
62
63
64 //=======================================================================
65 //function : constructor
66 //purpose  : 
67 //=======================================================================
68 SALOMEDSImpl_AttributeSelectable::SALOMEDSImpl_AttributeSelectable()
69 :SALOMEDSImpl_GenericAttribute("AttributeSelectable")
70 {
71   myValue = 0;
72 }
73
74 //=======================================================================
75 //function : SetSelectable
76 //purpose  :
77 //=======================================================================
78 void SALOMEDSImpl_AttributeSelectable::SetSelectable(const Standard_Integer theValue)
79 {
80   Backup();
81
82   (theValue!=0)?myValue=1:myValue=0;
83 }
84
85 //=======================================================================
86 //function : ID
87 //purpose  : 
88 //=======================================================================
89
90 const Standard_GUID& SALOMEDSImpl_AttributeSelectable::ID () const { return GetID(); }
91
92
93 //=======================================================================
94 //function : NewEmpty
95 //purpose  : 
96 //=======================================================================
97
98 Handle(TDF_Attribute) SALOMEDSImpl_AttributeSelectable::NewEmpty () const
99 {  
100   return new SALOMEDSImpl_AttributeSelectable(); 
101 }
102
103 //=======================================================================
104 //function : Restore
105 //purpose  : 
106 //=======================================================================
107
108 void SALOMEDSImpl_AttributeSelectable::Restore(const Handle(TDF_Attribute)& with) 
109 {
110   myValue = Handle(SALOMEDSImpl_AttributeSelectable)::DownCast (with)->IsSelectable ();
111 }
112
113 //=======================================================================
114 //function : Paste
115 //purpose  : 
116 //=======================================================================
117
118 void SALOMEDSImpl_AttributeSelectable::Paste (const Handle(TDF_Attribute)& into,
119                                               const Handle(TDF_RelocationTable)& RT) const
120 {
121   Handle(SALOMEDSImpl_AttributeSelectable)::DownCast (into)->SetSelectable (myValue);
122 }
123