Salome HOME
Revert "Synchronize adm files"
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_AttributeTextColor.cxx
1 // Copyright (C) 2007-2014  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_AttributeTextColor.cxx
24 //  Author : Sergey RUIN
25 //  Module : SALOME
26 //
27 #include "SALOMEDSImpl_AttributeTextColor.hxx"
28
29 //=======================================================================
30 //function : GetID
31 //purpose  : 
32 //=======================================================================
33
34 const std::string& SALOMEDSImpl_AttributeTextColor::GetID () 
35 {
36   static std::string SALOMEDSImpl_AttributeTextColorID ("12837189-8F52-11d6-A8A3-0001021E8C7F");
37   return SALOMEDSImpl_AttributeTextColorID;
38 }
39
40
41 //=======================================================================
42 //function : constructor
43 //purpose  : 
44 //=======================================================================
45 SALOMEDSImpl_AttributeTextColor::SALOMEDSImpl_AttributeTextColor()
46 :SALOMEDSImpl_GenericAttribute("AttributeTextColor")
47 {
48    myValue.clear();    
49    myValue.push_back(0.);
50    myValue.push_back(0.);
51    myValue.push_back(0.);
52 }
53
54 //=======================================================================
55 //function : SetTextColor
56 //purpose  :
57 //=======================================================================   
58 void SALOMEDSImpl_AttributeTextColor::SetTextColor(const double& R, const double& G, const double& B)
59 {
60    CheckLocked();
61
62    Backup(); 
63
64    myValue[0] = R;
65    myValue[1] = G;
66    myValue[2] = B;
67    
68    SetModifyFlag(); //SRN: Mark the study as being modified, so it could be saved 
69 }
70
71 //=======================================================================
72 //function : TextColor
73 //purpose  :
74 //=======================================================================
75 std::vector<double> SALOMEDSImpl_AttributeTextColor::TextColor()
76 {
77   return myValue; 
78 }
79
80 //=======================================================================
81 //function : ChangeArray
82 //purpose  : 
83 //=======================================================================
84 void SALOMEDSImpl_AttributeTextColor::ChangeArray(const std::vector<double>& newArray)
85 {
86   Backup();
87
88   for(int i = 0; i < 3; i++)
89     myValue[i] = newArray[i];
90     
91   SetModifyFlag(); //SRN: Mark the study as being modified, so it could be saved     
92 }    
93
94 //=======================================================================
95 //function : ID
96 //purpose  : 
97 //=======================================================================
98
99 const std::string& SALOMEDSImpl_AttributeTextColor::ID () const { return GetID(); }
100
101
102 //=======================================================================
103 //function : NewEmpty
104 //purpose  : 
105 //=======================================================================
106
107 DF_Attribute* SALOMEDSImpl_AttributeTextColor::NewEmpty () const
108 {  
109   return new SALOMEDSImpl_AttributeTextColor(); 
110 }
111
112 //=======================================================================
113 //function : Restore
114 //purpose  : 
115 //=======================================================================
116
117 void SALOMEDSImpl_AttributeTextColor::Restore(DF_Attribute* with) 
118 {
119   ChangeArray( dynamic_cast<SALOMEDSImpl_AttributeTextColor*>(with)->TextColor ());
120   return;
121 }
122
123 //=======================================================================
124 //function : Paste
125 //purpose  : 
126 //=======================================================================
127
128 void SALOMEDSImpl_AttributeTextColor::Paste (DF_Attribute* into)
129 {
130   dynamic_cast<SALOMEDSImpl_AttributeTextColor*>(into)->ChangeArray (myValue);
131 }
132
133
134
135 std::string SALOMEDSImpl_AttributeTextColor::Save() 
136 {
137   char *Val = new char[75];
138   sprintf(Val, "%f %f %f", (float)myValue[0], 
139                            (float)myValue[1], 
140                            (float)myValue[2]);
141   std::string ret(Val);
142   delete Val;
143   return ret;
144 }
145
146 void SALOMEDSImpl_AttributeTextColor::Load(const std::string& value) 
147 {
148   float r, g, b;
149   sscanf(value.c_str(), "%f %f %f", &r, &g, &b);
150   myValue[0] = r;
151   myValue[1] = g;
152   myValue[2] = b;
153 }