]> git.lyx.org Git - lyx.git/blob - src/MenuBackend.cpp
adjust
[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 using std::stack;
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 bool Menu::searchFunc(FuncRequest & func, stack<docstring> & names)
427 {
428         const_iterator m = begin();
429         const_iterator m_end = end();
430         for (; m != m_end; ++m) {
431                 if (m->kind() == MenuItem::Command && m->func() == func) {
432                         names.push(m->label());
433                         return true;
434                 } else if (m->kind() == MenuItem::Submenu) {
435                         names.push(m->label());
436                         Menu submenu = menubackend.getMenu(m->submenuname());
437                         if (submenu.searchFunc(func, names))
438                                 return true;
439                         else
440                                 names.pop();
441                 }
442         }
443         return false;
444 }
445
446
447 void MenuBackend::specialMenu(Menu const & menu)
448 {
449         specialmenu_ = menu;
450 }
451
452
453 namespace {
454
455 class compare_format {
456 public:
457         bool operator()(Format const * p1, Format const * p2) {
458                 return *p1 < *p2;
459         }
460 };
461
462 docstring const limit_string_length(docstring const & str)
463 {
464         docstring::size_type const max_item_length = 45;
465
466         if (str.size() > max_item_length)
467                 return str.substr(0, max_item_length - 3) + "...";
468         else
469                 return str;
470 }
471
472
473 void expandLastfiles(Menu & tomenu)
474 {
475         lyx::LastFilesSection::LastFiles const & lf = LyX::cref().session().lastFiles().lastFiles();
476         lyx::LastFilesSection::LastFiles::const_iterator lfit = lf.begin();
477
478         int ii = 1;
479
480         for (; lfit != lf.end() && ii < 10; ++lfit, ++ii) {
481                 string const file = lfit->absFilename();
482                 docstring const label = convert<docstring>(ii) + ". "
483                         + makeDisplayPath(file, 30)
484                         + char_type('|') + convert<docstring>(ii);
485                 tomenu.add(MenuItem(MenuItem::Command, label, FuncRequest(LFUN_FILE_OPEN, file)));
486         }
487 }
488
489
490 void expandDocuments(Menu & tomenu)
491 {
492         Buffer * first = theBufferList().first();
493         if (first) {
494                 Buffer * b = first;
495                 int ii = 1;
496                 
497                 // We cannot use a for loop as the buffer list cycles.
498                 do {
499                         docstring label = makeDisplayPath(b->fileName(), 20);
500                         if (!b->isClean()) label = label + "*";
501                         if (ii < 10)
502                                 label = convert<docstring>(ii) + ". " + label + '|' + convert<docstring>(ii);
503                         tomenu.add(MenuItem(MenuItem::Command, label, FuncRequest(LFUN_BUFFER_SWITCH, b->fileName())));
504                         
505                         b = theBufferList().next(b);
506                         ++ii;
507                 } while (b != first); 
508         } else {
509                 tomenu.add(MenuItem(MenuItem::Command, _("No Documents Open!"),
510                            FuncRequest(LFUN_NOACTION)));
511                 return;
512         }
513 }
514
515
516 void expandBookmarks(Menu & tomenu)
517 {
518         lyx::BookmarksSection const & bm = LyX::cref().session().bookmarks();
519
520         for (size_t i = 1; i <= bm.size(); ++i) {
521                 if (bm.isValid(i)) {
522                         docstring const label = convert<docstring>(i) + ". "
523                                 + makeDisplayPath(bm.bookmark(i).filename.absFilename(), 20)
524                                 + char_type('|') + convert<docstring>(i);
525                         tomenu.add(MenuItem(MenuItem::Command, label, FuncRequest(LFUN_BOOKMARK_GOTO,
526                                 convert<docstring>(i))));
527                 }
528         }
529 }
530
531
532 void expandFormats(MenuItem::Kind kind, Menu & tomenu, Buffer const * buf)
533 {
534         if (!buf && kind != MenuItem::ImportFormats) {
535                 tomenu.add(MenuItem(MenuItem::Command,
536                                     _("No Document Open!"),
537                                     FuncRequest(LFUN_NOACTION)));
538                 return;
539         }
540
541         typedef vector<Format const *> Formats;
542         Formats formats;
543         kb_action action;
544
545         switch (kind) {
546         case MenuItem::ImportFormats:
547                 formats = Importer::GetImportableFormats();
548                 action = LFUN_BUFFER_IMPORT;
549                 break;
550         case MenuItem::ViewFormats:
551                 formats = Exporter::getExportableFormats(*buf, true);
552                 action = LFUN_BUFFER_VIEW;
553                 break;
554         case MenuItem::UpdateFormats:
555                 formats = Exporter::getExportableFormats(*buf, true);
556                 action = LFUN_BUFFER_UPDATE;
557                 break;
558         default:
559                 formats = Exporter::getExportableFormats(*buf, false);
560                 action = LFUN_BUFFER_EXPORT;
561         }
562         sort(formats.begin(), formats.end(), compare_format());
563
564         Formats::const_iterator fit = formats.begin();
565         Formats::const_iterator end = formats.end();
566         for (; fit != end ; ++fit) {
567                 if ((*fit)->dummy())
568                         continue;
569                 docstring label = from_utf8((*fit)->prettyname());
570
571                 switch (kind) {
572                 case MenuItem::ImportFormats:
573                         // FIXME: This is a hack, we should rather solve
574                         // FIXME: bug 2488 instead.
575                         if ((*fit)->name() == "text")
576                                 label = _("Plain Text");
577                         else if ((*fit)->name() == "textparagraph")
578                                 label = _("Plain Text, Join Lines");
579                         label += "...";
580                         break;
581                 case MenuItem::ViewFormats:
582                 case MenuItem::ExportFormats:
583                 case MenuItem::UpdateFormats:
584                         if (!(*fit)->documentFormat())
585                                 continue;
586                         break;
587                 default:
588                         BOOST_ASSERT(false);
589                         break;
590                 }
591                 if (!(*fit)->shortcut().empty())
592                         label += char_type('|') + from_utf8((*fit)->shortcut());
593
594                 if (buf)
595                         tomenu.addWithStatusCheck(MenuItem(MenuItem::Command, label,
596                                 FuncRequest(action, (*fit)->name())));
597                 else
598                         tomenu.add(MenuItem(MenuItem::Command, label,
599                                 FuncRequest(action, (*fit)->name())));
600         }
601 }
602
603
604 void expandFloatListInsert(Menu & tomenu, Buffer const * buf)
605 {
606         if (!buf) {
607                 tomenu.add(MenuItem(MenuItem::Command,
608                                     _("No Document Open!"),
609                                     FuncRequest(LFUN_NOACTION)));
610                 return;
611         }
612
613         FloatList const & floats =
614                 buf->params().getTextClass().floats();
615         FloatList::const_iterator cit = floats.begin();
616         FloatList::const_iterator end = floats.end();
617         for (; cit != end; ++cit) {
618                 tomenu.addWithStatusCheck(MenuItem(MenuItem::Command,
619                                     _(cit->second.listName()),
620                                     FuncRequest(LFUN_FLOAT_LIST,
621                                                 cit->second.type())));
622         }
623 }
624
625
626 void expandFloatInsert(Menu & tomenu, Buffer const * buf)
627 {
628         if (!buf) {
629                 tomenu.add(MenuItem(MenuItem::Command,
630                                     _("No Document Open!"),
631                                     FuncRequest(LFUN_NOACTION)));
632                 return;
633         }
634
635         FloatList const & floats =
636                 buf->params().getTextClass().floats();
637         FloatList::const_iterator cit = floats.begin();
638         FloatList::const_iterator end = floats.end();
639         for (; cit != end; ++cit) {
640                 // normal float
641                 docstring const label = _(cit->second.name());
642                 tomenu.addWithStatusCheck(MenuItem(MenuItem::Command, label,
643                                     FuncRequest(LFUN_FLOAT_INSERT,
644                                                 cit->second.type())));
645         }
646 }
647
648
649 void expandFlexInsert(Menu & tomenu, Buffer const * buf, std::string s)
650 {
651         if (!buf) {
652                 tomenu.add(MenuItem(MenuItem::Command,
653                                     _("No Document Open!"),
654                                     FuncRequest(LFUN_NOACTION)));
655                 return;
656         }
657         InsetLayouts const & insetlayouts =
658                 buf->params().getTextClass().insetlayouts();
659         InsetLayouts::const_iterator cit = insetlayouts.begin();
660         InsetLayouts::const_iterator end = insetlayouts.end();
661         for (; cit != end; ++cit) {
662                 docstring const label = cit->first;
663                 if (cit->second.lyxtype == s)
664                         tomenu.addWithStatusCheck(MenuItem(MenuItem::Command, 
665                                 label, FuncRequest(LFUN_FLEX_INSERT,
666                                                 label)));
667         }
668 }
669
670
671 Menu::size_type const max_number_of_items = 25;
672
673 void expandToc2(Menu & tomenu,
674                 Toc const & toc_list,
675                 Toc::size_type from,
676                 Toc::size_type to, int depth)
677 {
678         int shortcut_count = 0;
679
680         // check whether depth is smaller than the smallest depth in toc.
681         int min_depth = 1000;
682         for (Toc::size_type i = from; i < to; ++i)
683                 min_depth = std::min(min_depth, toc_list[i].depth());
684         if (min_depth > depth)
685                 depth = min_depth;
686
687
688         if (to - from <= max_number_of_items) {
689                 for (Toc::size_type i = from; i < to; ++i) {
690                         docstring label(4 * max(0, toc_list[i].depth() - depth), char_type(' '));
691                         label += limit_string_length(toc_list[i].str());
692                         if (toc_list[i].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                         tomenu.add(MenuItem(MenuItem::Command, label,
698                                             FuncRequest(toc_list[i].action())));
699                 }
700         } else {
701                 Toc::size_type pos = from;
702                 while (pos < to) {
703                         Toc::size_type new_pos = pos + 1;
704                         while (new_pos < to &&
705                                toc_list[new_pos].depth() > depth)
706                                 ++new_pos;
707
708                         docstring label(4 * max(0, toc_list[pos].depth() - depth), ' ');
709                         label += limit_string_length(toc_list[pos].str());
710                         if (toc_list[pos].depth() == depth &&
711                             shortcut_count < 9) {
712                                 if (label.find(convert<docstring>(shortcut_count + 1)) != docstring::npos)
713                                         label += char_type('|') + convert<docstring>(++shortcut_count);
714                         }
715                         if (new_pos == pos + 1) {
716                                 tomenu.add(MenuItem(MenuItem::Command,
717                                                     label, FuncRequest(toc_list[pos].action())));
718                         } else {
719                                 MenuItem item(MenuItem::Submenu, label);
720                                 item.submenu(new Menu);
721                                 expandToc2(*item.submenu(),
722                                            toc_list, pos, new_pos, depth + 1);
723                                 tomenu.add(item);
724                         }
725                         pos = new_pos;
726                 }
727         }
728 }
729
730
731 void expandToc(Menu & tomenu, Buffer const * buf)
732 {
733         // To make things very cleanly, we would have to pass buf to
734         // all MenuItem constructors and to expandToc2. However, we
735         // know that all the entries in a TOC will be have status_ ==
736         // OK, so we avoid this unnecessary overhead (JMarc)
737
738         if (!buf) {
739                 tomenu.add(MenuItem(MenuItem::Command,
740                                     _("No Document Open!"),
741                                     FuncRequest(LFUN_NOACTION)));
742                 return;
743         }
744
745         Buffer* cbuf = const_cast<Buffer*>(buf);
746         cbuf->tocBackend().update();
747         cbuf->structureChanged();
748
749         // Add an entry for the master doc if this is a child doc
750         Buffer const * const master = buf->getMasterBuffer();
751         if (buf != master) {
752                 ParIterator const pit = par_iterator_begin(master->inset());
753                 string const arg = convert<string>(pit->id());
754                 FuncRequest f(LFUN_PARAGRAPH_GOTO, arg);
755                 tomenu.add(MenuItem(MenuItem::Command, _("Master Document"), f));
756         }
757
758         FloatList const & floatlist = buf->params().getTextClass().floats();
759         TocList const & toc_list = buf->tocBackend().tocs();
760         TocList::const_iterator cit = toc_list.begin();
761         TocList::const_iterator end = toc_list.end();
762         for (; cit != end; ++cit) {
763                 // Handle this later
764                 if (cit->first == "tableofcontents")
765                         continue;
766
767                 // All the rest is for floats
768                 auto_ptr<Menu> menu(new Menu);
769                 TocIterator ccit = cit->second.begin();
770                 TocIterator eend = cit->second.end();
771                 for (; ccit != eend; ++ccit) {
772                         docstring const label = limit_string_length(ccit->str());
773                         menu->add(MenuItem(MenuItem::Command,
774                                            label,
775                                            FuncRequest(ccit->action())));
776                 }
777                 string const & floatName = floatlist.getType(cit->first).listName();
778                 docstring label;
779                 if (!floatName.empty())
780                         label = _(floatName);
781                 // BUG3633: listings is not a proper float so its name
782                 // is not shown in floatlist.
783                 else if (cit->first == "listing")
784                         label = _("List of listings");
785                 // this should not happen now, but if something else like
786                 // listings is added later, this can avoid an empty menu name.
787                 else
788                         label = _("Other floats");
789                 MenuItem item(MenuItem::Submenu, label);
790                 item.submenu(menu.release());
791                 tomenu.add(item);
792         }
793
794         // Handle normal TOC
795         cit = toc_list.find("tableofcontents");
796         if (cit == end) {
797                 tomenu.addWithStatusCheck(MenuItem(MenuItem::Command,
798                                     _("No Table of contents"),
799                                     FuncRequest()));
800         } else {
801                 expandToc2(tomenu, cit->second, 0, cit->second.size(), 0);
802         }
803 }
804
805
806 void expandPasteRecent(Menu & tomenu, Buffer const * buf)
807 {
808         if (!buf)
809                 return;
810
811         vector<docstring> const sel =
812                 cap::availableSelections(*buf);
813
814         vector<docstring>::const_iterator cit = sel.begin();
815         vector<docstring>::const_iterator end = sel.end();
816
817         for (unsigned int index = 0; cit != end; ++cit, ++index) {
818                 tomenu.add(MenuItem(MenuItem::Command, *cit,
819                                     FuncRequest(LFUN_PASTE, convert<string>(index))));
820         }
821 }
822
823
824 void expandToolbars(Menu & tomenu)
825 {
826         //
827         // extracts the toolbars from the backend
828         ToolbarBackend::Toolbars::const_iterator cit = toolbarbackend.begin();
829         ToolbarBackend::Toolbars::const_iterator end = toolbarbackend.end();
830
831         for (; cit != end; ++cit) {
832                 docstring label = _(cit->gui_name);
833                 // frontends are not supposed to turn on/off toolbars,
834                 // if they cannot update ToolbarBackend::flags. That
835                 // is to say, ToolbarsBackend::flags should reflect
836                 // the true state of toolbars.
837                 //
838                 // menu is displayed as
839                 //       on/off review
840                 // and
841                 //              review (auto)
842                 // in the case of auto.
843                 if (cit->flags & ToolbarInfo::AUTO)
844                         label += _(" (auto)");
845                 tomenu.add(MenuItem(MenuItem::Command, label,
846                                     FuncRequest(LFUN_TOOLBAR_TOGGLE, cit->name + " allowauto")));
847         }
848 }
849
850
851 void expandBranches(Menu & tomenu, Buffer const * buf)
852 {
853         if (!buf) {
854                 tomenu.add(MenuItem(MenuItem::Command,
855                                     _("No Document Open!"),
856                                     FuncRequest(LFUN_NOACTION)));
857                 return;
858         }
859
860         BufferParams const & params = buf->getMasterBuffer()->params();
861         if (params.branchlist().empty()) {
862                 tomenu.add(MenuItem(MenuItem::Command,
863                                     _("No Branch in Document!"),
864                                     FuncRequest(LFUN_NOACTION)));
865                 return;
866         }
867
868         BranchList::const_iterator cit = params.branchlist().begin();
869         BranchList::const_iterator end = params.branchlist().end();
870
871         for (int ii = 1; cit != end; ++cit, ++ii) {
872                 docstring label = cit->getBranch();
873                 if (ii < 10)
874                         label = convert<docstring>(ii) + ". " + label + char_type('|') + convert<docstring>(ii);
875                 tomenu.addWithStatusCheck(MenuItem(MenuItem::Command, label,
876                                     FuncRequest(LFUN_BRANCH_INSERT,
877                                                 cit->getBranch())));
878         }
879 }
880
881
882 } // namespace anon
883
884
885 void MenuBackend::expand(Menu const & frommenu, Menu & tomenu,
886                          Buffer const * buf) const
887 {
888         if (!tomenu.empty())
889                 tomenu.clear();
890
891         for (Menu::const_iterator cit = frommenu.begin();
892              cit != frommenu.end() ; ++cit) {
893                 switch (cit->kind()) {
894                 case MenuItem::Lastfiles:
895                         expandLastfiles(tomenu);
896                         break;
897
898                 case MenuItem::Documents:
899                         expandDocuments(tomenu);
900                         break;
901
902                 case MenuItem::Bookmarks:
903                         expandBookmarks(tomenu);
904                         break;
905
906                 case MenuItem::ImportFormats:
907                 case MenuItem::ViewFormats:
908                 case MenuItem::UpdateFormats:
909                 case MenuItem::ExportFormats:
910                         expandFormats(cit->kind(), tomenu, buf);
911                         break;
912
913                 case MenuItem::CharStyles:
914                         expandFlexInsert(tomenu, buf, "charstyle");
915                         break;
916
917                 case MenuItem::Custom:
918                         expandFlexInsert(tomenu, buf, "custom");
919                         break;
920
921                 case MenuItem::Elements:
922                         expandFlexInsert(tomenu, buf, "element");
923                         break;
924
925                 case MenuItem::FloatListInsert:
926                         expandFloatListInsert(tomenu, buf);
927                         break;
928
929                 case MenuItem::FloatInsert:
930                         expandFloatInsert(tomenu, buf);
931                         break;
932
933                 case MenuItem::PasteRecent:
934                         expandPasteRecent(tomenu, buf);
935                         break;
936
937                 case MenuItem::Toolbars:
938                         expandToolbars(tomenu);
939                         break;
940
941                 case MenuItem::Branches:
942                         expandBranches(tomenu, buf);
943                         break;
944
945                 case MenuItem::Toc:
946                         expandToc(tomenu, buf);
947                         break;
948
949                 case MenuItem::Submenu: {
950                         MenuItem item(*cit);
951                         item.submenu(new Menu(cit->submenuname()));
952                         expand(getMenu(cit->submenuname()),
953                                *item.submenu(), buf);
954                         tomenu.addWithStatusCheck(item);
955                 }
956                 break;
957
958                 case MenuItem::Separator:
959                         tomenu.addWithStatusCheck(*cit);
960                         break;
961
962                 case MenuItem::Command:
963                         if (!specialmenu_.hasFunc(cit->func()))
964                                 tomenu.addWithStatusCheck(*cit);
965                 }
966         }
967
968         // we do not want the menu to end with a separator
969         if (!tomenu.empty()
970             && tomenu.items_.back().kind() == MenuItem::Separator)
971                 tomenu.items_.pop_back();
972
973         // Check whether the shortcuts are unique
974         tomenu.checkShortcuts();
975 }
976
977
978 void MenuBackend::read(Lexer & lex)
979 {
980         enum Menutags {
981                 md_menu = 1,
982                 md_menubar,
983                 md_endmenuset,
984                 md_last
985         };
986
987         struct keyword_item menutags[md_last - 1] = {
988                 { "end", md_endmenuset },
989                 { "menu", md_menu },
990                 { "menubar", md_menubar }
991         };
992
993         //consistency check
994         if (compare_ascii_no_case(lex.getString(), "menuset")) {
995                 lyxerr << "Menubackend::read: ERROR wrong token:`"
996                        << lex.getString() << '\'' << endl;
997         }
998
999         lex.pushTable(menutags, md_last - 1);
1000         if (lyxerr.debugging(Debug::PARSER))
1001                 lex.printTable(lyxerr);
1002
1003         bool quit = false;
1004
1005         while (lex.isOK() && !quit) {
1006                 switch (lex.lex()) {
1007                 case md_menubar:
1008                         menubar_.read(lex);
1009                         break;
1010                 case md_menu: {
1011                         lex.next(true);
1012                         docstring const name = lex.getDocString();
1013                         if (hasMenu(name)) {
1014                                 getMenu(name).read(lex);
1015                         } else {
1016                                 Menu menu(name);
1017                                 menu.read(lex);
1018                                 add(menu);
1019                         }
1020                         break;
1021                 }
1022                 case md_endmenuset:
1023                         quit = true;
1024                         break;
1025                 default:
1026                         lex.printError("menubackend::read: "
1027                                        "Unknown menu tag: `$$Token'");
1028                         break;
1029                 }
1030         }
1031         lex.popTable();
1032 }
1033
1034
1035 void MenuBackend::add(Menu const & menu)
1036 {
1037         menulist_.push_back(menu);
1038 }
1039
1040
1041 bool MenuBackend::hasMenu(docstring const & name) const
1042 {
1043         return find_if(begin(), end(), MenuNamesEqual(name)) != end();
1044 }
1045
1046
1047 Menu const & MenuBackend::getMenu(docstring const & name) const
1048 {
1049         const_iterator cit = find_if(begin(), end(), MenuNamesEqual(name));
1050         if (cit == end())
1051                 lyxerr << "No submenu named " << to_utf8(name) << endl;
1052         BOOST_ASSERT(cit != end());
1053         return (*cit);
1054 }
1055
1056
1057 Menu & MenuBackend::getMenu(docstring const & name)
1058 {
1059         iterator it = find_if(begin(), end(), MenuNamesEqual(name));
1060         if (it == end())
1061                 lyxerr << "No submenu named " << to_utf8(name) << endl;
1062         BOOST_ASSERT(it != end());
1063         return (*it);
1064 }
1065
1066
1067 Menu const & MenuBackend::getMenubar() const
1068 {
1069         return menubar_;
1070 }
1071
1072
1073 } // namespace lyx