]> git.lyx.org Git - lyx.git/blob - src/Color.cpp
6752ff8ad3b0da9a25c0add24abbac329458d55f
[lyx.git] / src / Color.cpp
1 /**
2  * \file Color.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Asger Alstrup
7  * \author Lars Gullik Bjønnes
8  * \author Matthias Ettrich
9  * \author Jean-Marc Lasgouttes
10  * \author John Levon
11  * \author André Pönitz
12  * \author Martin Vermeer
13  *
14  * Full author contact details are available in file CREDITS.
15  */
16
17 #include <config.h>
18
19 #include "Color.h"
20
21 #include "support/debug.h"
22 #include "support/gettext.h"
23 #include "support/lstrings.h"
24
25 #include <boost/assert.hpp>
26
27 #include <map>
28 #include <cmath>
29 #include <sstream>
30 #include <iomanip>
31
32
33 using namespace std;
34 using namespace lyx::support;
35
36 namespace lyx {
37
38
39 struct ColorSet::ColorEntry {
40         ColorCode lcolor;
41         char const * guiname;
42         char const * latexname;
43         char const * x11name;
44         char const * lyxname;
45 };
46
47
48 static int hexstrToInt(string const & str)
49 {
50         int val = 0;
51         istringstream is(str);
52         is >> setbase(16) >> val;
53         return val;
54 }
55
56
57 /////////////////////////////////////////////////////////////////////
58 //
59 // RGBColor
60 //
61 /////////////////////////////////////////////////////////////////////
62
63
64 string const X11hexname(RGBColor const & col)
65 {
66         ostringstream ostr;
67
68         ostr << '#' << setbase(16) << setfill('0')
69              << setw(2) << col.r
70              << setw(2) << col.g
71              << setw(2) << col.b;
72
73         return ostr.str();
74 }
75
76
77 RGBColor rgbFromHexName(string const & x11hexname)
78 {
79         RGBColor c;
80         BOOST_ASSERT(x11hexname.size() == 7 && x11hexname[0] == '#');
81         c.r = hexstrToInt(x11hexname.substr(1,2));
82         c.g = hexstrToInt(x11hexname.substr(3,2));
83         c.b = hexstrToInt(x11hexname.substr(5,2));
84         return c;
85 }
86
87
88 ColorSet::ColorSet()
89 {
90         //  ColorCode, gui, latex, x11, lyx
91         static ColorEntry const items[] = {
92         { Color_none, N_("none"), "none", "black", "none" },
93         { Color_black, N_("black"), "black", "black", "black" },
94         { Color_white, N_("white"), "white", "white", "white" },
95         { Color_red, N_("red"), "red", "red", "red" },
96         { Color_green, N_("green"), "green", "green", "green" },
97         { Color_blue, N_("blue"), "blue", "blue", "blue" },
98         { Color_cyan, N_("cyan"), "cyan", "cyan", "cyan" },
99         { Color_magenta, N_("magenta"), "magenta", "magenta", "magenta" },
100         { Color_yellow, N_("yellow"), "yellow", "yellow", "yellow" },
101         { Color_cursor, N_("cursor"), "cursor", "black", "cursor" },
102         { Color_background, N_("background"), "background", "linen", "background" },
103         { Color_foreground, N_("text"), "foreground", "black", "foreground" },
104         { Color_selection, N_("selection"), "selection", "LightBlue", "selection" },
105         { Color_latex, N_("LaTeX text"), "latex", "DarkRed", "latex" },
106         { Color_preview, N_("previewed snippet"), "preview", "black", "preview" },
107         { Color_note, N_("note"), "note", "blue", "note" },
108         { Color_notebg, N_("note background"), "notebg", "yellow", "notebg" },
109         { Color_comment, N_("comment"), "comment", "magenta", "comment" },
110         { Color_commentbg, N_("comment background"), "commentbg", "linen", "commentbg" },
111         { Color_greyedout, N_("greyedout inset"), "greyedout", "red", "greyedout" },
112         { Color_greyedoutbg, N_("greyedout inset background"), "greyedoutbg", "linen", "greyedoutbg" },
113         { Color_shadedbg, N_("shaded box"), "shaded", "#ff0000", "shaded" },
114         { Color_depthbar, N_("depth bar"), "depthbar", "IndianRed", "depthbar" },
115         { Color_language, N_("language"), "language", "Blue", "language" },
116         { Color_command, N_("command inset"), "command", "black", "command" },
117         { Color_commandbg, N_("command inset background"), "commandbg", "azure", "commandbg" },
118         { Color_commandframe, N_("command inset frame"), "commandframe", "black", "commandframe" },
119         { Color_special, N_("special character"), "special", "RoyalBlue", "special" },
120         { Color_math, N_("math"), "math", "DarkBlue", "math" },
121         { Color_mathbg, N_("math background"), "mathbg", "linen", "mathbg" },
122         { Color_graphicsbg, N_("graphics background"), "graphicsbg", "linen", "graphicsbg" },
123         { Color_mathmacrobg, N_("Math macro background"), "mathmacrobg", "linen", "mathmacrobg" },
124         { Color_mathframe, N_("math frame"), "mathframe", "Magenta", "mathframe" },
125         { Color_mathcorners, N_("math corners"), "mathcorners", "linen", "mathcorners" },
126         { Color_mathline, N_("math line"), "mathline", "Blue", "mathline" },
127         { Color_mathmacrobg, N_("Math macro background"), "mathmacrobg", "#ede2d8", "mathmacrobg" },
128         { Color_mathmacrohoverbg, N_("Math macro hovered background"), "mathmacrohoverbg", "#cdc3b8", "mathmacrohoverbg" },
129         { Color_mathmacrolabel, N_("Math macro label"), "mathmacrolabel", "#a19992", "mathmacrolabel" },
130         { Color_mathmacroframe, N_("Math macro frame"), "mathmacroframe", "#ede2d8", "mathmacroframe" },
131         { Color_mathmacroblend, N_("Math macro blended out"), "mathmacroblend", "#000000", "mathmacroblend" },
132         { Color_captionframe, N_("caption frame"), "captionframe", "DarkRed", "captionframe" },
133         { Color_collapsable, N_("collapsable inset text"), "collapsable", "DarkRed", "collapsable" },
134         { Color_collapsableframe, N_("collapsable inset frame"), "collapsableframe", "IndianRed", "collapsableframe" },
135         { Color_insetbg, N_("inset background"), "insetbg", "grey80", "insetbg" },
136         { Color_insetframe, N_("inset frame"), "insetframe", "IndianRed", "insetframe" },
137         { Color_error, N_("LaTeX error"), "error", "Red", "error" },
138         { Color_eolmarker, N_("end-of-line marker"), "eolmarker", "Brown", "eolmarker" },
139         { Color_appendix, N_("appendix marker"), "appendix", "Brown", "appendix" },
140         { Color_changebar, N_("change bar"), "changebar", "Blue", "changebar" },
141         { Color_deletedtext, N_("Deleted text"), "deletedtext", "#ff0000", "deletedtext" },
142         { Color_addedtext, N_("Added text"), "addedtext", "#0000ff", "addedtext" },
143         { Color_added_space, N_("added space markers"), "added_space", "Brown", "added_space" },
144         { Color_topline, N_("top/bottom line"), "topline", "Brown", "topline" },
145         { Color_tabularline, N_("table line"), "tabularline", "black", "tabularline" },
146         { Color_tabularonoffline, N_("table on/off line"), "tabularonoffline",
147              "LightSteelBlue", "tabularonoffline" },
148         { Color_bottomarea, N_("bottom area"), "bottomarea", "grey40", "bottomarea" },
149         { Color_newpage, N_("new page"), "newpage", "Blue", "newpage" },
150         { Color_pagebreak, N_("page break / line break"), "pagebreak", "RoyalBlue", "pagebreak" },
151         { Color_buttonframe, N_("frame of button"), "buttonframe", "#dcd2c8", "buttonframe" },
152         { Color_buttonbg, N_("button background"), "buttonbg", "#dcd2c8", "buttonbg" },
153         { Color_buttonhoverbg, N_("button background under focus"), "buttonhoverbg", "#C7C7CA", "buttonhoverbg" },
154         { Color_inherit, N_("inherit"), "inherit", "black", "inherit" },
155         { Color_ignore, N_("ignore"), "ignore", "black", "ignore" },
156         { Color_ignore, 0, 0, 0, 0 }
157         };
158
159         for (int i = 0; items[i].guiname; ++i)
160                 fill(items[i]);
161 }
162
163
164 /// initialise a color entry
165 void ColorSet::fill(ColorEntry const & entry)
166 {
167         Information in;
168         in.lyxname   = entry.lyxname;
169         in.latexname = entry.latexname;
170         in.x11name   = entry.x11name;
171         in.guiname   = entry.guiname;
172         infotab[entry.lcolor] = in;
173         lyxcolors[entry.lyxname] = entry.lcolor;
174         latexcolors[entry.latexname] = entry.lcolor;
175 }
176
177
178 docstring const ColorSet::getGUIName(ColorCode c) const
179 {
180         InfoTab::const_iterator it = infotab.find(c);
181         if (it != infotab.end())
182                 return _(it->second.guiname);
183         return from_ascii("none");
184 }
185
186
187 string const ColorSet::getX11Name(ColorCode c) const
188 {
189         InfoTab::const_iterator it = infotab.find(c);
190         if (it != infotab.end())
191                 return it->second.x11name;
192
193         lyxerr << "LyX internal error: Missing color"
194                   " entry in Color.cpp for " << c << '\n'
195                << "Using black." << endl;
196         return "black";
197 }
198
199
200 string const ColorSet::getLaTeXName(ColorCode c) const
201 {
202         InfoTab::const_iterator it = infotab.find(c);
203         if (it != infotab.end())
204                 return it->second.latexname;
205         return "black";
206 }
207
208
209 string const ColorSet::getLyXName(ColorCode c) const
210 {
211         InfoTab::const_iterator it = infotab.find(c);
212         if (it != infotab.end())
213                 return it->second.lyxname;
214         return "black";
215 }
216
217
218 bool ColorSet::setColor(ColorCode col, string const & x11name)
219 {
220         InfoTab::iterator it = infotab.find(col);
221         if (it == infotab.end()) {
222                 lyxerr << "Color " << col << " not found in database."
223                        << endl;
224                 return false;
225         }
226
227         // "inherit" is returned for colors not in the database
228         // (and anyway should not be redefined)
229         if (col == Color_none || col == Color_inherit || col == Color_ignore) {
230                 lyxerr << "Color " << getLyXName(col)
231                        << " may not be redefined" << endl;
232                 return false;
233         }
234
235         it->second.x11name = x11name;
236         return true;
237 }
238
239
240 bool ColorSet::setColor(string const & lyxname, string const &x11name)
241 {
242         string const lcname = ascii_lowercase(lyxname);
243         if (lyxcolors.find(lcname) == lyxcolors.end()) {
244                 LYXERR(Debug::GUI, "ColorSet::setColor: Unknown color \""
245                        << lyxname << '"');
246                 addColor(static_cast<ColorCode>(infotab.size()), lcname);
247         }
248
249         return setColor(lyxcolors[lcname], x11name);
250 }
251
252
253 void ColorSet::addColor(ColorCode c, string const & lyxname)
254 {
255         ColorEntry ce = { c, "", "", "", lyxname.c_str() };
256         fill(ce);
257 }
258
259
260 ColorCode ColorSet::getFromLyXName(string const & lyxname) const
261 {
262         string const lcname = ascii_lowercase(lyxname);
263         Transform::const_iterator it = lyxcolors.find(lcname);
264         if (it == lyxcolors.end()) {
265                 lyxerr << "ColorSet::getFromLyXName: Unknown color \""
266                        << lyxname << '"' << endl;
267                 return Color_none;
268         }
269
270         return it->second;
271 }
272
273
274 ColorCode ColorSet::getFromLaTeXName(string const & latexname) const
275 {
276         Transform::const_iterator it = latexcolors.find(latexname);
277         if (it == latexcolors.end()) {
278                 lyxerr << "ColorSet::getFromLaTeXName: Unknown color \""
279                        << latexname << '"' << endl;
280                 return Color_none;
281         }
282
283         return it->second;
284 }
285
286
287 // The evil global Color instance
288 ColorSet lcolor;
289 // An equally evil global system Color instance
290 ColorSet system_lcolor;
291
292
293 } // namespace lyx