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