]> git.lyx.org Git - lyx.git/blobdiff - src/LColor.C
more cursor dispatch
[lyx.git] / src / LColor.C
index a36d1a7d8328b82835e8f3b63366176957e4c722..96e11cad0d54ff69562960f28ae42f6969e98fc9 100644 (file)
@@ -1,31 +1,38 @@
-/* This file is part of
- * ======================================================
+/**
+ * \file LColor.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Asger Alstrup
+ * \author Lars Gullik Bjønnes
+ * \author Matthias Ettrich
+ * \author Jean-Marc Lasgouttes
+ * \author John Levon
+ * \author André Pönitz
+ * \author Martin Vermeer
  *
- *         Copyright 1998-2001 The LyX Team
- *
- *======================================================*/
+ * Full author contact details are available in file CREDITS.
+ */
 
 #include <config.h>
 
 #include "debug.h"
-#include "LColor.h"
-#include "support/LAssert.h"
 #include "gettext.h"
+#include "LColor.h"
 #include "support/lstrings.h"
 
 #include <map>
 
-using namespace lyx::support;
+using lyx::support::compare_ascii_no_case;
 
 using std::endl;
+using std::string;
 
 
 namespace {
 
 struct ColorEntry {
-       LColor::color lcolor;
+       int lcolor;
        char const * guiname;
        char const * latexname;
        char const * x11name;
@@ -34,7 +41,6 @@ struct ColorEntry {
 
 }
 
-
 struct LColor::Pimpl {
        ///
        struct information {
@@ -51,17 +57,24 @@ struct LColor::Pimpl {
        /// initialise a color entry
        void fill(ColorEntry const & entry)
        {
-               information & in = infotab[entry.lcolor];
-               in.guiname   = entry.guiname;
-               in.latexname = entry.latexname;
-               in.x11name   = entry.x11name;
-               in.lyxname   = entry.lyxname;
+               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);
        }
 
        ///
-       typedef std::map<LColor::color, information> InfoTab;
+       typedef std::map<int, information> InfoTab;
        /// the table of color information
        InfoTab infotab;
+
+       typedef std::map<string, int> Transform;
+       /// the transform between colour name string and integer code.
+       Transform transform;
+
 };
 
 
@@ -143,108 +156,103 @@ LColor::LColor(LColor const & c)
 
 
 LColor::~LColor()
-{
-       delete pimpl_;
-}
+{}
 
 
 void LColor::operator=(LColor const & c)
 {
        LColor tmp(c);
-       std::swap(pimpl_, tmp.pimpl_);
+       boost::swap(pimpl_, tmp.pimpl_);
 }
 
 
-
 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);
+       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;
+               " 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;
+       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";
 }
 
 
-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;
-       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;
 }
 
 
 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 ici->first;
+       for (; it != end; ++it) {
+               if (!compare_ascii_no_case(_(it->second.guiname), guiname))
+                       return static_cast<LColor::color>(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
 {
-       Pimpl::InfoTab::const_iterator ici = pimpl_->infotab.begin();
-       Pimpl::InfoTab::const_iterator end = pimpl_->infotab.end();
-       for (; ici != end; ++ici) {
-               if (!compare_ascii_no_case(ici->second.lyxname, lyxname))
-                       return ici->first;
-       }
-       return LColor::inherit;
+       if (pimpl_->transform.find(lyxname) == pimpl_->transform.end())
+               addColor(static_cast<color>(pimpl_->infotab.size()), lyxname);
+
+       return static_cast<LColor::color>(pimpl_->transform[lyxname]);
 }