]> git.lyx.org Git - lyx.git/blob - src/MenuBackend.C
make sure we clear menu contents before expand()
[lyx.git] / src / MenuBackend.C
1 /**
2  * \file MenuBackend.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Asger Alstrup
7  * \author Lars Gullik Bjønnes
8  * \author Jean-Marc Lasgouttes
9  * \author André Pönitz
10  * \author Dekel Tsur
11  * \author Martin Vermeer
12  *
13  * Full author contact details are available in file CREDITS.
14  */
15
16 #include <config.h>
17
18 #include "MenuBackend.h"
19
20 #include "BranchList.h"
21 #include "buffer.h"
22 #include "bufferlist.h"
23 #include "bufferparams.h"
24 #include "CutAndPaste.h"
25 #include "debug.h"
26 #include "exporter.h"
27 #include "Floating.h"
28 #include "FloatList.h"
29 #include "format.h"
30 #include "gettext.h"
31 #include "importer.h"
32 #include "kbmap.h"
33 #include "lastfiles.h"
34 #include "LyXAction.h"
35 #include "lyx_main.h" // for lastfiles
36 #include "lyxfunc.h"
37 #include "lyxlex.h"
38 #include "toc.h"
39
40 #include "frontends/LyXView.h"
41
42 #include "support/filetools.h"
43 #include "support/lstrings.h"
44 #include "support/convert.h"
45
46 #include <boost/bind.hpp>
47
48 #include <algorithm>
49
50 using lyx::support::compare_ascii_no_case;
51 using lyx::support::contains;
52 using lyx::support::MakeDisplayPath;
53 using lyx::support::token;
54
55 using boost::bind;
56
57 using std::auto_ptr;
58 using std::endl;
59 using std::equal_to;
60 using std::find_if;
61 using std::max;
62 using std::sort;
63 using std::string;
64 using std::vector;
65
66
67 extern BufferList bufferlist;
68 extern boost::scoped_ptr<kb_keymap> toplevel_keymap;
69
70 namespace {
71
72 class MenuNamesEqual : public std::unary_function<Menu, bool> {
73 public:
74         MenuNamesEqual(string const & name)
75                 : name_(name) {}
76         bool operator()(Menu const & menu) const
77         {
78                 return menu.name() == name_;
79         }
80 private:
81         string name_;
82 };
83
84 } // namespace anon
85
86
87 // This is the global menu definition
88 MenuBackend menubackend;
89
90
91 MenuItem::MenuItem(Kind kind)
92         : kind_(kind), optional_(false)
93 {}
94
95
96 MenuItem::MenuItem(Kind kind, string const & label,
97                    string const & submenu, bool optional)
98         : kind_(kind), label_(label),
99           submenuname_(submenu), optional_(optional)
100 {
101         BOOST_ASSERT(kind == Submenu);
102 }
103
104
105 MenuItem::MenuItem(Kind kind, string const & label,
106                    FuncRequest const & func, bool optional)
107         : kind_(kind), label_(label), func_(func), optional_(optional)
108 {
109         func_.origin = FuncRequest::UI;
110 }
111
112
113 MenuItem::~MenuItem()
114 {}
115
116
117 void MenuItem::submenu(Menu * menu)
118 {
119         submenu_.reset(menu);
120 }
121
122
123 string const MenuItem::label() const
124 {
125         return token(label_, '|', 0);
126 }
127
128
129 string const MenuItem::shortcut() const
130 {
131         return token(label_, '|', 1);
132 }
133
134
135 string const MenuItem::binding() const
136 {
137         if (kind_ != Command)
138                 return string();
139
140         // Get the keys bound to this action, but keep only the
141         // first one later
142         kb_keymap::Bindings bindings = toplevel_keymap->findbindings(func_);
143
144         if (bindings.size()) {
145                 return bindings.begin()->print();
146         } else {
147                 lyxerr[Debug::KBMAP]
148                         << "No binding for "
149                         << lyxaction.getActionName(func_.action)
150                         << '(' << func_.argument << ')' << endl;
151                 return string();
152         }
153
154 }
155
156
157 Menu & Menu::add(MenuItem const & i, LyXView const * view)
158 {
159         if (!view) {
160                 items_.push_back(i);
161                 return *this;
162         }
163
164         switch (i.kind()) {
165
166         case MenuItem::Command: {
167                 FuncStatus status =
168                         view->getLyXFunc().getStatus(i.func());
169                 if (status.unknown()
170                     || (!status.enabled() && i.optional()))
171                         break;
172                 items_.push_back(i);
173                 items_.back().status(status);
174                 break;
175         }
176
177         case MenuItem::Submenu: {
178                 if (i.submenu()) {
179                         bool enabled = false;
180                         for (const_iterator cit = i.submenu()->begin();
181                              cit != i.submenu()->end(); ++cit) {
182                                 if ((cit->kind() == MenuItem::Command
183                                      || cit->kind() == MenuItem::Submenu)
184                                     && cit->status().enabled()) {
185                                         enabled = true;
186                                         break;
187                                 }
188                         }
189                         if (enabled || !i.optional()) {
190                                 items_.push_back(i);
191                                 items_.back().status().enabled(enabled);
192                         }
193                 }
194                 else
195                         items_.push_back(i);
196                 break;
197         }
198
199         case MenuItem::Separator:
200                 if (!items_.empty()
201                     && items_.back().kind() != MenuItem::Separator)
202                         items_.push_back(i);
203                 break;
204
205         default:
206                 items_.push_back(i);
207         }
208
209         return *this;
210 }
211
212
213 Menu & Menu::read(LyXLex & lex)
214 {
215         enum Menutags {
216                 md_item = 1,
217                 md_branches,
218                 md_documents,
219                 md_charstyles,
220                 md_endmenu,
221                 md_exportformats,
222                 md_importformats,
223                 md_lastfiles,
224                 md_optitem,
225                 md_optsubmenu,
226                 md_separator,
227                 md_submenu,
228                 md_toc,
229                 md_updateformats,
230                 md_viewformats,
231                 md_floatlistinsert,
232                 md_floatinsert,
233                 md_pasterecent,
234                 md_last
235         };
236
237         struct keyword_item menutags[md_last - 1] = {
238                 { "branches", md_branches },
239                 { "charstyles", md_charstyles },
240                 { "documents", md_documents },
241                 { "end", md_endmenu },
242                 { "exportformats", md_exportformats },
243                 { "floatinsert", md_floatinsert },
244                 { "floatlistinsert", md_floatlistinsert },
245                 { "importformats", md_importformats },
246                 { "item", md_item },
247                 { "lastfiles", md_lastfiles },
248                 { "optitem", md_optitem },
249                 { "optsubmenu", md_optsubmenu },
250                 { "pasterecent", md_pasterecent },
251                 { "separator", md_separator },
252                 { "submenu", md_submenu },
253                 { "toc", md_toc },
254                 { "updateformats", md_updateformats },
255                 { "viewformats", md_viewformats }
256         };
257
258         lex.pushTable(menutags, md_last - 1);
259         if (lyxerr.debugging(Debug::PARSER))
260                 lex.printTable(lyxerr);
261
262         bool quit = false;
263         bool optional = false;
264
265         while (lex.isOK() && !quit) {
266                 switch (lex.lex()) {
267                 case md_optitem:
268                         optional = true;
269                         // fallback to md_item
270                 case md_item: {
271                         lex.next(true);
272                         string const name = _(lex.getString());
273                         lex.next(true);
274                         string const command = lex.getString();
275                         FuncRequest func = lyxaction.lookupFunc(command);
276                         add(MenuItem(MenuItem::Command, name, func, optional));
277                         optional = false;
278                         break;
279                 }
280
281                 case md_separator:
282                         add(MenuItem(MenuItem::Separator));
283                         break;
284
285                 case md_lastfiles:
286                         add(MenuItem(MenuItem::Lastfiles));
287                         break;
288
289                 case md_charstyles:
290                         add(MenuItem(MenuItem::CharStyles));
291                         break;
292
293                 case md_documents:
294                         add(MenuItem(MenuItem::Documents));
295                         break;
296
297                 case md_toc:
298                         add(MenuItem(MenuItem::Toc));
299                         break;
300
301                 case md_viewformats:
302                         add(MenuItem(MenuItem::ViewFormats));
303                         break;
304
305                 case md_updateformats:
306                         add(MenuItem(MenuItem::UpdateFormats));
307                         break;
308
309                 case md_exportformats:
310                         add(MenuItem(MenuItem::ExportFormats));
311                         break;
312
313                 case md_importformats:
314                         add(MenuItem(MenuItem::ImportFormats));
315                         break;
316
317                 case md_floatlistinsert:
318                         add(MenuItem(MenuItem::FloatListInsert));
319                         break;
320
321                 case md_floatinsert:
322                         add(MenuItem(MenuItem::FloatInsert));
323                         break;
324
325                 case md_pasterecent:
326                         add(MenuItem(MenuItem::PasteRecent));
327                         break;
328
329                 case md_branches:
330                         add(MenuItem(MenuItem::Branches));
331                         break;
332
333                 case md_optsubmenu:
334                         optional = true;
335                         // fallback to md_submenu
336                 case md_submenu: {
337                         lex.next(true);
338                         string const mlabel = _(lex.getString());
339                         lex.next(true);
340                         string const mname = lex.getString();
341                         add(MenuItem(MenuItem::Submenu, mlabel, mname,
342                                      optional));
343                         optional = false;
344                         break;
345                 }
346
347                 case md_endmenu:
348                         quit = true;
349                         break;
350
351                 default:
352                         lex.printError("Menu::read: "
353                                        "Unknown menu tag: `$$Token'");
354                         break;
355                 }
356         }
357         lex.popTable();
358         return *this;
359 }
360
361
362 MenuItem const & Menu::operator[](size_type i) const
363 {
364         return items_[i];
365 }
366
367
368 bool Menu::hasFunc(FuncRequest const & func) const
369 {
370         return find_if(begin(), end(),
371                        bind(std::equal_to<FuncRequest>(),
372                             bind(&MenuItem::func, _1),
373                             func)) != end();
374 }
375
376 void Menu::checkShortcuts() const
377 {
378         // This is a quadratic algorithm, but we do not care because
379         // menus are short enough
380         for (const_iterator it1 = begin(); it1 != end(); ++it1) {
381                 string shortcut = it1->shortcut();
382                 if (shortcut.empty())
383                         continue;
384                 if (!contains(it1->label(), shortcut))
385                         lyxerr << "Menu warning: menu entry \""
386                                << it1->label()
387                                << "\" does not contain shortcut `"
388                                << shortcut << "'." << endl;
389                 for (const_iterator it2 = begin(); it2 != it1 ; ++it2) {
390                         if (!compare_ascii_no_case(it2->shortcut(), shortcut)) {
391                                 lyxerr << "Menu warning: menu entries "
392                                        << '"' << it1->fulllabel()
393                                        << "\" and \"" << it2->fulllabel()
394                                        << "\" share the same shortcut."
395                                        << endl;
396                         }
397                 }
398         }
399 }
400
401
402 void MenuBackend::specialMenu(string const &name)
403 {
404         if (hasMenu(name))
405                 specialmenu_ = &getMenu(name);
406 }
407
408
409 namespace {
410
411 class compare_format {
412 public:
413         bool operator()(Format const * p1, Format const * p2) {
414                 return *p1 < *p2;
415         }
416 };
417
418 string const limit_string_length(string const & str)
419 {
420         string::size_type const max_item_length = 45;
421
422         if (str.size() > max_item_length)
423                 return str.substr(0, max_item_length - 3) + "...";
424         else
425                 return str;
426 }
427
428
429 void expandLastfiles(Menu & tomenu, LyXView const * view)
430 {
431         LastFiles const & lastfiles = LyX::cref().lastfiles();
432
433         int ii = 1;
434         LastFiles::const_iterator lfit = lastfiles.begin();
435         LastFiles::const_iterator end = lastfiles.end();
436
437         for (; lfit != end && ii < 10; ++lfit, ++ii) {
438                 string const label = convert<string>(ii) + ". "
439                         + MakeDisplayPath((*lfit), 30)
440                         + '|' + convert<string>(ii);
441                 tomenu.add(MenuItem(MenuItem::Command, label, FuncRequest(LFUN_FILE_OPEN, (*lfit))), view);
442         }
443 }
444
445
446 void expandDocuments(Menu & tomenu, LyXView const * view)
447 {
448         typedef vector<string> Strings;
449         Strings const names = bufferlist.getFileNames();
450
451         if (names.empty()) {
452                 tomenu.add(MenuItem(MenuItem::Command, _("No Documents Open!"),
453                                     FuncRequest(LFUN_NOACTION)), view);
454                 return;
455         }
456
457         int ii = 1;
458         Strings::const_iterator docit = names.begin();
459         Strings::const_iterator end = names.end();
460         for (; docit != end; ++docit, ++ii) {
461                 string label = MakeDisplayPath(*docit, 20);
462                 if (ii < 10)
463                         label = convert<string>(ii) + ". " + label + '|' + convert<string>(ii);
464                 tomenu.add(MenuItem(MenuItem::Command, label, FuncRequest(LFUN_SWITCHBUFFER, *docit)), view);
465         }
466 }
467
468
469 void expandFormats(MenuItem::Kind kind, Menu & tomenu, LyXView const * view)
470 {
471         if (!view->buffer() && kind != MenuItem::ImportFormats) {
472                 tomenu.add(MenuItem(MenuItem::Command,
473                                     _("No Documents Open!"),
474                                     FuncRequest(LFUN_NOACTION)),
475                                     view);
476                 return;
477         }
478
479         typedef vector<Format const *> Formats;
480         Formats formats;
481         kb_action action;
482
483         switch (kind) {
484         case MenuItem::ImportFormats:
485                 formats = Importer::GetImportableFormats();
486                 action = LFUN_IMPORT;
487                 break;
488         case MenuItem::ViewFormats:
489                 formats = Exporter::GetExportableFormats(*view->buffer(), true);
490                 action = LFUN_PREVIEW;
491                 break;
492         case MenuItem::UpdateFormats:
493                 formats = Exporter::GetExportableFormats(*view->buffer(), true);
494                 action = LFUN_UPDATE;
495                 break;
496         default:
497                 formats = Exporter::GetExportableFormats(*view->buffer(), false);
498                 action = LFUN_EXPORT;
499         }
500         sort(formats.begin(), formats.end(), compare_format());
501
502         Formats::const_iterator fit = formats.begin();
503         Formats::const_iterator end = formats.end();
504         for (; fit != end ; ++fit) {
505                 if ((*fit)->dummy())
506                         continue;
507                 string label = (*fit)->prettyname();
508                 // we need to hide the default graphic export formats
509                 // from the external menu, because we need them only
510                 // for the internal lyx-view and external latex run
511                 if (label == "EPS" || label == "XPM" || label == "PNG")
512                         continue;
513
514                 if (kind == MenuItem::ImportFormats) {
515                         if ((*fit)->name() == "text")
516                                 label = _("Plain Text as Lines");
517                         else if ((*fit)->name() == "textparagraph")
518                                 label = _("Plain Text as Paragraphs");
519                         label += "...";
520                 } else if (kind == MenuItem::ExportFormats) {
521                         // exporting to LyX does not make sense
522                         // FIXME: Introduce noexport flag
523                         if ((*fit)->name() == "lyx")
524                                 continue;
525                 }
526                 if (!(*fit)->shortcut().empty())
527                         label += '|' + (*fit)->shortcut();
528
529                 tomenu.add(MenuItem(MenuItem::Command, label,
530                                     FuncRequest(action, (*fit)->name())),
531                            view);
532         }
533 }
534
535
536 void expandFloatListInsert(Menu & tomenu, LyXView const * view)
537 {
538         if (!view->buffer()) {
539                 tomenu.add(MenuItem(MenuItem::Command,
540                                     _("No Documents Open!"),
541                                     FuncRequest(LFUN_NOACTION)),
542                            view);
543                 return;
544         }
545
546         FloatList const & floats =
547                 view->buffer()->params().getLyXTextClass().floats();
548         FloatList::const_iterator cit = floats.begin();
549         FloatList::const_iterator end = floats.end();
550         for (; cit != end; ++cit) {
551                 tomenu.add(MenuItem(MenuItem::Command,
552                                     _(cit->second.listName()),
553                                     FuncRequest(LFUN_FLOAT_LIST,
554                                                 cit->second.type())),
555                            view);
556         }
557 }
558
559
560 void expandFloatInsert(Menu & tomenu, LyXView const * view)
561 {
562         if (!view->buffer()) {
563                 tomenu.add(MenuItem(MenuItem::Command,
564                                     _("No Documents Open!"),
565                                     FuncRequest(LFUN_NOACTION)),
566                            view);
567                 return;
568         }
569
570         FloatList const & floats =
571                 view->buffer()->params().getLyXTextClass().floats();
572         FloatList::const_iterator cit = floats.begin();
573         FloatList::const_iterator end = floats.end();
574         for (; cit != end; ++cit) {
575                 // normal float
576                 string const label = _(cit->second.name());
577                 tomenu.add(MenuItem(MenuItem::Command, label,
578                                     FuncRequest(LFUN_INSET_FLOAT,
579                                                 cit->second.type())),
580                            view);
581         }
582 }
583
584
585 void expandCharStyleInsert(Menu & tomenu, LyXView const * view)
586 {
587         if (!view->buffer()) {
588                 tomenu.add(MenuItem(MenuItem::Command,
589                                     _("No Documents Open!"),
590                                     FuncRequest(LFUN_NOACTION)),
591                            view);
592                 return;
593         }
594         CharStyles & charstyles =
595                 view->buffer()->params().getLyXTextClass().charstyles();
596         CharStyles::iterator cit = charstyles.begin();
597         CharStyles::iterator end = charstyles.end();
598         for (; cit != end; ++cit) {
599                 string const label = cit->name;
600                 tomenu.add(MenuItem(MenuItem::Command, label,
601                                     FuncRequest(LFUN_INSERT_CHARSTYLE,
602                                                 cit->name)), view);
603         }
604 }
605
606
607 Menu::size_type const max_number_of_items = 25;
608
609 void expandToc2(Menu & tomenu,
610                 lyx::toc::Toc const & toc_list,
611                 lyx::toc::Toc::size_type from,
612                 lyx::toc::Toc::size_type to, int depth)
613 {
614         int shortcut_count = 0;
615
616         // check whether depth is smaller than the smallest depth in toc.
617         int min_depth = 1000;
618         for (lyx::toc::Toc::size_type i = from; i < to; ++i)
619                 min_depth = std::min(min_depth, toc_list[i].depth);
620         if (min_depth > depth)
621                 depth = min_depth;
622
623
624         if (to - from <= max_number_of_items) {
625                 for (lyx::toc::Toc::size_type i = from; i < to; ++i) {
626                         string label(4 * max(0, toc_list[i].depth - depth),' ');
627                         label += limit_string_length(toc_list[i].str);
628                         if (toc_list[i].depth == depth
629                             && shortcut_count < 9) {
630                                 if (label.find(convert<string>(shortcut_count + 1)) != string::npos)
631                                         label += '|' + convert<string>(++shortcut_count);
632                         }
633                         tomenu.add(MenuItem(MenuItem::Command, label,
634                                             FuncRequest(toc_list[i].action())));
635                 }
636         } else {
637                 lyx::toc::Toc::size_type pos = from;
638                 while (pos < to) {
639                         lyx::toc::Toc::size_type new_pos = pos + 1;
640                         while (new_pos < to &&
641                                toc_list[new_pos].depth > depth)
642                                 ++new_pos;
643
644                         string label(4 * max(0, toc_list[pos].depth - depth), ' ');
645                         label += limit_string_length(toc_list[pos].str);
646                         if (toc_list[pos].depth == depth &&
647                             shortcut_count < 9) {
648                                 if (label.find(convert<string>(shortcut_count + 1)) != string::npos)
649                                         label += '|' + convert<string>(++shortcut_count);
650                                 }
651                         if (new_pos == pos + 1) {
652                                 tomenu.add(MenuItem(MenuItem::Command,
653                                                     label, FuncRequest(toc_list[pos].action())));
654                         } else {
655                                 MenuItem item(MenuItem::Submenu, label);
656                                 item.submenu(new Menu);
657                                 expandToc2(*item.submenu(),
658                                            toc_list, pos, new_pos, depth + 1);
659                                 tomenu.add(item);
660                         }
661                         pos = new_pos;
662                 }
663         }
664 }
665
666
667 void expandToc(Menu & tomenu, LyXView const * view)
668 {
669         // To make things very cleanly, we would have to pass view to
670         // all MenuItem constructors and to expandToc2. However, we
671         // know that all the entries in a TOC will be have status_ ==
672         // OK, so we avoid this unnecessary overhead (JMarc)
673
674
675         Buffer const * buf = view->buffer();
676         if (!buf) {
677                 tomenu.add(MenuItem(MenuItem::Command,
678                                     _("No Documents Open!"),
679                                     FuncRequest(LFUN_NOACTION)),
680                            view);
681                 return;
682         }
683
684         FloatList const & floatlist = buf->params().getLyXTextClass().floats();
685         lyx::toc::TocList toc_list = lyx::toc::getTocList(*buf);
686         lyx::toc::TocList::const_iterator cit = toc_list.begin();
687         lyx::toc::TocList::const_iterator end = toc_list.end();
688         for (; cit != end; ++cit) {
689                 // Handle this later
690                 if (cit->first == "TOC")
691                         continue;
692
693                 // All the rest is for floats
694                 auto_ptr<Menu> menu(new Menu);
695                 lyx::toc::Toc::const_iterator ccit = cit->second.begin();
696                 lyx::toc::Toc::const_iterator eend = cit->second.end();
697                 for (; ccit != eend; ++ccit) {
698                         string const label = limit_string_length(ccit->str);
699                         menu->add(MenuItem(MenuItem::Command,
700                                            label,
701                                            FuncRequest(ccit->action())));
702                 }
703                 string const & floatName = floatlist.getType(cit->first).listName();
704                 MenuItem item(MenuItem::Submenu, _(floatName));
705                 item.submenu(menu.release());
706                 tomenu.add(item);
707         }
708
709         // Handle normal TOC
710         cit = toc_list.find("TOC");
711         if (cit == end) {
712                 tomenu.add(MenuItem(MenuItem::Command,
713                                     _("No Table of contents"),
714                                     FuncRequest()),
715                            view);
716         } else {
717                 expandToc2(tomenu, cit->second, 0, cit->second.size(), 0);
718         }
719 }
720
721
722 void expandPasteRecent(Menu & tomenu, LyXView const * view)
723 {
724         if (!view || !view->buffer())
725                 return;
726
727         vector<string> const sel =
728                 lyx::cap::availableSelections(*view->buffer());
729
730         vector<string>::const_iterator cit = sel.begin();
731         vector<string>::const_iterator end = sel.end();
732
733         for (unsigned int index = 0; cit != end; ++cit, ++index) {
734                 tomenu.add(MenuItem(MenuItem::Command, *cit,
735                                     FuncRequest(LFUN_PASTE, convert<string>(index))));
736         }
737 }
738
739
740 void expandBranches(Menu & tomenu, LyXView const * view)
741 {
742         if (!view || !view->buffer())
743                 return;
744
745         BufferParams const & params = view->buffer()->getMasterBuffer()->params();
746
747         BranchList::const_iterator cit = params.branchlist().begin();
748         BranchList::const_iterator end = params.branchlist().end();
749
750         for (int ii = 1; cit != end; ++cit, ++ii) {
751                 string label = cit->getBranch();
752                 if (ii < 10)
753                         label = convert<string>(ii) + ". " + label + "|" + convert<string>(ii);
754                 tomenu.add(MenuItem(MenuItem::Command, label,
755                                     FuncRequest(LFUN_INSERT_BRANCH,
756                                                 cit->getBranch())), view);
757         }
758 }
759
760
761 } // namespace anon
762
763
764 void MenuBackend::expand(Menu const & frommenu, Menu & tomenu,
765                          LyXView const * view) const
766 {
767         if (!tomenu.empty())
768                 tomenu.clear();
769
770         for (Menu::const_iterator cit = frommenu.begin();
771              cit != frommenu.end() ; ++cit) {
772                 switch (cit->kind()) {
773                 case MenuItem::Lastfiles:
774                         expandLastfiles(tomenu, view);
775                         break;
776
777                 case MenuItem::Documents:
778                         expandDocuments(tomenu, view);
779                         break;
780
781                 case MenuItem::ImportFormats:
782                 case MenuItem::ViewFormats:
783                 case MenuItem::UpdateFormats:
784                 case MenuItem::ExportFormats:
785                         expandFormats(cit->kind(), tomenu, view);
786                         break;
787
788                 case MenuItem::CharStyles:
789                         expandCharStyleInsert(tomenu, view);
790                         break;
791
792                 case MenuItem::FloatListInsert:
793                         expandFloatListInsert(tomenu, view);
794                         break;
795
796                 case MenuItem::FloatInsert:
797                         expandFloatInsert(tomenu, view);
798                         break;
799
800                 case MenuItem::PasteRecent:
801                         expandPasteRecent(tomenu, view);
802                         break;
803
804                 case MenuItem::Branches:
805                         expandBranches(tomenu, view);
806                         break;
807
808                 case MenuItem::Toc:
809                         expandToc(tomenu, view);
810                         break;
811
812                 case MenuItem::Submenu: {
813                         MenuItem item(*cit);
814                         item.submenu(new Menu(cit->submenuname()));
815                         expand(getMenu(cit->submenuname()),
816                                *item.submenu(), view);
817                         tomenu.add(item, view);
818                 }
819                 break;
820
821                 case MenuItem::Separator:
822                         tomenu.add(*cit, view);
823                         break;
824
825                 case MenuItem::Command:
826                         if (!specialmenu_
827                             || !specialmenu_->hasFunc(cit->func()))
828                                 tomenu.add(*cit, view);
829                 }
830         }
831
832         // we do not want the menu to end with a separator
833         if (!tomenu.empty()
834             && tomenu.items_.back().kind() == MenuItem::Separator)
835                 tomenu.items_.pop_back();
836
837         // Check whether the shortcuts are unique
838         tomenu.checkShortcuts();
839 }
840
841
842 void MenuBackend::read(LyXLex & lex)
843 {
844         enum Menutags {
845                 md_menu = 1,
846                 md_menubar,
847                 md_endmenuset,
848                 md_last
849         };
850
851         struct keyword_item menutags[md_last - 1] = {
852                 { "end", md_endmenuset },
853                 { "menu", md_menu },
854                 { "menubar", md_menubar }
855         };
856
857         //consistency check
858         if (compare_ascii_no_case(lex.getString(), "menuset")) {
859                 lyxerr << "Menubackend::read: ERROR wrong token:`"
860                        << lex.getString() << '\'' << endl;
861         }
862
863         lex.pushTable(menutags, md_last - 1);
864         if (lyxerr.debugging(Debug::PARSER))
865                 lex.printTable(lyxerr);
866
867         bool quit = false;
868
869         while (lex.isOK() && !quit) {
870                 switch (lex.lex()) {
871                 case md_menubar:
872                         menubar_.read(lex);
873                         break;
874                 case md_menu: {
875                         lex.next(true);
876                         string const name = lex.getString();
877                         if (hasMenu(name)) {
878                                 getMenu(name).read(lex);
879                         } else {
880                                 Menu menu(name);
881                                 menu.read(lex);
882                                 add(menu);
883                         }
884                         break;
885                 }
886                 case md_endmenuset:
887                         quit = true;
888                         break;
889                 default:
890                         lex.printError("menubackend::read: "
891                                        "Unknown menu tag: `$$Token'");
892                         break;
893                 }
894         }
895         lex.popTable();
896 }
897
898
899 void MenuBackend::add(Menu const & menu)
900 {
901         menulist_.push_back(menu);
902 }
903
904
905 bool MenuBackend::hasMenu(string const & name) const
906 {
907         return find_if(begin(), end(), MenuNamesEqual(name)) != end();
908 }
909
910
911 Menu const & MenuBackend::getMenu(string const & name) const
912 {
913         const_iterator cit = find_if(begin(), end(), MenuNamesEqual(name));
914         if (cit == end())
915                 lyxerr << "No submenu named " << name << endl;
916         BOOST_ASSERT(cit != end());
917         return (*cit);
918 }
919
920
921 Menu & MenuBackend::getMenu(string const & name)
922 {
923         iterator it = find_if(begin(), end(), MenuNamesEqual(name));
924         if (it == end())
925                 lyxerr << "No submenu named " << name << endl;
926         BOOST_ASSERT(it != end());
927         return (*it);
928 }
929
930
931 Menu const & MenuBackend::getMenubar() const
932 {
933         return menubar_;
934 }