Salome HOME
Implemented method Modified() for SALOMEDS_Study that marks the Study as being modified.
[modules/kernel.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/ or email : webmaster.salome@opencascade.com
19 //
20 //  File   : SALOMEDS_AttributeTextHighlightColor.cxx
21 //  Author : Sergey RUIN
22 //  Module : SALOME
23
24 #include "SALOMEDS_AttributeTextHighlightColor.hxx"
25 #include "SALOMEDS.hxx"
26
27 #include <TColStd_HArray1OfReal.hxx>
28
29 SALOMEDS_AttributeTextHighlightColor::SALOMEDS_AttributeTextHighlightColor
30                   (const Handle(SALOMEDSImpl_AttributeTextHighlightColor)& theAttr)
31 :SALOMEDS_GenericAttribute(theAttr)
32 {}
33
34 SALOMEDS_AttributeTextHighlightColor::SALOMEDS_AttributeTextHighlightColor
35                   (SALOMEDS::AttributeTextHighlightColor_ptr theAttr)
36 :SALOMEDS_GenericAttribute(theAttr)
37 {}
38
39 SALOMEDS_AttributeTextHighlightColor::~SALOMEDS_AttributeTextHighlightColor()
40 {}
41
42
43 STextColor SALOMEDS_AttributeTextHighlightColor::TextHighlightColor()
44 {
45   STextColor aColor;
46   if (_isLocal) {
47     SALOMEDS::Locker lock;
48     Handle(TColStd_HArray1OfReal) aSeq;
49     aSeq = Handle(SALOMEDSImpl_AttributeTextHighlightColor)::DownCast(_local_impl)->TextHighlightColor();
50     aColor.R = aSeq->Value(1);
51     aColor.G = aSeq->Value(2);
52     aColor.B = aSeq->Value(3);  
53   }
54   else {
55     SALOMEDS::Color anImplColor =
56       SALOMEDS::AttributeTextHighlightColor::_narrow(_corba_impl)->TextHighlightColor();
57     aColor.R = anImplColor.R;
58     aColor.G = anImplColor.G;
59     aColor.B = anImplColor.B;
60   }
61   return aColor;
62 }
63
64 void SALOMEDS_AttributeTextHighlightColor::SetTextHighlightColor(STextColor value)
65 {
66   if (_isLocal) {
67     CheckLocked();
68     SALOMEDS::Locker lock;
69     Handle(TColStd_HArray1OfReal) aSeq = new TColStd_HArray1OfReal(1, 3);
70     aSeq->SetValue(1, value.R);
71     aSeq->SetValue(2, value.G);
72     aSeq->SetValue(3, value.B);
73     Handle(SALOMEDSImpl_AttributeTextHighlightColor)::DownCast(_local_impl)->ChangeArray(aSeq);
74   }
75   else {
76     SALOMEDS::Color aColor;
77     aColor.R = value.R;
78     aColor.G = value.G;
79     aColor.B = value.B;
80     SALOMEDS::AttributeTextHighlightColor::_narrow(_corba_impl)->SetTextHighlightColor(aColor);
81   }
82 }