Salome HOME
7d2ea235232f92f21d64ead474fd4a04541ac3b4
[modules/yacs.git] / src / SALOMEDS / SALOMEDS_AttributeTextHighlightColor.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.cxx
21 //  Author : Sergey RUIN
22 //  Module : SALOME
23
24 #include "SALOMEDS_AttributeTextHighlightColor.hxx"
25
26 #include <TColStd_HArray1OfReal.hxx>
27
28 SALOMEDS_AttributeTextHighlightColor::SALOMEDS_AttributeTextHighlightColor(const Handle(SALOMEDSImpl_AttributeTextHighlightColor)& theAttr)
29 :SALOMEDS_GenericAttribute(theAttr)
30 {}
31
32 SALOMEDS_AttributeTextHighlightColor::SALOMEDS_AttributeTextHighlightColor(SALOMEDS::AttributeTextHighlightColor_ptr theAttr)
33 :SALOMEDS_GenericAttribute(theAttr)
34 {}
35
36 SALOMEDS_AttributeTextHighlightColor::~SALOMEDS_AttributeTextHighlightColor()
37 {}
38
39
40 STextColor SALOMEDS_AttributeTextHighlightColor::TextHighlightColor()
41 {
42   STextColor aColor;
43   if(_isLocal) {
44     Handle(TColStd_HArray1OfReal) aSeq;
45     aSeq = Handle(SALOMEDSImpl_AttributeTextHighlightColor)::DownCast(_local_impl)->TextHighlightColor();
46     aColor.R = aSeq->Value(1);
47     aColor.G = aSeq->Value(2);
48     aColor.B = aSeq->Value(3);  
49   }
50   else {
51     SALOMEDS::Color anImplColor = SALOMEDS::AttributeTextHighlightColor::_narrow(_corba_impl)->TextHighlightColor();
52     aColor.R = anImplColor.R;
53     aColor.G = anImplColor.G;
54     aColor.B = anImplColor.B;
55   }
56   return aColor;
57 }
58  
59 void SALOMEDS_AttributeTextHighlightColor::SetTextHighlightColor(STextColor value)
60 {
61   if(_isLocal) {
62     Handle(TColStd_HArray1OfReal) aSeq = new TColStd_HArray1OfReal(1, 3);
63     aSeq->SetValue(1, value.R);
64     aSeq->SetValue(2, value.G);
65     aSeq->SetValue(3, value.B);
66     Handle(SALOMEDSImpl_AttributeTextHighlightColor)::DownCast(_local_impl)->ChangeArray(aSeq);
67   }
68   else {
69     SALOMEDS::Color aColor;
70     aColor.R = value.R;
71     aColor.G = value.G;
72     aColor.B = value.B;
73     SALOMEDS::AttributeTextHighlightColor::_narrow(_corba_impl)->SetTextHighlightColor(aColor);
74   }
75 }