X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FLColor.C;h=1642e4f6c35cd2f270f45792c7c4069997569467;hb=32d281cba0a2e4d0e8425a34a1a8d1f5e7251412;hp=a1eca5898309fbe4f3a0ed1e1fb732395aa3fd27;hpb=fcdb71906b6f41dd5719608b1e57286037fc5f2c;p=lyx.git diff --git a/src/LColor.C b/src/LColor.C index a1eca58983..1642e4f6c3 100644 --- a/src/LColor.C +++ b/src/LColor.C @@ -17,15 +17,17 @@ #include #include "debug.h" -#include "LColor.h" #include "gettext.h" +#include "LColor.h" #include "support/lstrings.h" #include -using namespace lyx::support; +using lyx::support::compare_ascii_no_case; +using lyx::support::ascii_lowercase; using std::endl; +using std::string; namespace { @@ -40,12 +42,6 @@ struct ColorEntry { } -struct TransformEntry { - char const * lyxname; - int ncolor; -}; - - struct LColor::Pimpl { /// struct information { @@ -171,153 +167,112 @@ void LColor::operator=(LColor const & c) } -void LColor::fill(LColor::color c, - string const & lyxname, - string const & x11name, - string const & latexname, - string const & guiname) -{ - ColorEntry ce; - ce.lcolor = c; - ce.guiname = guiname.c_str(); - ce.latexname = latexname.c_str(); - ce.x11name = x11name.c_str(); - ce.lyxname = lyxname.c_str(); - pimpl_->fill(ce); -} - - string const LColor::getGUIName(LColor::color c) const { - Pimpl::InfoTab::const_iterator ici = pimpl_->infotab.find(c); - if (ici != pimpl_->infotab.end()) - return _(ici->second.guiname); - return "none"; -} - - -string const LColor::getGUIName(string const & s) const -{ - Pimpl::Transform::const_iterator ici = pimpl_->transform.find(s); - if (ici != pimpl_->transform.end()) { - Pimpl::InfoTab::const_iterator - it = pimpl_->infotab.find(ici->second); - if (it != pimpl_->infotab.end()) - return it->second.guiname; - } + Pimpl::InfoTab::const_iterator it = pimpl_->infotab.find(c); + if (it != pimpl_->infotab.end()) + return _(it->second.guiname); return "none"; } string const LColor::getX11Name(LColor::color c) const { - Pimpl::InfoTab::const_iterator ici = pimpl_->infotab.find(c); - if (ici != pimpl_->infotab.end()) - return ici->second.x11name; + Pimpl::InfoTab::const_iterator it = pimpl_->infotab.find(c); + if (it != pimpl_->infotab.end()) + return it->second.x11name; lyxerr << "LyX internal error: Missing color" - " entry in LColor.C for " << int(c) << endl; - lyxerr << "Using black." << endl; - return "black"; -} - - -string const LColor::getX11Name(string const & s) const -{ - Pimpl::Transform::const_iterator ici = pimpl_->transform.find(s); - if (ici != pimpl_->transform.end()) { - Pimpl::InfoTab::const_iterator - it = pimpl_->infotab.find(ici->second); - if (it != pimpl_->infotab.end()) - return it->second.x11name; - } - lyxerr << "LyX internal error: Missing color" - " entry in LColor.C for " << s << endl; - lyxerr << "Using black." << endl; + " entry in LColor.C for " << int(c) << '\n' + << "Using black." << endl; return "black"; } string const LColor::getLaTeXName(LColor::color c) const { - Pimpl::InfoTab::const_iterator ici = pimpl_->infotab.find(c); - if (ici != pimpl_->infotab.end()) - return ici->second.latexname; - return "black"; -} - - -string const LColor::getLaTeXName(string const & s) const -{ - Pimpl::Transform::const_iterator ici = pimpl_->transform.find(s); - if (ici != pimpl_->transform.end()) { - Pimpl::InfoTab::const_iterator - it = pimpl_->infotab.find(ici->second); - if (it != pimpl_->infotab.end()) - return it->second.latexname; - } + Pimpl::InfoTab::const_iterator it = pimpl_->infotab.find(c); + if (it != pimpl_->infotab.end()) + return it->second.latexname; return "black"; } string const LColor::getLyXName(LColor::color c) const { - Pimpl::InfoTab::const_iterator ici = pimpl_->infotab.find(c); - if (ici != pimpl_->infotab.end()) - return ici->second.lyxname; + Pimpl::InfoTab::const_iterator it = pimpl_->infotab.find(c); + if (it != pimpl_->infotab.end()) + return it->second.lyxname; return "black"; } -size_t LColor::size() const -{ - return pimpl_->infotab.size(); -} - - -void LColor::setColor(LColor::color col, string const & x11name) +bool LColor::setColor(LColor::color col, string const & x11name) { - Pimpl::InfoTab::iterator iti = pimpl_->infotab.find(col); - if (iti != pimpl_->infotab.end()) { - iti->second.x11name = x11name; - return; + Pimpl::InfoTab::iterator it = pimpl_->infotab.find(col); + if (it == pimpl_->infotab.end()) { + lyxerr << "Color " << col << " not found in database." + << std::endl; + return false; } - lyxerr << "LyX internal error: color and such." << endl; - BOOST_ASSERT(false); -} - - -bool LColor::setColor(string const & lyxname, string const & x11name) -{ - color col = getFromLyXName(lyxname); // "inherit" is returned for colors not in the database // (and anyway should not be redefined) - if (col == inherit || col == ignore) { - lyxerr << "Color " << lyxname << " is undefined or may not be" - " redefined" << endl; + if (col == none || col == inherit || col == ignore) { + lyxerr << "Color " << getLyXName(col) + << " may not be redefined" << endl; return false; } - setColor(col, x11name); + + it->second.x11name = x11name; return true; } +bool LColor::setColor(string const & lyxname, string const &x11name) +{ + string const lcname = ascii_lowercase(lyxname); + if (pimpl_->transform.find(lcname) == pimpl_->transform.end()) { + lyxerr[Debug::GUI] + << "LColor::setColor: Unknown color \"" + << lyxname << '"' << endl; + addColor(static_cast(pimpl_->infotab.size()), lcname); + } + + return setColor(static_cast(pimpl_->transform[lcname]), + x11name); +} + + LColor::color LColor::getFromGUIName(string const & guiname) const { - Pimpl::InfoTab::const_iterator ici = pimpl_->infotab.begin(); + Pimpl::InfoTab::const_iterator it = pimpl_->infotab.begin(); Pimpl::InfoTab::const_iterator end = pimpl_->infotab.end(); - for (; ici != end; ++ici) { - if (!compare_ascii_no_case(_(ici->second.guiname), guiname)) - return static_cast(ici->first); + for (; it != end; ++it) { + if (!compare_ascii_no_case(_(it->second.guiname), guiname)) + return static_cast(it->first); } return LColor::inherit; } +void LColor::addColor(LColor::color c, string const & lyxname) const +{ + ColorEntry ce = { c, "", "", "", lyxname.c_str() }; + pimpl_->fill(ce); +} + + LColor::color LColor::getFromLyXName(string const & lyxname) const { - return static_cast(pimpl_->transform[lyxname]); + string const lcname = ascii_lowercase(lyxname); + if (pimpl_->transform.find(lcname) == pimpl_->transform.end()) { + lyxerr << "LColor::getFromLyXName: Unknown color \"" + << lyxname << '"' << endl; + return none; + } + + return static_cast(pimpl_->transform[lcname]); }