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