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