]> git.lyx.org Git - lyx.git/blobdiff - src/ToolbarBackend.C
Point fix, earlier forgotten
[lyx.git] / src / ToolbarBackend.C
index cd6b22123b602ad808ce19d11cb9cb1ee2ac2d0e..099d9cafaf7af9dfd885e7432587759d99662571 100644 (file)
@@ -3,9 +3,10 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author unknown
+ * \author Jean-Marc Lasgouttes
+ * \author John Levon
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 
 #include "frontends/controllers/ControlMath.h"
 
+#include <vector>
+
+using namespace lyx::support;
+
 using std::endl;
+using std::vector;
+using std::make_pair;
 
 ToolbarBackend toolbarbackend;
 
@@ -33,14 +40,15 @@ enum tooltags {
        TO_ENDTOOLBAR,
        TO_SEPARATOR,
        TO_LAYOUTS,
+       TO_MINIBUFFER,
        TO_LAST
 };
 
-
 struct keyword_item toolTags[TO_LAST - 1] = {
        { "end", TO_ENDTOOLBAR },
        { "item", TO_ADD },
        { "layouts", TO_LAYOUTS },
+       { "minibuffer", TO_MINIBUFFER },
        { "separator", TO_SEPARATOR }
 };
 
@@ -86,6 +94,10 @@ void ToolbarBackend::read(LyXLex & lex)
                        }
                        break;
 
+               case TO_MINIBUFFER:
+                       add(tb, MINIBUFFER);
+                       break;
+
                case TO_SEPARATOR:
                        add(tb, SEPARATOR);
                        break;
@@ -110,6 +122,74 @@ void ToolbarBackend::read(LyXLex & lex)
 }
 
 
+void ToolbarBackend::readToolbars(LyXLex & lex)
+{
+       //consistency check
+       if (compare_ascii_no_case(lex.getString(), "toolbars")) {
+               lyxerr << "ToolbarBackend::read: ERROR wrong token:`"
+                      << lex.getString() << '\'' << endl;
+       }
+
+       lex.next(true);
+
+       while (lex.isOK()) {
+               string name = lex.getString();
+               lex.next(true);
+
+               if (!compare_ascii_no_case(name, "end"))
+                       return;
+
+               Toolbars::iterator tcit = toolbars.begin();
+               Toolbars::iterator tend = toolbars.end();
+               for (; tcit != tend; ++tcit) {
+                       if (tcit->name == name)
+                               break;
+               }
+
+               if (tcit == tend) {
+                       lyxerr << "ToolbarBackend: undefined toolbar "
+                               << name << endl;
+                       return;
+               }
+
+               tcit->flags = static_cast<Flags>(0);
+               string flagstr = lex.getString();
+               lex.next(true);
+               vector<string> flags = getVectorFromString(flagstr);
+
+               vector<string>::const_iterator cit = flags.begin();
+               vector<string>::const_iterator end = flags.end();
+
+               for (; cit != end; ++cit) {
+                       int flag = 0;
+                       if (!compare_ascii_no_case(*cit, "off"))
+                               flag = OFF;
+                       else if (!compare_ascii_no_case(*cit, "on"))
+                               flag = ON;
+                       else if (!compare_ascii_no_case(*cit, "math"))
+                               flag = MATH;
+                       else if (!compare_ascii_no_case(*cit, "table"))
+                               flag = TABLE;
+                       else if (!compare_ascii_no_case(*cit, "top"))
+                               flag = TOP;
+                       else if (!compare_ascii_no_case(*cit, "bottom"))
+                               flag = BOTTOM;
+                       else if (!compare_ascii_no_case(*cit, "left"))
+                               flag = LEFT;
+                       else if (!compare_ascii_no_case(*cit, "right"))
+                               flag = RIGHT;
+                       else {
+                               lyxerr << "ToolbarBackend::read: unrecognised token:`"
+                                      << *cit << '\'' << endl;
+                       }
+                       tcit->flags = static_cast<Flags>(tcit->flags | flag);
+               }
+
+               usedtoolbars.push_back(*tcit);
+       }
+}
+
+
 void ToolbarBackend::add(Toolbar & tb, int action, string const & tooltip)
 {
        tb.items.push_back(make_pair(action, tooltip));
@@ -134,8 +214,11 @@ string const ToolbarBackend::getIcon(int action)
        string fullname;
        FuncRequest f = lyxaction.retrieveActionArg(action);
 
-       if (f.action == LFUN_INSERT_MATH && !f.argument.empty()) {
-               fullname = find_xpm(f.argument.substr(1));
+       if (f.action == LFUN_INSERT_MATH) {
+               if (!f.argument.empty())
+                       fullname = find_xpm(f.argument.substr(1));
+       } else if (f.action == LFUN_MATH_DELIM) {
+               fullname = find_xpm(f.argument);
        } else {
                string const name = lyxaction.getActionName(f.action);
                string xpm_name(name);
@@ -157,5 +240,8 @@ string const ToolbarBackend::getIcon(int action)
                return fullname;
        }
 
+       lyxerr[Debug::GUI] << "Cannot find icon for command \""
+                          << lyxaction.getActionName(f.action)
+                          << ' ' << f.argument << '"' << endl;
        return LibFileSearch("images", "unknown", "xpm");
 }