]> git.lyx.org Git - lyx.git/blob - src/ToolbarBackend.h
33694481cdfec0b2522353d286a04b77cc13172a
[lyx.git] / src / ToolbarBackend.h
1 // -*- C++ -*-
2 /**
3  * \file ToolbarBackend.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Jean-Marc Lasgouttes
8  * \author John Levon
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef TOOLBAR_BACKEND_H
14 #define TOOLBAR_BACKEND_H
15
16 #include "funcrequest.h"
17
18 #include <vector>
19
20
21 namespace lyx {
22
23
24 class LyXLex;
25
26
27 ///
28 class ToolbarBackend {
29 public:
30         /// The special toolbar actions
31         enum ItemType {
32                 /// the command buffer
33                 MINIBUFFER = -3,
34                 /// adds space between buttons in the toolbar
35                 SEPARATOR = -2,
36                 /// a special combox insead of a button
37                 LAYOUTS = -1,
38         };
39
40         /// action, tooltip
41         typedef std::pair<FuncRequest, docstring> Item;
42
43         /// the toolbar items
44         typedef std::vector<Item> Items;
45
46         /// toolbar flags
47         enum Flags {
48                 ON = 1, //< always shown
49                 OFF = 2, //< never shown
50                 MATH = 4, //< shown when in math
51                 TABLE = 8, //< shown when in table
52                 TOP = 16, //< show at top
53                 BOTTOM = 32, //< show at bottom
54                 LEFT = 64, //< show at left
55                 RIGHT = 128 //< show at right
56         };
57
58         /// a toolbar
59         struct Toolbar {
60                 /// toolbar name
61                 std::string name;
62                 /// toolbar GUI name
63                 std::string gui_name;
64                 /// toolbar contents
65                 Items items;
66                 /// flags
67                 Flags flags;
68         };
69
70         typedef std::vector<Toolbar> Toolbars;
71
72         typedef Items::const_iterator item_iterator;
73
74         ToolbarBackend();
75
76         /// iterator for all toolbars
77         Toolbars::const_iterator begin() const { return usedtoolbars.begin(); }
78
79         Toolbars::const_iterator end() const { return usedtoolbars.end(); }
80
81         /// read a toolbar from the file
82         void read(LyXLex &);
83
84         /// read the used toolbars
85         void readToolbars(LyXLex &);
86
87         /// return a full path of an XPM for the given action
88         static std::string const getIcon(FuncRequest const &);
89
90 private:
91         /// add the given lfun with tooltip if relevant
92         void add(Toolbar & tb, FuncRequest const &,
93                  docstring const & tooltip = docstring());
94
95         /// all the toolbars
96         Toolbars toolbars;
97
98         /// toolbars listed
99         Toolbars usedtoolbars;
100 };
101
102 /// The global instance
103 extern ToolbarBackend toolbarbackend;
104
105
106
107 } // namespace lyx
108
109 #endif // TOOLBAR_BACKEND_H