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