]> git.lyx.org Git - lyx.git/blob - src/MenuBackend.cpp
Rename .C ==> .cpp for files in src/
[lyx.git] / src / MenuBackend.cpp
1 /**
2  * \file MenuBackend.cpp
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 "kb_keymap.h"
33 #include "Session.h"
34 #include "LyXAction.h"
35 #include "LyX.h" // for lastfiles
36 #include "LyXFunc.h"
37 #include "LyXLex.h"
38 #include "Paragraph.h"
39 #include "TocBackend.h"
40 #include "ToolbarBackend.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
51 namespace lyx {
52
53 using support::compare_ascii_no_case;
54 using support::contains;
55 using support::makeDisplayPath;
56 using support::token;
57
58 using boost::bind;
59
60 using std::auto_ptr;
61 using std::endl;
62 using std::equal_to;
63 using std::find_if;
64 using std::max;
65 using std::sort;
66 using std::string;
67 using std::vector;
68
69
70 namespace {
71
72 class MenuNamesEqual : public std::unary_function<Menu, bool> {
73 public:
74         MenuNamesEqual(docstring const & name)
75                 : name_(name) {}
76         bool operator()(Menu const & menu) const
77         {
78                 return menu.name() == name_;
79         }
80 private:
81         docstring 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, docstring const & label,
97                    docstring 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, docstring const & label,
106                    FuncRequest const & func, bool optional)
107         : kind_(kind), label_(label), func_(func), optional_(optional)
108 {
109         func_.origin = FuncRequest::MENU;
110 }
111
112
113 MenuItem::~MenuItem()
114 {}
115
116
117 void MenuItem::submenu(Menu * menu)
118 {
119         submenu_.reset(menu);
120 }
121
122
123 docstring const MenuItem::label() const
124 {
125         return token(label_, char_type('|'), 0);
126 }
127
128
129 docstring const MenuItem::shortcut() const
130 {
131         return token(label_, char_type('|'), 1);
132 }
133
134
135 docstring const MenuItem::binding(bool forgui) const
136 {
137         if (kind_ != Command)
138                 return docstring();
139
140         // Get the keys bound to this action, but keep only the
141         // first one later
142         kb_keymap::Bindings bindings = theTopLevelKeymap().findbindings(func_);
143
144         if (bindings.size()) {
145                 return bindings.begin()->print(forgui);
146         } else {
147                 LYXERR(Debug::KBMAP)
148                         << "No binding for "
149                         << lyxaction.getActionName(func_.action)
150                         << '(' << to_utf8(func_.argument()) << ')' << endl;
151                 return docstring();
152         }
153
154 }
155
156
157 Menu & Menu::add(MenuItem const & i)
158 {
159         items_.push_back(i);
160         return *this;
161 }
162
163
164 Menu & Menu::addWithStatusCheck(MenuItem const & i)
165 {
166         switch (i.kind()) {
167
168         case MenuItem::Command: {
169                 FuncStatus status = lyx::getStatus(i.func());
170                 if (status.unknown() || (!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_bookmarks,
220                 md_charstyles,
221                 md_endmenu,
222                 md_exportformats,
223                 md_importformats,
224                 md_lastfiles,
225                 md_optitem,
226                 md_optsubmenu,
227                 md_separator,
228                 md_submenu,
229                 md_toc,
230                 md_updateformats,
231                 md_viewformats,
232                 md_floatlistinsert,
233                 md_floatinsert,
234                 md_pasterecent,
235                 md_toolbars,
236                 md_last
237         };
238
239         struct keyword_item menutags[md_last - 1] = {
240                 { "bookmarks", md_bookmarks },
241                 { "branches", md_branches },
242                 { "charstyles", md_charstyles },
243                 { "documents", md_documents },
244                 { "end", md_endmenu },
245                 { "exportformats", md_exportformats },
246                 { "floatinsert", md_floatinsert },
247                 { "floatlistinsert", md_floatlistinsert },
248                 { "importformats", md_importformats },
249                 { "item", md_item },
250                 { "lastfiles", md_lastfiles },
251                 { "optitem", md_optitem },
252                 { "optsubmenu", md_optsubmenu },
253                 { "pasterecent", md_pasterecent },
254                 { "separator", md_separator },
255                 { "submenu", md_submenu },
256                 { "toc", md_toc },
257                 { "toolbars", md_toolbars },
258                 { "updateformats", md_updateformats },
259                 { "viewformats", md_viewformats }
260         };
261
262         lex.pushTable(menutags, md_last - 1);
263         if (lyxerr.debugging(Debug::PARSER))
264                 lex.printTable(lyxerr);
265
266         bool quit = false;
267         bool optional = false;
268
269         while (lex.isOK() && !quit) {
270                 switch (lex.lex()) {
271                 case md_optitem:
272                         optional = true;
273                         // fallback to md_item
274                 case md_item: {
275                         lex.next(true);
276                         docstring const name = translateIfPossible(lex.getDocString());
277                         lex.next(true);
278                         string const command = lex.getString();
279                         FuncRequest func = lyxaction.lookupFunc(command);
280                         add(MenuItem(MenuItem::Command, name, func, optional));
281                         optional = false;
282                         break;
283                 }
284
285                 case md_separator:
286                         add(MenuItem(MenuItem::Separator));
287                         break;
288
289                 case md_lastfiles:
290                         add(MenuItem(MenuItem::Lastfiles));
291                         break;
292
293                 case md_charstyles:
294                         add(MenuItem(MenuItem::CharStyles));
295                         break;
296
297                 case md_documents:
298                         add(MenuItem(MenuItem::Documents));
299                         break;
300
301                 case md_bookmarks:
302                         add(MenuItem(MenuItem::Bookmarks));
303                         break;
304
305                 case md_toc:
306                         add(MenuItem(MenuItem::Toc));
307                         break;
308
309                 case md_viewformats:
310                         add(MenuItem(MenuItem::ViewFormats));
311                         break;
312
313                 case md_updateformats:
314                         add(MenuItem(MenuItem::UpdateFormats));
315                         break;
316
317                 case md_exportformats:
318                         add(MenuItem(MenuItem::ExportFormats));
319                         break;
320
321                 case md_importformats:
322                         add(MenuItem(MenuItem::ImportFormats));
323                         break;
324
325                 case md_floatlistinsert:
326                         add(MenuItem(MenuItem::FloatListInsert));
327                         break;
328
329                 case md_floatinsert:
330                         add(MenuItem(MenuItem::FloatInsert));
331                         break;
332
333                 case md_pasterecent:
334                         add(MenuItem(MenuItem::PasteRecent));
335                         break;
336
337                 case md_toolbars:
338                         add(MenuItem(MenuItem::Toolbars));
339                         break;
340
341                 case md_branches:
342                         add(MenuItem(MenuItem::Branches));
343                         break;
344
345                 case md_optsubmenu:
346                         optional = true;
347                         // fallback to md_submenu
348                 case md_submenu: {
349                         lex.next(true);
350                         docstring const mlabel = translateIfPossible(lex.getDocString());
351                         lex.next(true);
352                         docstring const mname = lex.getDocString();
353                         add(MenuItem(MenuItem::Submenu, mlabel, mname,
354                                      optional));
355                         optional = false;
356                         break;
357                 }
358
359                 case md_endmenu:
360                         quit = true;
361                         break;
362
363                 default:
364                         lex.printError("Menu::read: "
365                                        "Unknown menu tag: `$$Token'");
366                         break;
367                 }
368         }
369         lex.popTable();
370         return *this;
371 }
372
373
374 MenuItem const & Menu::operator[](size_type i) const
375 {
376         return items_[i];
377 }
378
379
380 bool Menu::hasFunc(FuncRequest const & func) const
381 {
382         return find_if(begin(), end(),
383                        bind(std::equal_to<FuncRequest>(),
384                             bind(&MenuItem::func, _1),
385                             func)) != end();
386 }
387
388 void Menu::checkShortcuts() const
389 {
390         // This is a quadratic algorithm, but we do not care because
391         // menus are short enough
392         for (const_iterator it1 = begin(); it1 != end(); ++it1) {
393                 docstring shortcut = it1->shortcut();
394                 if (shortcut.empty())
395                         continue;
396                 if (!contains(it1->label(), shortcut))
397                         lyxerr << "Menu warning: menu entry \""
398                                << to_utf8(it1->label())
399                                << "\" does not contain shortcut `"
400                                << to_utf8(shortcut) << "'." << endl;
401                 for (const_iterator it2 = begin(); it2 != it1 ; ++it2) {
402                         if (!compare_ascii_no_case(it2->shortcut(), shortcut)) {
403                                 lyxerr << "Menu warning: menu entries "
404                                        << '"' << to_utf8(it1->fulllabel())
405                                        << "\" and \"" << to_utf8(it2->fulllabel())
406                                        << "\" share the same shortcut."
407                                        << endl;
408                         }
409                 }
410         }
411 }
412
413
414 void MenuBackend::specialMenu(Menu const & menu)
415 {
416         specialmenu_ = menu;
417 }
418
419
420 namespace {
421
422 class compare_format {
423 public:
424         bool operator()(Format const * p1, Format const * p2) {
425                 return *p1 < *p2;
426         }
427 };
428
429 docstring const limit_string_length(docstring const & str)
430 {
431         docstring::size_type const max_item_length = 45;
432
433         if (str.size() > max_item_length)
434                 return str.substr(0, max_item_length - 3) + "...";
435         else
436                 return str;
437 }
438
439
440 void expandLastfiles(Menu & tomenu)
441 {
442         lyx::LastFilesSection::LastFiles const & lf = LyX::cref().session().lastFiles().lastFiles();
443         lyx::LastFilesSection::LastFiles::const_iterator lfit = lf.begin();
444
445         int ii = 1;
446
447         for (; lfit != lf.end() && ii < 10; ++lfit, ++ii) {
448                 string const file = lfit->absFilename();
449                 docstring const label = convert<docstring>(ii) + ". "
450                         + makeDisplayPath(file, 30)
451                         + char_type('|') + convert<docstring>(ii);
452                 tomenu.add(MenuItem(MenuItem::Command, label, FuncRequest(LFUN_FILE_OPEN, file)));
453         }
454 }
455
456
457 void expandDocuments(Menu & tomenu)
458 {
459         typedef vector<string> Strings;
460         Strings const names = theBufferList().getFileNames();
461
462         if (names.empty()) {
463                 tomenu.add(MenuItem(MenuItem::Command, _("No Documents Open!"),
464                                     FuncRequest(LFUN_NOACTION)));
465                 return;
466         }
467
468         int ii = 1;
469         Strings::const_iterator docit = names.begin();
470         Strings::const_iterator end = names.end();
471         for (; docit != end; ++docit, ++ii) {
472                 docstring label = makeDisplayPath(*docit, 20);
473                 if (ii < 10)
474                         label = convert<docstring>(ii) + ". " + label + char_type('|') + convert<docstring>(ii);
475                 tomenu.add(MenuItem(MenuItem::Command, label, FuncRequest(LFUN_BUFFER_SWITCH, *docit)));
476         }
477 }
478
479
480 void expandBookmarks(Menu & tomenu)
481 {
482         lyx::BookmarksSection const & bm = LyX::cref().session().bookmarks();
483
484         for (size_t i = 1; i <= bm.size(); ++i) {
485                 if (bm.isValid(i)) {
486                         docstring const label = convert<docstring>(i) + ". "
487                                 + makeDisplayPath(bm.bookmark(i).filename.absFilename(), 20)
488                                 + char_type('|') + convert<docstring>(i);
489                         tomenu.add(MenuItem(MenuItem::Command, label, FuncRequest(LFUN_BOOKMARK_GOTO, 
490                                 convert<docstring>(i))));
491                 }
492         }
493 }
494
495
496 void expandFormats(MenuItem::Kind kind, Menu & tomenu, Buffer const * buf)
497 {
498         if (!buf && kind != MenuItem::ImportFormats) {
499                 tomenu.add(MenuItem(MenuItem::Command,
500                                     _("No Documents Open!"),
501                                     FuncRequest(LFUN_NOACTION)));
502                 return;
503         }
504
505         typedef vector<Format const *> Formats;
506         Formats formats;
507         kb_action action;
508
509         switch (kind) {
510         case MenuItem::ImportFormats:
511                 formats = Importer::GetImportableFormats();
512                 action = LFUN_BUFFER_IMPORT;
513                 break;
514         case MenuItem::ViewFormats:
515                 formats = Exporter::getExportableFormats(*buf, true);
516                 action = LFUN_BUFFER_VIEW;
517                 break;
518         case MenuItem::UpdateFormats:
519                 formats = Exporter::getExportableFormats(*buf, true);
520                 action = LFUN_BUFFER_UPDATE;
521                 break;
522         default:
523                 formats = Exporter::getExportableFormats(*buf, false);
524                 action = LFUN_BUFFER_EXPORT;
525         }
526         sort(formats.begin(), formats.end(), compare_format());
527
528         Formats::const_iterator fit = formats.begin();
529         Formats::const_iterator end = formats.end();
530         for (; fit != end ; ++fit) {
531                 if ((*fit)->dummy())
532                         continue;
533                 docstring label = from_utf8((*fit)->prettyname());
534
535                 switch (kind) {
536                 case MenuItem::ImportFormats:
537                         // FIXME: This is a hack, we should rather solve
538                         // FIXME: bug 2488 instead.
539                         if ((*fit)->name() == "text")
540                                 label = _("Plain Text");
541                         else if ((*fit)->name() == "textparagraph")
542                                 label = _("Plain Text, Join Lines");
543                         label += "...";
544                         break;
545                 case MenuItem::ViewFormats:
546                 case MenuItem::ExportFormats:
547                 case MenuItem::UpdateFormats:
548                         if (!(*fit)->documentFormat())
549                                 continue;
550                         break;
551                 default:
552                         BOOST_ASSERT(false);
553                         break;
554                 }
555                 if (!(*fit)->shortcut().empty())
556                         label += char_type('|') + from_utf8((*fit)->shortcut());
557
558                 if (buf)
559                         tomenu.addWithStatusCheck(MenuItem(MenuItem::Command, label,
560                                 FuncRequest(action, (*fit)->name())));
561                 else
562                         tomenu.add(MenuItem(MenuItem::Command, label,
563                                 FuncRequest(action, (*fit)->name())));
564         }
565 }
566
567
568 void expandFloatListInsert(Menu & tomenu, Buffer const * buf)
569 {
570         if (!buf) {
571                 tomenu.add(MenuItem(MenuItem::Command,
572                                     _("No Documents Open!"),
573                                     FuncRequest(LFUN_NOACTION)));
574                 return;
575         }
576
577         FloatList const & floats =
578                 buf->params().getLyXTextClass().floats();
579         FloatList::const_iterator cit = floats.begin();
580         FloatList::const_iterator end = floats.end();
581         for (; cit != end; ++cit) {
582                 tomenu.addWithStatusCheck(MenuItem(MenuItem::Command,
583                                     _(cit->second.listName()),
584                                     FuncRequest(LFUN_FLOAT_LIST,
585                                                 cit->second.type())));
586         }
587 }
588
589
590 void expandFloatInsert(Menu & tomenu, Buffer const * buf)
591 {
592         if (!buf) {
593                 tomenu.add(MenuItem(MenuItem::Command,
594                                     _("No Documents Open!"),
595                                     FuncRequest(LFUN_NOACTION)));
596                 return;
597         }
598
599         FloatList const & floats =
600                 buf->params().getLyXTextClass().floats();
601         FloatList::const_iterator cit = floats.begin();
602         FloatList::const_iterator end = floats.end();
603         for (; cit != end; ++cit) {
604                 // normal float
605                 docstring const label = _(cit->second.name());
606                 tomenu.addWithStatusCheck(MenuItem(MenuItem::Command, label,
607                                     FuncRequest(LFUN_FLOAT_INSERT,
608                                                 cit->second.type())));
609         }
610 }
611
612
613 void expandCharStyleInsert(Menu & tomenu, Buffer const * buf)
614 {
615         if (!buf) {
616                 tomenu.add(MenuItem(MenuItem::Command,
617                                     _("No Documents Open!"),
618                                     FuncRequest(LFUN_NOACTION)));
619                 return;
620         }
621         CharStyles & charstyles =
622                 buf->params().getLyXTextClass().charstyles();
623         CharStyles::iterator cit = charstyles.begin();
624         CharStyles::iterator end = charstyles.end();
625         for (; cit != end; ++cit) {
626                 docstring const label = from_utf8(cit->name);
627                 tomenu.addWithStatusCheck(MenuItem(MenuItem::Command, label,
628                                     FuncRequest(LFUN_CHARSTYLE_INSERT,
629                                                 label)));
630         }
631 }
632
633
634 Menu::size_type const max_number_of_items = 25;
635
636 void expandToc2(Menu & tomenu,
637                 Toc const & toc_list,
638                 Toc::size_type from,
639                 Toc::size_type to, int depth)
640 {
641         int shortcut_count = 0;
642
643         // check whether depth is smaller than the smallest depth in toc.
644         int min_depth = 1000;
645         for (Toc::size_type i = from; i < to; ++i)
646                 min_depth = std::min(min_depth, toc_list[i].depth());
647         if (min_depth > depth)
648                 depth = min_depth;
649
650
651         if (to - from <= max_number_of_items) {
652                 for (Toc::size_type i = from; i < to; ++i) {
653                         docstring label(4 * max(0, toc_list[i].depth() - depth), char_type(' '));
654                         label += limit_string_length(toc_list[i].str());
655                         if (toc_list[i].depth() == depth
656                             && shortcut_count < 9) {
657                                 if (label.find(convert<docstring>(shortcut_count + 1)) != docstring::npos)
658                                         label += char_type('|') + convert<docstring>(++shortcut_count);
659                         }
660                         tomenu.add(MenuItem(MenuItem::Command, label,
661                                             FuncRequest(toc_list[i].action())));
662                 }
663         } else {
664                 Toc::size_type pos = from;
665                 while (pos < to) {
666                         Toc::size_type new_pos = pos + 1;
667                         while (new_pos < to &&
668                                toc_list[new_pos].depth() > depth)
669                                 ++new_pos;
670
671                         docstring label(4 * max(0, toc_list[pos].depth() - depth), ' ');
672                         label += limit_string_length(toc_list[pos].str());
673                         if (toc_list[pos].depth() == depth &&
674                             shortcut_count < 9) {
675                                 if (label.find(convert<docstring>(shortcut_count + 1)) != docstring::npos)
676                                         label += char_type('|') + convert<docstring>(++shortcut_count);
677                         }
678                         if (new_pos == pos + 1) {
679                                 tomenu.add(MenuItem(MenuItem::Command,
680                                                     label, FuncRequest(toc_list[pos].action())));
681                         } else {
682                                 MenuItem item(MenuItem::Submenu, label);
683                                 item.submenu(new Menu);
684                                 expandToc2(*item.submenu(),
685                                            toc_list, pos, new_pos, depth + 1);
686                                 tomenu.add(item);
687                         }
688                         pos = new_pos;
689                 }
690         }
691 }
692
693
694 void expandToc(Menu & tomenu, Buffer const * buf)
695 {
696         // To make things very cleanly, we would have to pass buf to
697         // all MenuItem constructors and to expandToc2. However, we
698         // know that all the entries in a TOC will be have status_ ==
699         // OK, so we avoid this unnecessary overhead (JMarc)
700
701         if (!buf) {
702                 tomenu.add(MenuItem(MenuItem::Command,
703                                     _("No Documents Open!"),
704                                     FuncRequest(LFUN_NOACTION)));
705                 return;
706         }
707
708         // Add an entry for the master doc if this is a child doc
709         Buffer const * const master = buf->getMasterBuffer();
710         if (buf != master) {
711                 ParIterator const pit = par_iterator_begin(master->inset());
712                 string const arg = convert<string>(pit->id());
713                 FuncRequest f(LFUN_PARAGRAPH_GOTO, arg);
714                 tomenu.add(MenuItem(MenuItem::Command, _("Master Document"), f));
715         }
716
717         FloatList const & floatlist = buf->params().getLyXTextClass().floats();
718         TocList const & toc_list = buf->tocBackend().tocs();
719         TocList::const_iterator cit = toc_list.begin();
720         TocList::const_iterator end = toc_list.end();
721         for (; cit != end; ++cit) {
722                 // Handle this later
723                 if (cit->first == "tableofcontents")
724                         continue;
725
726                 // All the rest is for floats
727                 auto_ptr<Menu> menu(new Menu);
728                 TocIterator ccit = cit->second.begin();
729                 TocIterator eend = cit->second.end();
730                 for (; ccit != eend; ++ccit) {
731                         docstring const label = limit_string_length(ccit->str());
732                         menu->add(MenuItem(MenuItem::Command,
733                                            label,
734                                            FuncRequest(ccit->action())));
735                 }
736                 string const & floatName = floatlist.getType(cit->first).listName();
737                 MenuItem item(MenuItem::Submenu, _(floatName));
738                 item.submenu(menu.release());
739                 tomenu.add(item);
740         }
741
742         // Handle normal TOC
743         cit = toc_list.find("tableofcontents");
744         if (cit == end) {
745                 tomenu.addWithStatusCheck(MenuItem(MenuItem::Command,
746                                     _("No Table of contents"),
747                                     FuncRequest()));
748         } else {
749                 expandToc2(tomenu, cit->second, 0, cit->second.size(), 0);
750         }
751 }
752
753
754 void expandPasteRecent(Menu & tomenu, Buffer const * buf)
755 {
756         if (!buf)
757                 return;
758
759         vector<docstring> const sel =
760                 cap::availableSelections(*buf);
761
762         vector<docstring>::const_iterator cit = sel.begin();
763         vector<docstring>::const_iterator end = sel.end();
764
765         for (unsigned int index = 0; cit != end; ++cit, ++index) {
766                 tomenu.add(MenuItem(MenuItem::Command, *cit,
767                                     FuncRequest(LFUN_PASTE, convert<string>(index))));
768         }
769 }
770
771
772 void expandToolbars(Menu & tomenu)
773 {
774         //
775         // extracts the toolbars from the backend
776         ToolbarBackend::Toolbars::const_iterator cit = toolbarbackend.begin();
777         ToolbarBackend::Toolbars::const_iterator end = toolbarbackend.end();
778
779         for (; cit != end; ++cit) {
780                 docstring label = _(cit->gui_name);
781                 // frontends are not supposed to turn on/off toolbars, if they cannot
782                 // update ToolbarBackend::flags. That is to say, ToolbarsBackend::flags
783                 // should reflect the true state of toolbars.
784                 // 
785                 // menu is displayed as 
786                 //       on/off review
787                 // and 
788                 //              review (auto)
789                 // in the case of auto.
790                 if (cit->flags & ToolbarInfo::AUTO)
791                         label += _(" (auto)");
792                 tomenu.add(MenuItem(MenuItem::Command, label,
793                                     FuncRequest(LFUN_TOOLBAR_TOGGLE_STATE, cit->name)));
794         }
795 }
796
797
798 void expandBranches(Menu & tomenu, Buffer const * buf)
799 {
800         if (!buf)
801                 return;
802
803         BufferParams const & params = buf->getMasterBuffer()->params();
804
805         BranchList::const_iterator cit = params.branchlist().begin();
806         BranchList::const_iterator end = params.branchlist().end();
807
808         for (int ii = 1; cit != end; ++cit, ++ii) {
809                 docstring label = cit->getBranch();
810                 if (ii < 10)
811                         label = convert<docstring>(ii) + ". " + label + char_type('|') + convert<docstring>(ii);
812                 tomenu.addWithStatusCheck(MenuItem(MenuItem::Command, label,
813                                     FuncRequest(LFUN_BRANCH_INSERT,
814                                                 cit->getBranch())));
815         }
816 }
817
818
819 } // namespace anon
820
821
822 void MenuBackend::expand(Menu const & frommenu, Menu & tomenu,
823                          Buffer const * buf) const
824 {
825         if (!tomenu.empty())
826                 tomenu.clear();
827
828         for (Menu::const_iterator cit = frommenu.begin();
829              cit != frommenu.end() ; ++cit) {
830                 switch (cit->kind()) {
831                 case MenuItem::Lastfiles:
832                         expandLastfiles(tomenu);
833                         break;
834
835                 case MenuItem::Documents:
836                         expandDocuments(tomenu);
837                         break;
838
839                 case MenuItem::Bookmarks:
840                         expandBookmarks(tomenu);
841                         break;
842
843                 case MenuItem::ImportFormats:
844                 case MenuItem::ViewFormats:
845                 case MenuItem::UpdateFormats:
846                 case MenuItem::ExportFormats:
847                         expandFormats(cit->kind(), tomenu, buf);
848                         break;
849
850                 case MenuItem::CharStyles:
851                         expandCharStyleInsert(tomenu, buf);
852                         break;
853
854                 case MenuItem::FloatListInsert:
855                         expandFloatListInsert(tomenu, buf);
856                         break;
857
858                 case MenuItem::FloatInsert:
859                         expandFloatInsert(tomenu, buf);
860                         break;
861
862                 case MenuItem::PasteRecent:
863                         expandPasteRecent(tomenu, buf);
864                         break;
865
866                 case MenuItem::Toolbars:
867                         expandToolbars(tomenu);
868                         break;
869
870                 case MenuItem::Branches:
871                         expandBranches(tomenu, buf);
872                         break;
873
874                 case MenuItem::Toc:
875                         expandToc(tomenu, buf);
876                         break;
877
878                 case MenuItem::Submenu: {
879                         MenuItem item(*cit);
880                         item.submenu(new Menu(cit->submenuname()));
881                         expand(getMenu(cit->submenuname()),
882                                *item.submenu(), buf);
883                         tomenu.addWithStatusCheck(item);
884                 }
885                 break;
886
887                 case MenuItem::Separator:
888                         tomenu.addWithStatusCheck(*cit);
889                         break;
890
891                 case MenuItem::Command:
892                         if (!specialmenu_.hasFunc(cit->func()))
893                                 tomenu.addWithStatusCheck(*cit);
894                 }
895         }
896
897         // we do not want the menu to end with a separator
898         if (!tomenu.empty()
899             && tomenu.items_.back().kind() == MenuItem::Separator)
900                 tomenu.items_.pop_back();
901
902         // Check whether the shortcuts are unique
903         tomenu.checkShortcuts();
904 }
905
906
907 void MenuBackend::read(LyXLex & lex)
908 {
909         enum Menutags {
910                 md_menu = 1,
911                 md_menubar,
912                 md_endmenuset,
913                 md_last
914         };
915
916         struct keyword_item menutags[md_last - 1] = {
917                 { "end", md_endmenuset },
918                 { "menu", md_menu },
919                 { "menubar", md_menubar }
920         };
921
922         //consistency check
923         if (compare_ascii_no_case(lex.getString(), "menuset")) {
924                 lyxerr << "Menubackend::read: ERROR wrong token:`"
925                        << lex.getString() << '\'' << endl;
926         }
927
928         lex.pushTable(menutags, md_last - 1);
929         if (lyxerr.debugging(Debug::PARSER))
930                 lex.printTable(lyxerr);
931
932         bool quit = false;
933
934         while (lex.isOK() && !quit) {
935                 switch (lex.lex()) {
936                 case md_menubar:
937                         menubar_.read(lex);
938                         break;
939                 case md_menu: {
940                         lex.next(true);
941                         docstring const name = lex.getDocString();
942                         if (hasMenu(name)) {
943                                 getMenu(name).read(lex);
944                         } else {
945                                 Menu menu(name);
946                                 menu.read(lex);
947                                 add(menu);
948                         }
949                         break;
950                 }
951                 case md_endmenuset:
952                         quit = true;
953                         break;
954                 default:
955                         lex.printError("menubackend::read: "
956                                        "Unknown menu tag: `$$Token'");
957                         break;
958                 }
959         }
960         lex.popTable();
961 }
962
963
964 void MenuBackend::add(Menu const & menu)
965 {
966         menulist_.push_back(menu);
967 }
968
969
970 bool MenuBackend::hasMenu(docstring const & name) const
971 {
972         return find_if(begin(), end(), MenuNamesEqual(name)) != end();
973 }
974
975
976 Menu const & MenuBackend::getMenu(docstring const & name) const
977 {
978         const_iterator cit = find_if(begin(), end(), MenuNamesEqual(name));
979         if (cit == end())
980                 lyxerr << "No submenu named " << to_utf8(name) << endl;
981         BOOST_ASSERT(cit != end());
982         return (*cit);
983 }
984
985
986 Menu & MenuBackend::getMenu(docstring const & name)
987 {
988         iterator it = find_if(begin(), end(), MenuNamesEqual(name));
989         if (it == end())
990                 lyxerr << "No submenu named " << to_utf8(name) << endl;
991         BOOST_ASSERT(it != end());
992         return (*it);
993 }
994
995
996 Menu const & MenuBackend::getMenubar() const
997 {
998         return menubar_;
999 }
1000
1001
1002 } // namespace lyx