X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FToolbarBackend.h;h=8169ea910a9f60d4541cf84c06f1f8a14a025791;hb=8ebf862adbe377d032f888a82d88d4393aebc929;hp=bbc3498f5ebd6c01e287fe3744940318948502d7;hpb=84640bc0f28e0f884c1258a77e9ee21dcffd283c;p=lyx.git diff --git a/src/ToolbarBackend.h b/src/ToolbarBackend.h index bbc3498f5e..8169ea910a 100644 --- a/src/ToolbarBackend.h +++ b/src/ToolbarBackend.h @@ -4,21 +4,23 @@ * 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 -#include "LString.h" class LyXLex; + /// class ToolbarBackend { public: @@ -33,10 +35,10 @@ public: }; /// action, tooltip - typedef std::pair Item; + typedef std::pair Item; /// the toolbar items - typedef std::vector > Items; + typedef std::vector Items; /// toolbar flags enum Flags { @@ -52,8 +54,10 @@ public: /// a toolbar struct Toolbar { - /// toolbar UI name - string name; + /// toolbar name + std::string name; + /// toolbar GUI name + std::string gui_name; /// toolbar contents Items items; /// flags @@ -68,28 +72,32 @@ public: /// iterator for all toolbars Toolbars::const_iterator begin() const { - return toolbars.begin(); + return usedtoolbars.begin(); } Toolbars::const_iterator end() const { - return toolbars.end(); + 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 string const getIcon(int action); + static std::string const getIcon(FuncRequest const &); private: /// add the given lfun with tooltip if relevant - void add(Toolbar & tb, int, string const & tooltip = string()); - - /// add the given lfun with tooltip if relevant - void add(Toolbar & tb, string const &, string const & tooltip); + void add(Toolbar & tb, FuncRequest const &, + std::string const & tooltip = std::string()); /// all the toolbars Toolbars toolbars; + + /// toolbars listed + Toolbars usedtoolbars; }; /// The global instance