Salome HOME
Merge remote-tracking branch 'remotes/origin/occ/eliminateWarnings'
[modules/shaper.git] / src / XGUI / XGUI_ColorDialog.cpp
1 // Copyright (C) 2014-2020  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include <XGUI_ColorDialog.h>
21
22 #include <ModelAPI_Tools.h>
23
24 #include <QtxColorButton.h>
25
26 #include <QLabel>
27 #include <QButtonGroup>
28 #include <QGridLayout>
29 #include <QRadioButton>
30 #include <QDialogButtonBox>
31
32 XGUI_ColorDialog::XGUI_ColorDialog(QWidget* theParent)
33   : QDialog(theParent, Qt::Dialog | Qt::CustomizeWindowHint | Qt::WindowTitleHint)
34 {
35   setWindowTitle(tr("Color"));
36   QGridLayout* aLay = new QGridLayout(this);
37
38   QRadioButton* aRandomChoiceBtn = new QRadioButton(this);
39   QRadioButton* aColorChoiceBtn = new QRadioButton(this);
40   aColorChoiceBtn->setChecked(true);
41   myButtonGroup = new QButtonGroup(this);
42   myButtonGroup->setExclusive(true);
43   myButtonGroup->addButton(aColorChoiceBtn, 0);
44   myButtonGroup->addButton(aRandomChoiceBtn, 1);
45
46   aLay->addWidget(aColorChoiceBtn, 0, 0);
47   aLay->addWidget(aRandomChoiceBtn, 1, 0);
48
49   myColorButton = new QtxColorButton(this);
50   myColorButton->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
51   aLay->addWidget(myColorButton, 0, 1);
52
53   QLabel* aRandomLabel = new QLabel(tr("Random"), this);
54   aLay->addWidget(aRandomLabel, 1, 1);
55
56   QDialogButtonBox* aButtons = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel,
57                                                     Qt::Horizontal, this);
58   connect(aButtons, SIGNAL(accepted()), this, SLOT(accept()));
59   connect(aButtons, SIGNAL(rejected()), this, SLOT(reject()));
60   aLay->addWidget(aButtons, 2, 0, 1, 2);
61 }
62
63 bool XGUI_ColorDialog::isRandomColor() const
64 {
65   return myButtonGroup->checkedId() == 1;
66 }
67
68 void XGUI_ColorDialog::setColor(const std::vector<int>& theValue)
69 {
70   if (theValue.size() != 3)
71     return;
72
73   myColorButton->setColor(QColor(theValue[0], theValue[1], theValue[2]));
74 }
75
76 std::vector<int> XGUI_ColorDialog::getColor() const
77 {
78   QColor aColorResult = myColorButton->color();
79
80   std::vector<int> aValues;
81   aValues.push_back(aColorResult.red());
82   aValues.push_back(aColorResult.green());
83   aValues.push_back(aColorResult.blue());
84
85   return aValues;
86 }
87 // contains global cash for integer index of the color -> RGB of this color
88 static std::map<int, std::vector<int> > myColorMap;
89
90 void appendValues(std::vector<int>& theRGB, const int theRed, const int theGreen, const int theBlue)
91 {
92   theRGB.push_back(theRed);
93   theRGB.push_back(theGreen);
94   theRGB.push_back(theBlue);
95 }
96
97 bool containsValues(std::map<int, std::vector<int> >& theColorMap, std::vector<int>& theValues)
98 {
99   std::map<int, std::vector<int> >::const_iterator anIt = theColorMap.begin(),
100                                                    aLast = theColorMap.end();
101   bool isFound = false;
102   for (; anIt != aLast && !isFound; anIt++) {
103     std::vector<int> aValues = anIt->second;
104     isFound = aValues[0] == theValues[0] &&
105               aValues[1] == theValues[1] &&
106               aValues[2] == theValues[2];
107   }
108   return isFound;
109 }
110
111 std::vector<int> HSVtoRGB(int theH, int theS, int theV)
112 {
113   std::vector<int> aRGB;
114   if (theH < 0 || theH > 360 ||
115       theS < 0 || theS > 100 ||
116       theV < 0 || theV > 100)
117     return aRGB;
118
119   int aHi = (int)theH/60;
120
121   double aV = theV;
122   double aVmin = (100 - theS)*theV/100;
123
124   double anA = (theV - aVmin)* (theH % 60) / 60;
125
126   double aVinc = aVmin + anA;
127   double aVdec = theV - anA;
128
129   double aPercentToValue = 255./100;
130   int aV_int    = (int)(aV*aPercentToValue);
131   int aVinc_int = (int)(aVinc*aPercentToValue);
132   int aVmin_int = (int)(aVmin*aPercentToValue);
133   int aVdec_int = (int)(aVdec*aPercentToValue);
134
135   switch(aHi) {
136     case 0: appendValues(aRGB, aV_int,    aVinc_int, aVmin_int); break;
137     case 1: appendValues(aRGB, aVdec_int, aV_int,    aVmin_int); break;
138     case 2: appendValues(aRGB, aVmin_int, aV_int,    aVinc_int); break;
139     case 3: appendValues(aRGB, aVmin_int, aVdec_int, aV_int); break;
140     case 4: appendValues(aRGB, aVinc_int, aVmin_int, aV_int); break;
141     case 5: appendValues(aRGB, aV_int,    aVmin_int, aVdec_int); break;
142     default: break;
143   }
144   return aRGB;
145 }
146
147
148 void fillColorMap()
149 {
150   if (!myColorMap.empty())
151     return;
152
153   int i = 0;
154   for (int s = 100; s > 0; s = s - 50)
155   {
156     for (int v = 100; v >= 40; v = v - 20)
157     {
158       for (int h = 0; h < 359 ; h = h + 60)
159       {
160         std::vector<int> aColor = HSVtoRGB(h, s, v);
161         if (containsValues(myColorMap, aColor))
162           continue;
163         myColorMap[i] = aColor;
164         i++;
165       }
166     }
167   }
168 }
169
170 void findRandomColor(std::vector<int>& theValues)
171 {
172   theValues.clear();
173   if (myColorMap.empty()) {
174     fillColorMap();
175   }
176
177   size_t aSize = myColorMap.size();
178   int anIndex = rand() % aSize;
179   if (myColorMap.find(anIndex) != myColorMap.end()) {
180     theValues = myColorMap.at(anIndex);
181   }
182 }
183
184 std::vector<int> XGUI_ColorDialog::getRandomColor() const
185 {
186   std::vector<int> aValues;
187   if (isRandomColor()) {
188     findRandomColor(aValues);
189   }
190   return aValues;
191 }