X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FToolbarBackend.h;h=8169ea910a9f60d4541cf84c06f1f8a14a025791;hb=b9963e1a57135c3e2ab128a9ec4300f0e4886992;hp=7e609ac8c4ecbf941c3e990138321f6b13bc7378;hpb=1423bdb7a7615b0af878188c9a36b07cbd2421e6;p=lyx.git diff --git a/src/ToolbarBackend.h b/src/ToolbarBackend.h index 7e609ac8c4..8169ea910a 100644 --- a/src/ToolbarBackend.h +++ b/src/ToolbarBackend.h @@ -4,66 +4,100 @@ * 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. */ #ifndef TOOLBAR_BACKEND_H #define TOOLBAR_BACKEND_H +#include "funcrequest.h" + #include -#include "LString.h" class LyXLex; + /// class ToolbarBackend { public: /// The special toolbar actions - enum ItemType { + enum ItemType { + /// the command buffer + MINIBUFFER = -3, /// adds space between buttons in the toolbar - SEPARATOR = -3, + SEPARATOR = -2, /// a special combox insead of a button - LAYOUTS = -2, - /// begin a new line of button (not working) - NEWLINE = -1 + LAYOUTS = -1, + }; + + /// action, tooltip + typedef std::pair Item; + + /// the toolbar items + typedef std::vector Items; + + /// toolbar flags + enum Flags { + ON = 1, //< always shown + OFF = 2, //< never shown + MATH = 4, //< shown when in math + TABLE = 8, //< shown when in table + TOP = 16, //< show at top + BOTTOM = 32, //< show at bottom + LEFT = 64, //< show at left + RIGHT = 128 //< show at right + }; + + /// a toolbar + struct Toolbar { + /// toolbar name + std::string name; + /// toolbar GUI name + std::string gui_name; + /// toolbar contents + Items items; + /// flags + Flags flags; }; - /// - typedef std::vector Items; - /// - typedef Items::iterator iterator; - /// - typedef Items::const_iterator const_iterator; - /// + typedef std::vector Toolbars; + + typedef Items::const_iterator item_iterator; + ToolbarBackend(); - /// - iterator begin() { - return items.begin(); - } - /// - const_iterator begin() const { - return items.begin(); - } - /// - iterator end() { - return items.end(); + + /// iterator for all toolbars + Toolbars::const_iterator begin() const { + return usedtoolbars.begin(); } - /// - const_iterator end() const { - return items.end(); + + Toolbars::const_iterator end() const { + return usedtoolbars.end(); } - /// + + /// read a toolbar from the file void read(LyXLex &); + + /// read the used toolbars + void readToolbars(LyXLex &); + + /// return a full path of an XPM for the given action + static std::string const getIcon(FuncRequest const &); + private: - /// This func is just to make it easy for me... - void add(int); - /// - void add(string const &); - /// - Items items; + /// add the given lfun with tooltip if relevant + void add(Toolbar & tb, FuncRequest const &, + std::string const & tooltip = std::string()); + + /// all the toolbars + Toolbars toolbars; + + /// toolbars listed + Toolbars usedtoolbars; }; /// The global instance