]> git.lyx.org Git - lyx.git/blob - src/MenuBackend.h
Fix event loop to no longer eat CPU
[lyx.git] / src / MenuBackend.h
1 // -*- C++ -*-
2 /**
3  * \file MenuBackend.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  * \author Jean-Marc Lasgouttes
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef MENUBACKEND_H
14 #define MENUBACKEND_H
15
16 #include "FuncStatus.h"
17 #include "funcrequest.h"
18
19 #include <boost/shared_ptr.hpp>
20
21 #include <vector>
22
23 class LyXLex;
24 class LyXView;
25 class Menu;
26
27 ///
28 class MenuItem {
29 public:
30         /// The type of elements that can be in a menu
31         enum Kind {
32                 ///
33                 Command,
34                 ///
35                 Submenu,
36                 ///
37                 Separator,
38                 /** This is the list of last opened file,
39                     typically for the File menu. */
40                 Lastfiles,
41                 /** This is the list of opened Documents,
42                     typically for the Documents menu. */
43                 Documents,
44                 ///
45                 Toc,
46                 /** This is a list of viewable formats
47                     typically for the File->View menu. */
48                 ViewFormats,
49                 /** This is a list of updatable formats
50                     typically for the File->Update menu. */
51                 UpdateFormats,
52                 /** This is a list of exportable formats
53                     typically for the File->Export menu. */
54                 ExportFormats,
55                 /** This is a list of importable formats
56                     typically for the File->Export menu. */
57                 ImportFormats,
58                 /** This is the list of elements available
59                  * for insertion into document. */
60                 CharStyles,
61                 /** This is the list of floats that we can
62                     insert a list for. */
63                 FloatListInsert,
64                 /** This is the list of floats that we can
65                     insert. */
66                 FloatInsert,
67                 /** This is the list of selections that can
68                     be pasted. */
69                 PasteRecent,
70                 /** Available branches in document */
71                 Branches
72         };
73
74         explicit MenuItem(Kind kind);
75
76         MenuItem(Kind kind,
77                  std::string const & label,
78                  std::string const & command = std::string(),
79                  bool optional = false);
80
81         MenuItem(Kind kind,
82                  std::string const & label,
83                  FuncRequest const & func,
84                  bool optional = false);
85
86         /// This one is just to please boost::shared_ptr<>
87         ~MenuItem();
88         /// The label of a given menuitem
89         std::string const label() const;
90         /// The keyboard shortcut (usually underlined in the entry)
91         std::string const shortcut() const;
92         /// The complete label, with label and shortcut separated by a '|'
93         std::string const fulllabel() const { return label_;}
94         /// The kind of entry
95         Kind kind() const { return kind_; }
96         /// the action (if relevant)
97         FuncRequest const & func() const { return func_; }
98         /// returns true if the entry should be ommited when disabled
99         bool optional() const { return optional_; }
100         /// returns the status of the lfun associated with this entry
101         FuncStatus const & status() const { return status_; }
102         /// returns the status of the lfun associated with this entry
103         FuncStatus & status() { return status_; }
104         /// returns the status of the lfun associated with this entry
105         void status(FuncStatus const & status) { status_ = status; }
106         /// returns the binding associated to this action
107         std::string const binding() const;
108         /// the description of the  submenu (if relevant)
109         std::string const & submenuname() const { return submenuname_; }
110         /// set the description of the  submenu
111         void submenuname(std::string const & name) { submenuname_ = name; }
112         ///
113         Menu * submenu() const { return submenu_.get(); }
114         ///
115         void submenu(Menu * menu);
116
117 private:
118         //friend class MenuBackend;
119         ///
120         Kind kind_;
121         ///
122         std::string label_;
123         ///
124         FuncRequest func_;
125         ///
126         std::string submenuname_;
127         ///
128         bool optional_;
129         ///
130         FuncStatus status_;
131         ///
132         boost::shared_ptr<Menu> submenu_;
133 };
134
135
136 ///
137 class Menu {
138 public:
139         ///
140         typedef std::vector<MenuItem> ItemList;
141         ///
142         typedef ItemList::const_iterator const_iterator;
143         ///
144         typedef ItemList::size_type size_type;
145         ///
146         explicit Menu(std::string const & name = std::string())
147                 : name_(name) {}
148         ///
149         Menu & add(MenuItem const &, LyXView const * view = 0);
150         ///
151         Menu & read(LyXLex &);
152         ///
153         std::string const & name() const { return name_; }
154         ///
155         bool empty() const { return items_.empty(); }
156         ///
157         ItemList::size_type size() const { return items_.size(); }
158         ///
159         MenuItem const & operator[](size_type) const;
160         ///
161         bool hasFunc(FuncRequest const &) const;
162         ///
163         const_iterator begin() const {
164                 return items_.begin();
165         }
166         ///
167         const_iterator end() const {
168                 return items_.end();
169         }
170
171         // Check whether the menu shortcuts are unique
172         void checkShortcuts() const;
173
174 private:
175         friend class MenuBackend;
176         ///
177         ItemList items_;
178         ///
179         std::string name_;
180 };
181
182
183 ///
184 class MenuBackend {
185 public:
186         ///
187         typedef std::vector<Menu> MenuList;
188         ///
189         typedef MenuList::const_iterator const_iterator;
190         ///
191         typedef MenuList::iterator iterator;
192         ///
193         MenuBackend() : specialmenu_(0) {}
194         ///
195         void read(LyXLex &);
196         ///
197         void add(Menu const &);
198         ///
199         bool hasMenu(std::string const &) const;
200         ///
201         Menu & getMenu(std::string const &);
202         ///
203         Menu const & getMenu(std::string const &) const;
204         ///
205         Menu const & getMenubar() const;
206         ///
207         bool empty() const { return menulist_.empty(); }
208         /** This defines a menu whose entries list the FuncRequests
209             will be removed by expand() in other menus. This is used by
210             the Qt/Mac code
211         */
212         void specialMenu(std::string const &);
213         /// Expands some special entries of the menu
214         /** The entries with the following kind are expanded to a
215             sequence of Command MenuItems: Lastfiles, Documents,
216             ViewFormats, ExportFormats, UpdateFormats, Branches
217         */
218         void expand(Menu const & frommenu, Menu & tomenu,
219                     LyXView const *) const;
220         ///
221         const_iterator begin() const {
222                 return menulist_.begin();
223         }
224         ///
225         iterator begin() {
226                 return menulist_.begin();
227         }
228         ///
229         const_iterator end() const {
230                 return menulist_.end();
231         }
232         ///
233         iterator end() {
234                 return menulist_.end();
235         }
236 private:
237         ///
238         MenuList menulist_;
239         ///
240         Menu menubar_;
241         ///
242         Menu * specialmenu_;
243 };
244
245 ///
246 extern MenuBackend menubackend;
247
248 #endif /* MENUBACKEND_H */