Salome HOME
Merge modifications for SALOMEDS Unittests
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_AttributePixMap.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_AttributePixMap.cxx
21 //  Author : Sergey RUIN
22 //  Module : SALOME
23
24 #include "SALOMEDSImpl_AttributePixMap.hxx"
25 #include <TCollection_ExtendedString.hxx>
26 #include <Standard_GUID.hxx>
27
28 using namespace std;
29
30 IMPLEMENT_STANDARD_HANDLE( SALOMEDSImpl_AttributePixMap, SALOMEDSImpl_GenericAttribute )
31 IMPLEMENT_STANDARD_RTTIEXT( SALOMEDSImpl_AttributePixMap, SALOMEDSImpl_GenericAttribute )
32
33 //=======================================================================
34 //function : GetID
35 //purpose  : 
36 //=======================================================================
37
38 const Standard_GUID& SALOMEDSImpl_AttributePixMap::GetID () 
39 {
40   static Standard_GUID SALOMEDSImpl_AttributePixMapID ("12837187-8F52-11d6-A8A3-0001021E8C7F");
41   return SALOMEDSImpl_AttributePixMapID;
42 }
43
44
45
46 //=======================================================================
47 //function : Set
48 //purpose  : 
49 //=======================================================================
50
51 Handle(SALOMEDSImpl_AttributePixMap) SALOMEDSImpl_AttributePixMap::Set (const TDF_Label& L,
52                                                                         const TCollection_ExtendedString& S) 
53 {
54   Handle(SALOMEDSImpl_AttributePixMap) A;
55   if (!L.FindAttribute(SALOMEDSImpl_AttributePixMap::GetID(),A)) {
56     A = new  SALOMEDSImpl_AttributePixMap(); 
57     L.AddAttribute(A);
58   }
59   
60   A->SetPixMap (S); 
61   return A;
62 }
63
64
65 //=======================================================================
66 //function : constructor
67 //purpose  : 
68 //=======================================================================
69 SALOMEDSImpl_AttributePixMap::SALOMEDSImpl_AttributePixMap()
70 :SALOMEDSImpl_GenericAttribute("AttributePixMap")
71 {
72   myString = "None";
73 }
74
75 //=======================================================================
76 //function : SetPixMap
77 //purpose  :
78 //=======================================================================
79 void SALOMEDSImpl_AttributePixMap::SetPixMap (const TCollection_ExtendedString& S)
80 {
81   CheckLocked();
82
83   if(myString == S) return;
84
85   Backup();
86
87   myString = S;
88
89   SetModifyFlag(); //SRN: Mark the study as being modified, so it could be saved 
90 }
91
92 //=======================================================================
93 //function : ID
94 //purpose  : 
95 //=======================================================================
96
97 const Standard_GUID& SALOMEDSImpl_AttributePixMap::ID () const { return GetID(); }
98
99
100 //=======================================================================
101 //function : NewEmpty
102 //purpose  : 
103 //=======================================================================
104
105 Handle(TDF_Attribute) SALOMEDSImpl_AttributePixMap::NewEmpty () const
106 {  
107   return new SALOMEDSImpl_AttributePixMap(); 
108 }
109
110 //=======================================================================
111 //function : Restore
112 //purpose  : 
113 //=======================================================================
114
115 void SALOMEDSImpl_AttributePixMap::Restore(const Handle(TDF_Attribute)& with) 
116 {
117   myString = Handle(SALOMEDSImpl_AttributePixMap)::DownCast (with)->GetPixMap ();
118 }
119
120 //=======================================================================
121 //function : Paste
122 //purpose  : 
123 //=======================================================================
124
125 void SALOMEDSImpl_AttributePixMap::Paste (const Handle(TDF_Attribute)& into,
126                            const Handle(TDF_RelocationTable)& RT) const
127 {
128   Handle(SALOMEDSImpl_AttributePixMap)::DownCast (into)->SetPixMap (myString);
129 }
130