Salome HOME
Join modifications from branch BR_PR_V320b1
[modules/yacs.git] / src / SALOMEDS / SALOMEDS_AttributeTextHighlightColor_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_AttributeTextHighlightColor_i.cxx
21 //  Author : Sergey RUIN
22 //  Module : SALOME
23
24
25 #include "SALOMEDS_AttributeTextHighlightColor_i.hxx"
26 #include "SALOMEDS.hxx"
27 #include <TColStd_HArray1OfReal.hxx>
28
29 using namespace std;
30
31 SALOMEDS::Color SALOMEDS_AttributeTextHighlightColor_i::TextHighlightColor() 
32 {
33   SALOMEDS::Locker lock;
34   SALOMEDS::Color TextHighlightColor;
35   Handle(TColStd_HArray1OfReal) anArray=Handle(SALOMEDSImpl_AttributeTextHighlightColor)::DownCast(_impl)->TextHighlightColor();
36   if (anArray.IsNull() || anArray->Length()!=3) { 
37     TextHighlightColor.R = 0;
38     TextHighlightColor.G = 0;
39     TextHighlightColor.B = 0;
40   }
41   else {
42     TextHighlightColor.R = anArray->Value(1);
43     TextHighlightColor.G = anArray->Value(2);
44     TextHighlightColor.B = anArray->Value(3);
45   }
46   return TextHighlightColor;
47 }
48
49 void SALOMEDS_AttributeTextHighlightColor_i::SetTextHighlightColor(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_AttributeTextHighlightColor)::DownCast(_impl)->ChangeArray(anArray);
58 }