Salome HOME
Merging from V3_2_6pre4
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_AttributeString.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/ or email : webmaster.salome@opencascade.com
19 //
20 //  File   : SALOMEDSImpl_AttributeString.cxx
21 //  Author : Sergey RUIN
22 //  Module : SALOME
23
24 #include "SALOMEDSImpl_AttributeString.hxx"
25
26 #ifndef WNT
27 using namespace std;
28 #endif
29
30 IMPLEMENT_STANDARD_HANDLE( SALOMEDSImpl_AttributeString, SALOMEDSImpl_GenericAttribute )
31 IMPLEMENT_STANDARD_RTTIEXT( SALOMEDSImpl_AttributeString, SALOMEDSImpl_GenericAttribute )
32
33 //=======================================================================
34 //function : GetID
35 //purpose  :
36 //=======================================================================
37 const Standard_GUID& SALOMEDSImpl_AttributeString::GetID ()
38 {
39   static Standard_GUID CommentID ("1808A12F-AD0E-4a6a-B58A-395DCF469FE9");
40   return CommentID;
41 }   
42
43 Handle(SALOMEDSImpl_AttributeString) SALOMEDSImpl_AttributeString::Set (const TDF_Label& L, 
44                                                                         const TCollection_ExtendedString& Val) 
45 {
46   Handle(SALOMEDSImpl_AttributeString) A;
47   if (!L.FindAttribute(SALOMEDSImpl_AttributeString::GetID(), A)) {
48     A = new  SALOMEDSImpl_AttributeString(); 
49     L.AddAttribute(A);
50   }
51
52   A->SetValue(Val);     
53     
54   return A;
55 }
56
57 //=======================================================================
58 //function : SetValue
59 //purpose  :
60 //=======================================================================
61 void SALOMEDSImpl_AttributeString::SetValue (const TCollection_ExtendedString& S)
62 {
63   CheckLocked();
64
65   if(myString == S) return;
66
67   Backup();
68
69   myString = S;
70   
71   SetModifyFlag(); //SRN: Mark the study as being modified, so it could be saved 
72 }
73            
74
75 //=======================================================================
76 //function : ID
77 //purpose  :
78 //=======================================================================
79 const Standard_GUID& SALOMEDSImpl_AttributeString::ID () const { return GetID(); } 
80
81 //=======================================================================
82 //function : NewEmpty
83 //purpose  : 
84 //=======================================================================
85 Handle(TDF_Attribute) SALOMEDSImpl_AttributeString::NewEmpty () const
86 {  
87   return new SALOMEDSImpl_AttributeString(); 
88 }
89
90 //=======================================================================
91 //function : Restore
92 //purpose  : 
93 //=======================================================================
94 void SALOMEDSImpl_AttributeString::Restore(const Handle(TDF_Attribute)& with) 
95 {
96   myString = Handle(SALOMEDSImpl_AttributeString)::DownCast (with)->Value ();
97 }
98
99 //=======================================================================
100 //function : Paste
101 //purpose  : 
102 //=======================================================================
103
104 void SALOMEDSImpl_AttributeString::Paste (const Handle(TDF_Attribute)& into,
105                                            const Handle(TDF_RelocationTable)& RT) const
106 {
107   Handle(SALOMEDSImpl_AttributeString)::DownCast (into)->SetValue(myString);
108 }