2003-08-23 00:17:00 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file LColor.C
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-21 17:27:08 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* \author Asger Alstrup
|
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
|
|
|
|
* \author Matthias Ettrich
|
|
|
|
|
* \author Jean-Marc Lasgouttes
|
|
|
|
|
* \author John Levon
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
* \author Martin Vermeer
|
2002-03-21 17:27:08 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
2000-02-10 17:53:36 +00:00
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
|
|
#include "debug.h"
|
|
|
|
|
#include "gettext.h"
|
2003-09-09 22:13:45 +00:00
|
|
|
|
#include "LColor.h"
|
2000-02-10 17:53:36 +00:00
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
|
|
2003-05-09 09:43:39 +00:00
|
|
|
|
#include <map>
|
|
|
|
|
|
2003-09-09 22:13:45 +00:00
|
|
|
|
using lyx::support::compare_ascii_no_case;
|
2004-03-18 15:49:44 +00:00
|
|
|
|
using lyx::support::ascii_lowercase;
|
2003-06-30 23:56:22 +00:00
|
|
|
|
|
2000-06-26 15:33:13 +00:00
|
|
|
|
using std::endl;
|
2003-10-06 15:43:21 +00:00
|
|
|
|
using std::string;
|
2000-02-10 17:53:36 +00:00
|
|
|
|
|
|
|
|
|
|
2003-05-09 09:43:39 +00:00
|
|
|
|
namespace {
|
2000-02-10 17:53:36 +00:00
|
|
|
|
|
2000-05-25 03:37:32 +00:00
|
|
|
|
struct ColorEntry {
|
2003-08-17 11:28:23 +00:00
|
|
|
|
int lcolor;
|
2000-05-25 03:37:32 +00:00
|
|
|
|
char const * guiname;
|
|
|
|
|
char const * latexname;
|
|
|
|
|
char const * x11name;
|
|
|
|
|
char const * lyxname;
|
|
|
|
|
};
|
|
|
|
|
|
2003-05-09 09:43:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct LColor::Pimpl {
|
|
|
|
|
///
|
|
|
|
|
struct information {
|
|
|
|
|
/// the name as it appears in the GUI
|
|
|
|
|
string guiname;
|
|
|
|
|
/// the name used in LaTeX
|
|
|
|
|
string latexname;
|
|
|
|
|
/// the name for X11
|
|
|
|
|
string x11name;
|
|
|
|
|
/// the name for LyX
|
|
|
|
|
string lyxname;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/// initialise a color entry
|
|
|
|
|
void fill(ColorEntry const & entry)
|
|
|
|
|
{
|
2003-08-17 11:28:23 +00:00
|
|
|
|
information in;
|
|
|
|
|
in.lyxname = string(entry.lyxname);
|
|
|
|
|
in.latexname = string(entry.latexname);
|
|
|
|
|
in.x11name = string(entry.x11name);
|
|
|
|
|
in.guiname = string(entry.guiname);
|
|
|
|
|
infotab[entry.lcolor] = in;
|
|
|
|
|
transform[string(entry.lyxname)] = int(entry.lcolor);
|
2003-05-09 09:43:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
///
|
2003-08-17 11:28:23 +00:00
|
|
|
|
typedef std::map<int, information> InfoTab;
|
2003-05-09 09:43:39 +00:00
|
|
|
|
/// the table of color information
|
|
|
|
|
InfoTab infotab;
|
2003-08-17 11:28:23 +00:00
|
|
|
|
|
|
|
|
|
typedef std::map<string, int> Transform;
|
|
|
|
|
/// the transform between colour name string and integer code.
|
|
|
|
|
Transform transform;
|
|
|
|
|
|
2003-05-09 09:43:39 +00:00
|
|
|
|
};
|
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
|
|
|
|
|
|
LColor::LColor()
|
2003-05-09 09:43:39 +00:00
|
|
|
|
: pimpl_(new Pimpl)
|
2000-02-10 17:53:36 +00:00
|
|
|
|
{
|
|
|
|
|
// LColor::color, gui, latex, x11, lyx
|
2003-05-09 09:43:39 +00:00
|
|
|
|
static ColorEntry const items[] = {
|
2000-05-25 03:37:32 +00:00
|
|
|
|
{ none, N_("none"), "none", "black", "none" },
|
|
|
|
|
{ black, N_("black"), "black", "black", "black" },
|
|
|
|
|
{ white, N_("white"), "white", "white", "white" },
|
|
|
|
|
{ red, N_("red"), "red", "red", "red" },
|
|
|
|
|
{ green, N_("green"), "green", "green", "green" },
|
|
|
|
|
{ blue, N_("blue"), "blue", "blue", "blue" },
|
|
|
|
|
{ cyan, N_("cyan"), "cyan", "cyan", "cyan" },
|
|
|
|
|
{ magenta, N_("magenta"), "magenta", "magenta", "magenta" },
|
|
|
|
|
{ yellow, N_("yellow"), "yellow", "yellow", "yellow" },
|
2000-11-21 15:46:13 +00:00
|
|
|
|
{ cursor, N_("cursor"), "cursor", "black", "cursor" },
|
2000-05-25 03:37:32 +00:00
|
|
|
|
{ background, N_("background"), "background", "linen", "background" },
|
2000-11-21 21:51:25 +00:00
|
|
|
|
{ foreground, N_("text"), "foreground", "black", "foreground" },
|
2000-05-25 03:37:32 +00:00
|
|
|
|
{ selection, N_("selection"), "selection", "LightBlue", "selection" },
|
2003-01-06 14:02:24 +00:00
|
|
|
|
{ latex, N_("LaTeX text"), "latex", "DarkRed", "latex" },
|
2002-07-05 21:24:15 +00:00
|
|
|
|
{ preview, N_("previewed snippet"), "preview", "black", "preview" },
|
2001-07-20 09:57:23 +00:00
|
|
|
|
{ note, N_("note"), "note", "yellow", "note" },
|
2000-05-25 03:37:32 +00:00
|
|
|
|
{ notebg, N_("note background"), "notebg", "yellow", "notebg" },
|
2003-07-30 21:47:18 +00:00
|
|
|
|
{ comment, N_("comment"), "comment", "magenta", "comment" },
|
|
|
|
|
{ commentbg, N_("comment background"), "commentbg", "linen", "commentbg" },
|
|
|
|
|
{ greyedout, N_("greyedout inset"), "greyedout", "red", "greyedout" },
|
|
|
|
|
{ greyedoutbg, N_("greyedout inset background"), "greyedoutbg", "linen", "greyedoutbg" },
|
2000-05-25 03:37:32 +00:00
|
|
|
|
{ depthbar, N_("depth bar"), "depthbar", "IndianRed", "depthbar" },
|
2000-05-30 19:31:11 +00:00
|
|
|
|
{ language, N_("language"), "language", "Blue", "language" },
|
2001-05-23 13:12:58 +00:00
|
|
|
|
{ command, N_("command inset"), "command", "black", "command" },
|
2001-06-27 14:10:35 +00:00
|
|
|
|
{ commandbg, N_("command inset background"), "commandbg", "azure", "commandbg" },
|
2001-05-23 13:12:58 +00:00
|
|
|
|
{ commandframe, N_("command inset frame"), "commandframe", "black", "commandframe" },
|
|
|
|
|
{ special, N_("special character"), "special", "RoyalBlue", "special" },
|
2000-05-25 03:37:32 +00:00
|
|
|
|
{ math, N_("math"), "math", "DarkBlue", "math" },
|
2001-07-06 12:09:32 +00:00
|
|
|
|
{ mathbg, N_("math background"), "mathbg", "linen", "mathbg" },
|
2001-09-20 13:16:17 +00:00
|
|
|
|
{ graphicsbg, N_("graphics background"), "graphicsbg", "linen", "graphicsbg" },
|
2001-07-06 12:09:32 +00:00
|
|
|
|
{ mathmacrobg, N_("Math macro background"), "mathmacrobg", "linen", "mathmacrobg" },
|
2000-05-25 03:37:32 +00:00
|
|
|
|
{ mathframe, N_("math frame"), "mathframe", "Magenta", "mathframe" },
|
|
|
|
|
{ mathline, N_("math line"), "mathline", "Blue", "mathline" },
|
2001-06-05 17:05:51 +00:00
|
|
|
|
{ captionframe, N_("caption frame"), "captionframe", "DarkRed", "captionframe" },
|
|
|
|
|
{ collapsable, N_("collapsable inset text"), "collapsable", "DarkRed", "collapsable" },
|
|
|
|
|
{ collapsableframe, N_("collapsable inset frame"), "collapsableframe", "IndianRed", "collapsableframe" },
|
2001-06-27 14:10:35 +00:00
|
|
|
|
{ insetbg, N_("inset background"), "insetbg", "grey80", "insetbg" },
|
2000-05-25 03:37:32 +00:00
|
|
|
|
{ insetframe, N_("inset frame"), "insetframe", "IndianRed", "insetframe" },
|
2001-05-23 13:12:58 +00:00
|
|
|
|
{ error, N_("LaTeX error"), "error", "Red", "error" },
|
2000-05-25 03:37:32 +00:00
|
|
|
|
{ eolmarker, N_("end-of-line marker"), "eolmarker", "Brown", "eolmarker" },
|
2003-03-13 19:55:39 +00:00
|
|
|
|
{ appendix, N_("appendix marker"), "appendix", "Brown", "appendix" },
|
2003-02-08 19:18:01 +00:00
|
|
|
|
{ changebar, N_("change bar"), "changebar", "Blue", "changebar" },
|
|
|
|
|
{ strikeout, N_("Deleted text"), "strikeout", "Red", "strikeout" },
|
|
|
|
|
{ newtext, N_("Added text"), "newtext", "Blue", "newtext" },
|
2001-11-27 10:56:14 +00:00
|
|
|
|
{ added_space, N_("added space markers"), "added_space", "Brown", "added_space" },
|
2000-05-25 03:37:32 +00:00
|
|
|
|
{ topline, N_("top/bottom line"), "topline", "Brown", "topline" },
|
2003-04-30 02:04:00 +00:00
|
|
|
|
{ tabularline, N_("table line"), "tabularline", "black",
|
2000-05-25 03:37:32 +00:00
|
|
|
|
"tabularline" },
|
2003-04-30 02:04:00 +00:00
|
|
|
|
{ tabularonoffline, N_("table on/off line"), "tabularonoffline",
|
2000-05-25 03:37:32 +00:00
|
|
|
|
"LightSteelBlue", "tabularonoffline" },
|
|
|
|
|
{ bottomarea, N_("bottom area"), "bottomarea", "grey40", "bottomarea" },
|
|
|
|
|
{ pagebreak, N_("page break"), "pagebreak", "RoyalBlue", "pagebreak" },
|
2001-06-27 14:10:35 +00:00
|
|
|
|
{ top, N_("top of button"), "top", "grey90", "top" },
|
|
|
|
|
{ bottom, N_("bottom of button"), "bottom", "grey60", "bottom" },
|
|
|
|
|
{ left, N_("left of button"), "left", "grey90", "left" },
|
|
|
|
|
{ right, N_("right of button"), "right", "grey60", "right" },
|
|
|
|
|
{ buttonbg, N_("button background"), "buttonbg", "grey80", "buttonbg" },
|
2000-05-25 03:37:32 +00:00
|
|
|
|
{ inherit, N_("inherit"), "inherit", "black", "inherit" },
|
|
|
|
|
{ ignore, N_("ignore"), "ignore", "black", "ignore" },
|
|
|
|
|
{ ignore, 0, 0, 0, 0 }
|
|
|
|
|
};
|
|
|
|
|
|
2003-05-09 09:43:39 +00:00
|
|
|
|
for (int i = 0; items[i].guiname; ++i)
|
|
|
|
|
pimpl_->fill(items[i]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LColor::LColor(LColor const & c)
|
|
|
|
|
: pimpl_(new Pimpl(*c.pimpl_))
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LColor::~LColor()
|
2003-08-17 11:28:23 +00:00
|
|
|
|
{}
|
2000-02-10 17:53:36 +00:00
|
|
|
|
|
|
|
|
|
|
2003-05-09 09:43:39 +00:00
|
|
|
|
void LColor::operator=(LColor const & c)
|
|
|
|
|
{
|
|
|
|
|
LColor tmp(c);
|
2003-08-17 11:28:23 +00:00
|
|
|
|
boost::swap(pimpl_, tmp.pimpl_);
|
2003-05-09 09:43:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
|
string const LColor::getGUIName(LColor::color c) const
|
2000-02-10 17:53:36 +00:00
|
|
|
|
{
|
2003-12-14 16:33:56 +00:00
|
|
|
|
Pimpl::InfoTab::const_iterator it = pimpl_->infotab.find(c);
|
|
|
|
|
if (it != pimpl_->infotab.end())
|
|
|
|
|
return _(it->second.guiname);
|
2003-08-17 11:28:23 +00:00
|
|
|
|
return "none";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
|
string const LColor::getX11Name(LColor::color c) const
|
2000-02-10 17:53:36 +00:00
|
|
|
|
{
|
2003-12-14 16:33:56 +00:00
|
|
|
|
Pimpl::InfoTab::const_iterator it = pimpl_->infotab.find(c);
|
|
|
|
|
if (it != pimpl_->infotab.end())
|
|
|
|
|
return it->second.x11name;
|
2000-02-10 17:53:36 +00:00
|
|
|
|
|
|
|
|
|
lyxerr << "LyX internal error: Missing color"
|
2003-12-14 16:33:56 +00:00
|
|
|
|
" entry in LColor.C for " << int(c) << '\n'
|
|
|
|
|
<< "Using black." << endl;
|
2003-08-17 11:28:23 +00:00
|
|
|
|
return "black";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
|
string const LColor::getLaTeXName(LColor::color c) const
|
2000-02-10 17:53:36 +00:00
|
|
|
|
{
|
2003-12-14 16:33:56 +00:00
|
|
|
|
Pimpl::InfoTab::const_iterator it = pimpl_->infotab.find(c);
|
|
|
|
|
if (it != pimpl_->infotab.end())
|
|
|
|
|
return it->second.latexname;
|
2003-08-17 11:28:23 +00:00
|
|
|
|
return "black";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
|
string const LColor::getLyXName(LColor::color c) const
|
2000-02-10 17:53:36 +00:00
|
|
|
|
{
|
2003-12-14 16:33:56 +00:00
|
|
|
|
Pimpl::InfoTab::const_iterator it = pimpl_->infotab.find(c);
|
|
|
|
|
if (it != pimpl_->infotab.end())
|
|
|
|
|
return it->second.lyxname;
|
2000-02-10 17:53:36 +00:00
|
|
|
|
return "black";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-12-14 16:33:56 +00:00
|
|
|
|
bool LColor::setColor(LColor::color col, string const & x11name)
|
2003-08-17 11:28:23 +00:00
|
|
|
|
{
|
2003-12-14 16:33:56 +00:00
|
|
|
|
Pimpl::InfoTab::iterator it = pimpl_->infotab.find(col);
|
|
|
|
|
if (it == pimpl_->infotab.end()) {
|
|
|
|
|
lyxerr << "Color " << col << " not found in database."
|
|
|
|
|
<< std::endl;
|
|
|
|
|
return false;
|
2000-02-10 17:53:36 +00:00
|
|
|
|
}
|
2000-06-26 15:33:13 +00:00
|
|
|
|
|
|
|
|
|
// "inherit" is returned for colors not in the database
|
|
|
|
|
// (and anyway should not be redefined)
|
2003-12-14 16:33:56 +00:00
|
|
|
|
if (col == none || col == inherit || col == ignore) {
|
|
|
|
|
lyxerr << "Color " << getLyXName(col)
|
|
|
|
|
<< " may not be redefined" << endl;
|
2000-06-26 15:33:13 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2003-12-14 16:33:56 +00:00
|
|
|
|
|
|
|
|
|
it->second.x11name = x11name;
|
2000-06-26 15:33:13 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
|
LColor::color LColor::getFromGUIName(string const & guiname) const
|
|
|
|
|
{
|
2003-12-14 16:33:56 +00:00
|
|
|
|
Pimpl::InfoTab::const_iterator it = pimpl_->infotab.begin();
|
2003-05-09 09:43:39 +00:00
|
|
|
|
Pimpl::InfoTab::const_iterator end = pimpl_->infotab.end();
|
2003-12-14 16:33:56 +00:00
|
|
|
|
for (; it != end; ++it) {
|
|
|
|
|
if (!compare_ascii_no_case(_(it->second.guiname), guiname))
|
|
|
|
|
return static_cast<LColor::color>(it->first);
|
2000-02-10 17:53:36 +00:00
|
|
|
|
}
|
2000-09-14 17:53:12 +00:00
|
|
|
|
return LColor::inherit;
|
2000-02-10 17:53:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-12-14 16:33:56 +00:00
|
|
|
|
void LColor::addColor(LColor::color c, string const & lyxname) const
|
|
|
|
|
{
|
|
|
|
|
ColorEntry ce = { c, "", "", "", lyxname.c_str() };
|
|
|
|
|
pimpl_->fill(ce);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
|
LColor::color LColor::getFromLyXName(string const & lyxname) const
|
|
|
|
|
{
|
2004-03-18 15:49:44 +00:00
|
|
|
|
string const lcname = ascii_lowercase(lyxname);
|
|
|
|
|
if (pimpl_->transform.find(lcname) == pimpl_->transform.end()) {
|
|
|
|
|
lyxerr << "LColor::getFromLyXName: Unknown color \""
|
|
|
|
|
<< lyxname << '"' << endl;
|
|
|
|
|
addColor(static_cast<color>(pimpl_->infotab.size()), lcname);
|
|
|
|
|
}
|
2003-12-14 16:33:56 +00:00
|
|
|
|
|
2004-03-18 15:49:44 +00:00
|
|
|
|
return static_cast<LColor::color>(pimpl_->transform[lcname]);
|
2000-02-10 17:53:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-05-09 09:43:39 +00:00
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
|
// The evil global LColor instance
|
|
|
|
|
LColor lcolor;
|
2000-11-15 18:02:45 +00:00
|
|
|
|
// An equally evil global system LColor instance
|
|
|
|
|
LColor system_lcolor;
|