Salome HOME
c94d1b416dc8c7601cd526f859a3d32526915c93
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_AttributeTextHighlightColor.cxx
1 // Copyright (C) 2007-2023  CEA, EDF, 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, or (at your option) any later version.
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
23 //  File   : SALOMEDS_AttributeTextHighlightColor.cxx
24 //  Author : Sergey RUIN
25 //  Module : SALOME
26 //
27 #include "SALOMEDS_AttributeTextHighlightColor.hxx"
28 #include "SALOMEDS.hxx"
29
30 #include <vector>
31
32 SALOMEDS_AttributeTextHighlightColor::SALOMEDS_AttributeTextHighlightColor
33                   (SALOMEDSImpl_AttributeTextHighlightColor* theAttr)
34 :SALOMEDS_GenericAttribute(theAttr)
35 {}
36
37 SALOMEDS_AttributeTextHighlightColor::SALOMEDS_AttributeTextHighlightColor
38                   (SALOMEDS::AttributeTextHighlightColor_ptr theAttr)
39 :SALOMEDS_GenericAttribute(theAttr)
40 {}
41
42 SALOMEDS_AttributeTextHighlightColor::~SALOMEDS_AttributeTextHighlightColor()
43 {}
44
45
46 STextColor SALOMEDS_AttributeTextHighlightColor::TextHighlightColor()
47 {
48   STextColor aColor;
49   if (_isLocal) {
50     SALOMEDS::Locker lock;
51     std::vector<double> aSeq = dynamic_cast<SALOMEDSImpl_AttributeTextHighlightColor*>(_local_impl)->TextHighlightColor();
52     aColor.R = aSeq[0];
53     aColor.G = aSeq[1];
54     aColor.B = aSeq[2]; 
55   }
56   else {
57     SALOMEDS::Color anImplColor =
58       SALOMEDS::AttributeTextHighlightColor::_narrow(_corba_impl)->TextHighlightColor();
59     aColor.R = anImplColor.R;
60     aColor.G = anImplColor.G;
61     aColor.B = anImplColor.B;
62   }
63   return aColor;
64 }
65
66 void SALOMEDS_AttributeTextHighlightColor::SetTextHighlightColor(STextColor value)
67 {
68   if (_isLocal) {
69     CheckLocked();
70     SALOMEDS::Locker lock;
71     std::vector<double> aSeq;
72     aSeq.push_back(value.R);
73     aSeq.push_back(value.G);
74     aSeq.push_back(value.B);
75     dynamic_cast<SALOMEDSImpl_AttributeTextHighlightColor*>(_local_impl)->ChangeArray(aSeq);
76   }
77   else {
78     SALOMEDS::Color aColor;
79     aColor.R = value.R;
80     aColor.G = value.G;
81     aColor.B = value.B;
82     SALOMEDS::AttributeTextHighlightColor::_narrow(_corba_impl)->SetTextHighlightColor(aColor);
83   }
84 }