Salome HOME
Copyrights update
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_AttributeTextColor_i.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   : SALOMEDS_AttributeTextColor_i.cxx
21 //  Author : Sergey RUIN
22 //  Module : SALOME
23
24
25 #include "SALOMEDS_AttributeTextColor_i.hxx"
26 #include "SALOMEDS.hxx" 
27 #include <TColStd_HArray1OfReal.hxx>
28
29 using namespace std;
30
31 SALOMEDS::Color SALOMEDS_AttributeTextColor_i::TextColor() 
32 {
33   SALOMEDS::Locker lock;
34   SALOMEDS::Color TextColor;
35   Handle(TColStd_HArray1OfReal) anArray = Handle(SALOMEDSImpl_AttributeTextColor)::DownCast(_impl)->TextColor();
36   if (anArray.IsNull() || anArray->Length()!=3) { 
37     TextColor.R = 0;
38     TextColor.G = 0;
39     TextColor.B = 0;
40   }
41   else {
42     TextColor.R = anArray->Value(1);
43     TextColor.G = anArray->Value(2);
44     TextColor.B = anArray->Value(3);
45   }
46   return TextColor;
47 }
48
49 void SALOMEDS_AttributeTextColor_i::SetTextColor(const SALOMEDS::Color& value) 
50 {
51   SALOMEDS::Locker lock;
52   CheckLocked();
53   Handle(TColStd_HArray1OfReal) anArray = new TColStd_HArray1OfReal(1,3);
54   anArray->SetValue(1,  value.R);
55   anArray->SetValue(2, value.G);
56   anArray->SetValue(3, value.B);
57   Handle(SALOMEDSImpl_AttributeTextColor)::DownCast(_impl)->ChangeArray(anArray);
58 }
59