]> git.lyx.org Git - lyx.git/blobdiff - src/MenuBackend.h
Fix working of the spellchecker dialog with ispell when there are no
[lyx.git] / src / MenuBackend.h
index 2c09e4ee48b4f265643419fb88124c581ba832b1..b980e305f3c90a04024c7b70c585d10da8778a5d 100644 (file)
@@ -4,7 +4,7 @@
 *           LyX, The Document Processor
 *
 *           Copyright 1995 Matthias Ettrich
-*           Copyright 1995-2000 The LyX Team.
+*           Copyright 1995-2001 The LyX Team.
 *
 *           This file is Copyright 1999
 *           Jean-Marc Lasgouttes
@@ -19,7 +19,6 @@
 #endif
 
 #include "LString.h"
-#include "support/lstrings.h"
 #include <vector>
 
 class LyXLex;
@@ -44,8 +43,6 @@ public:
                Documents,
                ///
                Toc,
-               ///
-               References,
                /** This is a list of viewable formats
                    typically for the File->View menu. */
                ViewFormats,
@@ -54,7 +51,16 @@ public:
                UpdateFormats,
                /** This is a list of exportable formats
                    typically for the File->Export menu. */
-               ExportFormats
+               ExportFormats,
+               /** This is a list of importable formats
+                   typically for the File->Export menu. */
+               ImportFormats,
+               /** This is the list of floats that we can
+                   insert a list for. */
+               FloatListInsert,
+               /** This is the list of floats that we can
+                   insert. */
+               FloatInsert
        };
        /// Create a Command type MenuItem
        MenuItem(Kind kind, 
@@ -69,9 +75,9 @@ public:
                  action_(action), submenu_(), optional_(optional) {}
  
        /// The label of a given menuitem
-       string const label() const { return token(label_, '|', 0); }
+       string const label() const;
        /// The keyboard shortcut (usually underlined in the entry)
-       string const shortcut() const { return token(label_, '|', 1); }
+       string const shortcut() const;
        /// The complete label, with label and shortcut separated by a '|'
        string const fulllabel() const { return label_;}
        /// The kind of entry
@@ -124,6 +130,8 @@ public:
        bool empty() const { return items_.empty(); }
        ///
        ItemList::size_type size() const { return items_.size(); }
+       ///
+       bool hasSubmenu(string const &) const;
         ///
         const_iterator begin() const {
                 return items_.begin();
@@ -160,7 +168,7 @@ public:
        ///
        void add(Menu const &);
        ///
-       bool hasMenu (string const &) const;
+       bool hasMenu(string const &) const;
        ///
        Menu & getMenu (string const &);
        ///