]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/ColorCache.cpp
69520fc7384ab3de81d6d820e77fa78022752d3d
[lyx.git] / src / frontends / qt4 / ColorCache.cpp
1 /**
2  * \file ColorCache.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author John Levon
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "ColorCache.h"
14
15 #include "Color.h"
16
17 #include <string>
18
19
20 namespace lyx {
21
22 void ColorCache::init()
23 {
24         for (int col = 0; col <= Color_ignore; ++col)
25                 lcolors_[col] = QColor(lcolor.getX11Name(ColorCode(col)).c_str());
26         initialized_ = true;
27 }
28
29
30 /// get the given color
31 QColor ColorCache::get(ColorCode color) const
32 {
33         if (!initialized_)
34                 const_cast<ColorCache *>(this)->init();
35         if (color <= Color_ignore)
36                 return lcolors_[color];
37         // used by branches
38         return QColor(lcolor.getX11Name(color).c_str()); 
39 }
40
41
42 QColor const rgb2qcolor(RGBColor const & rgb)
43 {
44         return QColor(rgb.r, rgb.g, rgb.b);
45 }
46
47
48 } // namespace lyx