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