]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/Menus.cpp
Capitalization
[lyx.git] / src / frontends / qt4 / Menus.cpp
1 /**
2  * \file qt4/Menus.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author John Levon
7  * \author Asger Alstrup
8  * \author Lars Gullik Bjønnes
9  * \author Jean-Marc Lasgouttes
10  * \author André Pönitz
11  * \author Dekel Tsur
12  * \author Martin Vermeer
13  *
14  * Full author contact details are available in file CREDITS.
15  */
16
17 #include <config.h>
18
19 #include "Menus.h"
20
21 #include "Action.h"
22 #include "GuiApplication.h"
23 #include "GuiView.h"
24 #include "GuiWorkArea.h"
25 #include "qt_helpers.h"
26
27 #include "BiblioInfo.h"
28 #include "BranchList.h"
29 #include "Buffer.h"
30 #include "BufferList.h"
31 #include "BufferParams.h"
32 #include "BufferView.h"
33 #include "Converter.h"
34 #include "CutAndPaste.h"
35 #include "Floating.h"
36 #include "FloatList.h"
37 #include "Format.h"
38 #include "FuncRequest.h"
39 #include "FuncStatus.h"
40 #include "IndicesList.h"
41 #include "KeyMap.h"
42 #include "Language.h"
43 #include "Layout.h"
44 #include "Lexer.h"
45 #include "LyXAction.h"
46 #include "LyX.h"
47 #include "LyXRC.h"
48 #include "lyxfind.h"
49 #include "Paragraph.h"
50 #include "ParagraphParameters.h"
51 #include "ParIterator.h"
52 #include "Session.h"
53 #include "SpellChecker.h"
54 #include "TextClass.h"
55 #include "Text.h"
56 #include "TocBackend.h"
57 #include "Toolbars.h"
58 #include "WordLangTuple.h"
59
60 #include "insets/Inset.h"
61 #include "insets/InsetCitation.h"
62 #include "insets/InsetGraphics.h"
63
64 #include "support/lassert.h"
65 #include "support/convert.h"
66 #include "support/debug.h"
67 #include "support/docstring_list.h"
68 #include "support/filetools.h"
69 #include "support/gettext.h"
70 #include "support/lstrings.h"
71
72 #include <QCursor>
73 #include <QHash>
74 #include <QList>
75 #include <QMenuBar>
76 #include <QString>
77 #if QT_VERSION >= 0x040600
78 #include <QProxyStyle>
79 #endif
80
81 #include "support/shared_ptr.h"
82
83 #include <algorithm>
84 #include <vector>
85
86 using namespace std;
87 using namespace lyx::support;
88
89
90 namespace lyx {
91 namespace frontend {
92
93 namespace {
94
95 // MacOSX specific stuff is at the end.
96
97 class MenuDefinition;
98
99 ///
100 class MenuItem {
101 public:
102         /// The type of elements that can be in a menu
103         enum Kind {
104                 ///
105                 Command,
106                 ///
107                 Submenu,
108                 ///
109                 Separator,
110                 /** This type of item explains why something is unavailable. If this
111                     menuitem is in a submenu, the submenu is enabled to make sure the
112                     user sees the information. */
113                 Help,
114                 /** This type of item merely shows that there might be a list or
115                     something alike at this position, but the list is still empty.
116                     If this item is in a submenu, the submenu will not always be
117                     enabled. */
118                 Info,
119                 /** This is the list of last opened file,
120                     typically for the File menu. */
121                 Lastfiles,
122                 /** This is the list of opened Documents,
123                     typically for the Documents menu. */
124                 Documents,
125                 /** This is the bookmarks */
126                 Bookmarks,
127                 ///
128                 Toc,
129                 /** This is a list of viewable formats
130                     typically for the File->View menu. */
131                 ViewFormats,
132                 /** This is a list of updatable formats
133                     typically for the File->Update menu. */
134                 UpdateFormats,
135                 /** This is a list of exportable formats
136                     typically for the File->Export menu. */
137                 ExportFormats,
138                 /** This is a list of importable formats
139                     typically for the File->Import menu. */
140                 ImportFormats,
141                 /** This is the list of elements available
142                  * for insertion into document. */
143                 CharStyles,
144                 /** This is the list of user-configurable
145                 insets to insert into document */
146                 Custom,
147                 /** This is the list of XML elements to
148                 insert into the document */
149                 Elements,
150                 /** This is the list of floats that we can
151                     insert a list for. */
152                 FloatListInsert,
153                 /** This is the list of floats that we can
154                     insert. */
155                 FloatInsert,
156                 /** This is the list of selections that can
157                     be pasted. */
158                 PasteRecent,
159                 /** toolbars */
160                 Toolbars,
161                 /** Available branches in document */
162                 Branches,
163                 /** Available indices in document */
164                 Indices,
165                 /** Context menu for indices in document */
166                 IndicesContext,
167                 /** Available index lists in document */
168                 IndicesLists,
169                 /** Context menu for available indices lists in document */
170                 IndicesListsContext,
171                 /** Available citation styles for a given citation */
172                 CiteStyles,
173                 /** Available graphics groups */
174                 GraphicsGroups,
175                 /// Words suggested by the spellchecker.
176                 SpellingSuggestions,
177                 /** Used Languages */
178                 LanguageSelector,
179                 /** This is the list of arguments available
180                     for insertion into the current layout. */
181                 Arguments,
182                 /** This is the list of arguments available
183                     in the InsetArgument context menu. */
184                 SwitchArguments,
185                 /** This is the list of captions available
186                 in the current layout. */
187                 Captions,
188                 /** This is the list of captions available
189                 in the InsetCaption context menu. */
190                 SwitchCaptions,
191                 /** Commands to separate environments. */
192                 EnvironmentSeparators
193         };
194
195         explicit MenuItem(Kind kind) : kind_(kind), optional_(false) {}
196
197         MenuItem(Kind kind,
198                  QString const & label,
199                  QString const & submenu = QString(),
200                  QString const & tooltip = QString(),
201                  bool optional = false)
202                 : kind_(kind), label_(label), submenuname_(submenu),
203                   tooltip_(tooltip), optional_(optional)
204         {
205                 LATTEST(kind == Submenu || kind == Help || kind == Info);
206         }
207
208         MenuItem(Kind kind,
209                  QString const & label,
210                  FuncRequest const & func,
211                  QString const & tooltip = QString(),
212                  bool optional = false,
213                  FuncRequest::Origin origin = FuncRequest::MENU)
214                 : kind_(kind), label_(label), func_(func),
215                   tooltip_(tooltip), optional_(optional)
216         {
217                 func_.setOrigin(origin);
218         }
219
220         // shared_ptr<MenuDefinition> needs this apprently...
221         ~MenuItem() {}
222
223         /// The label of a given menuitem
224         QString label() const
225         {
226                 int const index = label_.lastIndexOf('|');
227                 return index == -1 ? label_ : label_.left(index);
228         }
229
230         /// The keyboard shortcut (usually underlined in the entry)
231         QString shortcut() const
232         {
233                 int const index = label_.lastIndexOf('|');
234                 return index == -1 ? QString() : label_.mid(index + 1);
235         }
236         /// The complete label, with label and shortcut separated by a '|'
237         QString fulllabel() const { return label_; }
238         /// The kind of entry
239         Kind kind() const { return kind_; }
240         /// the action (if relevant)
241         FuncRequest const & func() const { return func_; }
242         /// the tooltip
243         QString const & tooltip() const { return tooltip_; }
244         /// returns true if the entry should be omitted when disabled
245         bool optional() const { return optional_; }
246         /// returns the status of the lfun associated with this entry
247         FuncStatus const & status() const { return status_; }
248         /// returns the status of the lfun associated with this entry
249         FuncStatus & status() { return status_; }
250         /// returns the status of the lfun associated with this entry
251         void status(FuncStatus const & status) { status_ = status; }
252
253         ///returns the binding associated to this action.
254         QString binding() const
255         {
256                 if (kind_ != Command)
257                         return QString();
258                 // Get the keys bound to this action, but keep only the
259                 // first one later
260                 KeyMap::Bindings bindings = theTopLevelKeymap().findBindings(func_);
261                 if (!bindings.empty())
262                         return toqstr(bindings.begin()->print(KeySequence::ForGui));
263
264                 LYXERR(Debug::KBMAP, "No binding for "
265                         << lyxaction.getActionName(func_.action())
266                         << '(' << func_.argument() << ')');
267                 return QString();
268         }
269
270         /// the description of the  submenu (if relevant)
271         QString const & submenuname() const { return submenuname_; }
272         /// set the description of the  submenu
273         void submenuname(QString const & name) { submenuname_ = name; }
274         ///
275         bool hasSubmenu() const { return !submenu_.isEmpty(); }
276         ///
277         MenuDefinition const & submenu() const { return submenu_.at(0); }
278         MenuDefinition & submenu() { return submenu_[0]; }
279         ///
280         void setSubmenu(MenuDefinition const & menu)
281         {
282                 submenu_.clear();
283                 submenu_.append(menu);
284         }
285
286 private:
287         ///
288         Kind kind_;
289         ///
290         QString label_;
291         ///
292         FuncRequest func_;
293         ///
294         QString submenuname_;
295         ///
296         QString tooltip_;
297         ///
298         bool optional_;
299         ///
300         FuncStatus status_;
301         /// contains 0 or 1 item.
302         QList<MenuDefinition> submenu_;
303 };
304
305 ///
306 class MenuDefinition {
307 public:
308         ///
309         typedef std::vector<MenuItem> ItemList;
310         ///
311         typedef ItemList::const_iterator const_iterator;
312         ///
313         explicit MenuDefinition(QString const & name = QString()) : name_(name) {}
314
315         ///
316         void read(Lexer &);
317         ///
318         QString const & name() const { return name_; }
319         ///
320         bool empty() const { return items_.empty(); }
321         /// Clear the menu content.
322         void clear() { items_.clear(); }
323         ///
324         size_t size() const { return items_.size(); }
325         ///
326         MenuItem const & operator[](size_t) const;
327         ///
328         const_iterator begin() const { return items_.begin(); }
329         ///
330         const_iterator end() const { return items_.end(); }
331         ///
332         void cat(MenuDefinition const & other);
333         ///
334         void catSub(docstring const & name);
335
336         // search for func in this menu iteratively, and put menu
337         // names in a stack.
338         bool searchMenu(FuncRequest const & func, docstring_list & names)
339                 const;
340         ///
341         bool hasFunc(FuncRequest const &) const;
342         /// Add the menu item unconditionally
343         void add(MenuItem const & item) { items_.push_back(item); }
344         /// Checks the associated FuncRequest status before adding the
345         /// menu item.
346         void addWithStatusCheck(MenuItem const &);
347         // Check whether the menu shortcuts are unique
348         void checkShortcuts() const;
349         ///
350         void expandLastfiles();
351         void expandDocuments();
352         void expandBookmarks();
353         void expandFormats(MenuItem::Kind const kind, Buffer const * buf);
354         void expandFloatListInsert(Buffer const * buf);
355         void expandFloatInsert(Buffer const * buf);
356         void expandFlexInsert(Buffer const * buf, InsetLayout::InsetLyXType type);
357         void expandToc2(Toc const & toc_list, size_t from, size_t to, int depth);
358         void expandToc(Buffer const * buf);
359         void expandPasteRecent(Buffer const * buf);
360         void expandToolbars();
361         void expandBranches(Buffer const * buf);
362         void expandIndices(Buffer const * buf, bool listof = false);
363         void expandIndicesContext(Buffer const * buf, bool listof = false);
364         void expandCiteStyles(BufferView const *);
365         void expandGraphicsGroups(BufferView const *);
366         void expandSpellingSuggestions(BufferView const *);
367         void expandLanguageSelector(Buffer const * buf);
368         void expandArguments(BufferView const *, bool switcharg = false);
369         void expandCaptions(Buffer const * buf, bool switchcap = false);
370         void expandEnvironmentSeparators(BufferView const *);
371         ///
372         ItemList items_;
373         ///
374         QString name_;
375 };
376
377
378 /// Helper for std::find_if
379 class MenuNamesEqual
380 {
381 public:
382         MenuNamesEqual(QString const & name) : name_(name) {}
383         bool operator()(MenuDefinition const & menu) const { return menu.name() == name_; }
384 private:
385         QString name_;
386 };
387
388
389 ///
390 typedef std::vector<MenuDefinition> MenuList;
391 ///
392 typedef MenuList::const_iterator const_iterator;
393 ///
394 typedef MenuList::iterator iterator;
395
396 /////////////////////////////////////////////////////////////////////
397 // MenuDefinition implementation
398 /////////////////////////////////////////////////////////////////////
399
400 void MenuDefinition::addWithStatusCheck(MenuItem const & i)
401 {
402         switch (i.kind()) {
403
404         case MenuItem::Command: {
405                 FuncStatus status = lyx::getStatus(i.func());
406                 if (status.unknown() || (!status.enabled() && i.optional()))
407                         break;
408                 items_.push_back(i);
409                 items_.back().status(status);
410                 break;
411         }
412
413         case MenuItem::Submenu: {
414                 bool enabled = false;
415                 if (i.hasSubmenu()) {
416                         for (const_iterator cit = i.submenu().begin();
417                                   cit != i.submenu().end(); ++cit) {
418                                 // Only these kind of items affect the status of the submenu
419                                 if ((cit->kind() == MenuItem::Command
420                                         || cit->kind() == MenuItem::Submenu
421                                         || cit->kind() == MenuItem::Help)) {
422                                         enabled = true;
423                                         break;
424                                 }
425                         }
426                 }
427                 if (enabled || !i.optional()) {
428                         items_.push_back(i);
429                         items_.back().status().setEnabled(enabled);
430                 }
431                 break;
432         }
433
434         case MenuItem::Separator:
435                 if (!items_.empty() && items_.back().kind() != MenuItem::Separator)
436                         items_.push_back(i);
437                 break;
438
439         default:
440                 items_.push_back(i);
441         }
442 }
443
444
445 void MenuDefinition::read(Lexer & lex)
446 {
447         enum {
448                 md_item = 1,
449                 md_branches,
450                 md_citestyles,
451                 md_documents,
452                 md_bookmarks,
453                 md_charstyles,
454                 md_custom,
455                 md_elements,
456                 md_endmenu,
457                 md_exportformats,
458                 md_importformats,
459                 md_indices,
460                 md_indicescontext,
461                 md_indiceslists,
462                 md_indiceslistscontext,
463                 md_lastfiles,
464                 md_optitem,
465                 md_optsubmenu,
466                 md_separator,
467                 md_submenu,
468                 md_toc,
469                 md_updateformats,
470                 md_viewformats,
471                 md_floatlistinsert,
472                 md_floatinsert,
473                 md_pasterecent,
474                 md_toolbars,
475                 md_graphicsgroups,
476                 md_spellingsuggestions,
477                 md_languageselector,
478                 md_arguments,
479                 md_switcharguments,
480                 md_captions,
481                 md_switchcaptions,
482                 md_env_separators
483         };
484
485         LexerKeyword menutags[] = {
486                 { "arguments", md_arguments },
487                 { "bookmarks", md_bookmarks },
488                 { "branches", md_branches },
489                 { "captions", md_captions },
490                 { "charstyles", md_charstyles },
491                 { "citestyles", md_citestyles },
492                 { "custom", md_custom },
493                 { "documents", md_documents },
494                 { "elements", md_elements },
495                 { "end", md_endmenu },
496                 { "environmentseparators", md_env_separators },
497                 { "exportformats", md_exportformats },
498                 { "floatinsert", md_floatinsert },
499                 { "floatlistinsert", md_floatlistinsert },
500                 { "graphicsgroups", md_graphicsgroups },
501                 { "importformats", md_importformats },
502                 { "indices", md_indices },
503                 { "indicescontext", md_indicescontext },
504                 { "indiceslists", md_indiceslists },
505                 { "indiceslistscontext", md_indiceslistscontext },
506                 { "item", md_item },
507                 { "languageselector", md_languageselector },
508                 { "lastfiles", md_lastfiles },
509                 { "optitem", md_optitem },
510                 { "optsubmenu", md_optsubmenu },
511                 { "pasterecent", md_pasterecent },
512                 { "separator", md_separator },
513                 { "spellingsuggestions", md_spellingsuggestions },
514                 { "submenu", md_submenu },
515                 { "switcharguments", md_switcharguments },
516                 { "switchcaptions", md_switchcaptions },
517                 { "toc", md_toc },
518                 { "toolbars", md_toolbars },
519                 { "updateformats", md_updateformats },
520                 { "viewformats", md_viewformats }
521         };
522
523         lex.pushTable(menutags);
524         lex.setContext("MenuDefinition::read: ");
525
526         int md_type = 0;
527         while (lex.isOK() && md_type != md_endmenu) {
528                 switch (md_type = lex.lex()) {
529                 case md_optitem:
530                 case md_item: {
531                         lex.next(true);
532                         docstring const name = translateIfPossible(lex.getDocString());
533                         lex.next(true);
534                         string const command = lex.getString();
535                         FuncRequest func = lyxaction.lookupFunc(command);
536                         FuncRequest::Origin origin = FuncRequest::MENU;
537                         if (name_.startsWith("context-toc-"))
538                                 origin = FuncRequest::TOC;
539                         bool const optional = (md_type == md_optitem);
540                         add(MenuItem(MenuItem::Command, toqstr(name), func, QString(), optional, origin));
541                         break;
542                 }
543
544                 case md_separator:
545                         add(MenuItem(MenuItem::Separator));
546                         break;
547
548                 case md_lastfiles:
549                         add(MenuItem(MenuItem::Lastfiles));
550                         break;
551
552                 case md_charstyles:
553                         add(MenuItem(MenuItem::CharStyles));
554                         break;
555
556                 case md_custom:
557                         add(MenuItem(MenuItem::Custom));
558                         break;
559
560                 case md_elements:
561                         add(MenuItem(MenuItem::Elements));
562                         break;
563
564                 case md_documents:
565                         add(MenuItem(MenuItem::Documents));
566                         break;
567
568                 case md_bookmarks:
569                         add(MenuItem(MenuItem::Bookmarks));
570                         break;
571
572                 case md_toc:
573                         add(MenuItem(MenuItem::Toc));
574                         break;
575
576                 case md_viewformats:
577                         add(MenuItem(MenuItem::ViewFormats));
578                         break;
579
580                 case md_updateformats:
581                         add(MenuItem(MenuItem::UpdateFormats));
582                         break;
583
584                 case md_exportformats:
585                         add(MenuItem(MenuItem::ExportFormats));
586                         break;
587
588                 case md_importformats:
589                         add(MenuItem(MenuItem::ImportFormats));
590                         break;
591
592                 case md_floatlistinsert:
593                         add(MenuItem(MenuItem::FloatListInsert));
594                         break;
595
596                 case md_floatinsert:
597                         add(MenuItem(MenuItem::FloatInsert));
598                         break;
599
600                 case md_pasterecent:
601                         add(MenuItem(MenuItem::PasteRecent));
602                         break;
603
604                 case md_toolbars:
605                         add(MenuItem(MenuItem::Toolbars));
606                         break;
607
608                 case md_branches:
609                         add(MenuItem(MenuItem::Branches));
610                         break;
611
612                 case md_citestyles:
613                         add(MenuItem(MenuItem::CiteStyles));
614                         break;
615
616                 case md_graphicsgroups:
617                         add(MenuItem(MenuItem::GraphicsGroups));
618                         break;
619
620                 case md_spellingsuggestions:
621                         add(MenuItem(MenuItem::SpellingSuggestions));
622                         break;
623
624                 case md_languageselector:
625                         add(MenuItem(MenuItem::LanguageSelector));
626                         break;
627
628                 case md_indices:
629                         add(MenuItem(MenuItem::Indices));
630                         break;
631
632                 case md_indicescontext:
633                         add(MenuItem(MenuItem::IndicesContext));
634                         break;
635
636                 case md_indiceslists:
637                         add(MenuItem(MenuItem::IndicesLists));
638                         break;
639
640                 case md_indiceslistscontext:
641                         add(MenuItem(MenuItem::IndicesListsContext));
642                         break;
643
644                 case md_arguments:
645                         add(MenuItem(MenuItem::Arguments));
646                         break;
647
648                 case md_switcharguments:
649                         add(MenuItem(MenuItem::SwitchArguments));
650                         break;
651
652                 case md_captions:
653                         add(MenuItem(MenuItem::Captions));
654                         break;
655
656                 case md_switchcaptions:
657                         add(MenuItem(MenuItem::SwitchCaptions));
658                         break;
659
660                 case md_env_separators:
661                         add(MenuItem(MenuItem::EnvironmentSeparators));
662                         break;
663
664                 case md_optsubmenu:
665                 case md_submenu: {
666                         lex.next(true);
667                         docstring const mlabel = translateIfPossible(lex.getDocString());
668                         lex.next(true);
669                         docstring const mname = lex.getDocString();
670                         bool const optional = (md_type == md_optsubmenu);
671                         add(MenuItem(MenuItem::Submenu,
672                                 toqstr(mlabel), toqstr(mname), QString(), optional));
673                         break;
674                 }
675
676                 case md_endmenu:
677                         break;
678
679                 default:
680                         lex.printError("Unknown menu tag");
681                         break;
682                 }
683         }
684         lex.popTable();
685 }
686
687
688 MenuItem const & MenuDefinition::operator[](size_type i) const
689 {
690         return items_[i];
691 }
692
693
694 bool MenuDefinition::hasFunc(FuncRequest const & func) const
695 {
696         for (const_iterator it = begin(), et = end(); it != et; ++it)
697                 if (it->func() == func)
698                         return true;
699         return false;
700 }
701
702
703 void MenuDefinition::catSub(docstring const & name)
704 {
705         add(MenuItem(MenuItem::Submenu,
706                      qt_("More...|M"), toqstr(name), QString(), false));
707 }
708
709 void MenuDefinition::cat(MenuDefinition const & other)
710 {
711         const_iterator et = other.end();
712         for (const_iterator it = other.begin(); it != et; ++it)
713                 add(*it);
714 }
715
716
717 void MenuDefinition::checkShortcuts() const
718 {
719         // This is a quadratic algorithm, but we do not care because
720         // menus are short enough
721         for (const_iterator it1 = begin(); it1 != end(); ++it1) {
722                 QString shortcut = it1->shortcut();
723                 if (shortcut.isEmpty())
724                         continue;
725                 if (!it1->label().contains(shortcut))
726                         LYXERR0("Menu warning: menu entry \""
727                                << it1->label()
728                                << "\" does not contain shortcut `"
729                                << shortcut << "'.");
730                 for (const_iterator it2 = begin(); it2 != it1 ; ++it2) {
731                         if (!it2->shortcut().compare(shortcut, Qt::CaseInsensitive)) {
732                                 LYXERR0("Menu warning: menu entries "
733                                        << '"' << it1->fulllabel()
734                                        << "\" and \"" << it2->fulllabel()
735                                        << "\" share the same shortcut.");
736                         }
737                 }
738         }
739 }
740
741
742 bool MenuDefinition::searchMenu(FuncRequest const & func, docstring_list & names) const
743 {
744         const_iterator m = begin();
745         const_iterator m_end = end();
746         for (; m != m_end; ++m) {
747                 if (m->kind() == MenuItem::Command && m->func() == func) {
748                         names.push_back(qstring_to_ucs4(m->label()));
749                         return true;
750                 }
751                 if (m->kind() == MenuItem::Submenu) {
752                         names.push_back(qstring_to_ucs4(m->label()));
753                         if (!m->hasSubmenu()) {
754                                 LYXERR(Debug::GUI, "Warning: non existing sub menu label="
755                                         << m->label() << " name=" << m->submenuname());
756                                 names.pop_back();
757                                 continue;
758                         }
759                         if (m->submenu().searchMenu(func, names))
760                                 return true;
761                         names.pop_back();
762                 }
763         }
764         return false;
765 }
766
767
768 QString limitStringLength(docstring const & str)
769 {
770         size_t const max_item_length = 45;
771         docstring ret = str.substr(0, max_item_length + 1);
772         support::truncateWithEllipsis(ret, max_item_length);
773         return toqstr(ret);
774 }
775
776
777 void MenuDefinition::expandGraphicsGroups(BufferView const * bv)
778 {
779         if (!bv)
780                 return;
781         set<string> grp;
782         graphics::getGraphicsGroups(bv->buffer(), grp);
783         if (grp.empty())
784                 return;
785
786         set<string>::const_iterator it = grp.begin();
787         set<string>::const_iterator end = grp.end();
788         add(MenuItem(MenuItem::Command, qt_("No Group"),
789                      FuncRequest(LFUN_SET_GRAPHICS_GROUP)));
790         for (; it != end; ++it) {
791                 addWithStatusCheck(MenuItem(MenuItem::Command, toqstr(*it) + '|',
792                                 FuncRequest(LFUN_SET_GRAPHICS_GROUP, *it)));
793         }
794 }
795
796
797 void MenuDefinition::expandSpellingSuggestions(BufferView const * bv)
798 {
799         if (!bv)
800                 return;
801         Cursor const & cur = bv->cursor();
802         if (!cur.inTexted())
803                 return;
804         WordLangTuple wl;
805         docstring_list suggestions;
806         Paragraph const & par = cur.paragraph();
807         pos_type from = cur.pos();
808         pos_type to = from;
809         SpellChecker::Result res = par.spellCheck(from, to, wl, suggestions, true, true);
810         switch (res) {
811         case SpellChecker::UNKNOWN_WORD:
812                 if (lyxrc.spellcheck_continuously) {
813                         LYXERR(Debug::GUI, "Misspelled Word! Suggested Words = ");
814                         docstring const & selection = cur.selectionAsString(false);
815                         if (!cur.selection() || selection == wl.word()) {
816                                 size_t i = 0;
817                                 size_t m = 10; // first submenu index
818                                 MenuItem item(MenuItem::Submenu, qt_("More Spelling Suggestions"));
819                                 item.setSubmenu(MenuDefinition(qt_("More Spelling Suggestions")));
820                                 for (; i != suggestions.size(); ++i) {
821                                         docstring const & suggestion = suggestions[i];
822                                         LYXERR(Debug::GUI, suggestion);
823                                         MenuItem w(MenuItem::Command, toqstr(suggestion),
824                                                 FuncRequest(LFUN_WORD_REPLACE,
825                                                         replace2string(suggestion, selection,
826                                                                 true,     // case sensitive
827                                                                 true,     // match word
828                                                                 false,    // all words
829                                                                 true,     // forward
830                                                                 false))); // find next
831                                         if (i < m)
832                                                 add(w);
833                                         else
834                                                 item.submenu().add(w);
835                                 }
836                                 if (i > m)
837                                         add(item);
838                                 if (i > 0)
839                                         add(MenuItem(MenuItem::Separator));
840                                 docstring const arg = wl.word() + " " + from_ascii(wl.lang()->lang());
841                                 add(MenuItem(MenuItem::Command, qt_("Add to personal dictionary|n"),
842                                                 FuncRequest(LFUN_SPELLING_ADD, arg)));
843                                 add(MenuItem(MenuItem::Command, qt_("Ignore all|I"),
844                                                 FuncRequest(LFUN_SPELLING_IGNORE, arg)));
845                         }
846                 }
847                 break;
848         case SpellChecker::LEARNED_WORD: {
849                         LYXERR(Debug::GUI, "Learned Word.");
850                         docstring const arg = wl.word() + " " + from_ascii(wl.lang()->lang());
851                         add(MenuItem(MenuItem::Command, qt_("Remove from personal dictionary|r"),
852                                         FuncRequest(LFUN_SPELLING_REMOVE, arg)));
853                 }
854                 break;
855         case SpellChecker::NO_DICTIONARY:
856                 LYXERR(Debug::GUI, "No dictionary for language " + from_ascii(wl.lang()->lang()));
857                 // FALLTHROUGH
858         case SpellChecker::WORD_OK:
859         case SpellChecker::COMPOUND_WORD:
860         case SpellChecker::ROOT_FOUND:
861         case SpellChecker::IGNORED_WORD:
862                 break;
863         }
864 }
865
866 struct sortLanguageByName {
867         bool operator()(const Language * a, const Language * b) const {
868                 return qt_(a->display()).localeAwareCompare(qt_(b->display())) < 0;
869         }
870 };
871
872 void MenuDefinition::expandLanguageSelector(Buffer const * buf)
873 {
874         if (!buf)
875                 return;
876
877         std::set<Language const *> languages_buffer =
878                 buf->masterBuffer()->getLanguages();
879
880         if (languages_buffer.size() < 2)
881                 return;
882
883         std::set<Language const *, sortLanguageByName> languages;
884
885         std::set<Language const *>::const_iterator const beg =
886                 languages_buffer.begin();
887         for (std::set<Language const *>::const_iterator cit = beg;
888              cit != languages_buffer.end(); ++cit) {
889                 languages.insert(*cit);
890         }
891
892         MenuItem item(MenuItem::Submenu, qt_("Language|L"));
893         item.setSubmenu(MenuDefinition(qt_("Language")));
894         QString morelangs = qt_("More Languages ...|M");
895         QStringList accelerators;
896         if (morelangs.contains('|'))
897                 accelerators.append(morelangs.section('|', -1));
898         std::set<Language const *, sortLanguageByName>::const_iterator const begin = languages.begin();
899         for (std::set<Language const *, sortLanguageByName>::const_iterator cit = begin;
900              cit != languages.end(); ++cit) {
901                 QString label = qt_((*cit)->display());
902                 // try to add an accelerator
903                 bool success = false;
904                 // try capitals first
905                 for (int i = 0; i < label.size(); ++i) {
906                         QChar const ch = label[i];
907                         if (!ch.isUpper())
908                                 continue;
909                         if (!accelerators.contains(ch, Qt::CaseInsensitive)) {
910                                 label = label + toqstr("|") + ch;
911                                 accelerators.append(ch);
912                                 success = true;
913                                 break;
914                         }
915                 }
916                 // if all capitals are taken, try the rest
917                 if (!success) {
918                         for (int i = 0; i < label.size(); ++i) {
919                                 if (label[i].isSpace())
920                                         continue;
921                                 QString const ch = QString(label[i]);
922                                 if (!accelerators.contains(ch, Qt::CaseInsensitive)) {
923                                         label = label + toqstr("|") + ch;
924                                         accelerators.append(ch);
925                                         break;
926                                 }
927                         }
928                 }
929                 MenuItem w(MenuItem::Command, label,
930                         FuncRequest(LFUN_LANGUAGE, (*cit)->lang() + " set"));
931                 item.submenu().addWithStatusCheck(w);
932         }
933         item.submenu().add(MenuItem(MenuItem::Separator));
934         item.submenu().add(MenuItem(MenuItem::Command, morelangs,
935                         FuncRequest(LFUN_DIALOG_SHOW, "character")));
936         add(item);
937 }
938
939
940 void MenuDefinition::expandLastfiles()
941 {
942         LastFilesSection::LastFiles const & lf = theSession().lastFiles().lastFiles();
943         LastFilesSection::LastFiles::const_iterator lfit = lf.begin();
944
945         unsigned int ii = 1;
946
947         for (; lfit != lf.end() && ii <= lyxrc.num_lastfiles; ++lfit, ++ii) {
948                 string const file = lfit->absFileName();
949                 QString const short_path = toqstr(makeDisplayPath(file, 30));
950                 QString const long_path = toqstr(makeDisplayPath(file));
951                 QString label;
952                 if (ii < 10)
953                         label = QString("%1. %2|%3").arg(ii).arg(short_path).arg(ii);
954                 else
955                         label = QString("%1. %2").arg(ii).arg(short_path);
956                 add(MenuItem(MenuItem::Command, label,
957                         FuncRequest(LFUN_FILE_OPEN, file), long_path));
958         }
959 }
960
961
962 void MenuDefinition::expandDocuments()
963 {
964         MenuItem item(MenuItem::Submenu, qt_("Hidden|H"));
965         item.setSubmenu(MenuDefinition(qt_("Hidden|H")));
966
967         Buffer * first = theBufferList().first();
968         if (!first) {
969                 add(MenuItem(MenuItem::Info, qt_("<No Documents Open>")));
970                 return;
971         }
972
973         int i = 0;
974         while (true) {
975                 if (!guiApp->currentView())
976                         break;
977                 GuiWorkArea * wa = guiApp->currentView()->workArea(i);
978                 if (!wa)
979                         break;
980                 Buffer const & b = wa->bufferView().buffer();
981                 QString label = toqstr(b.fileName().displayName(20));
982                 if (!b.isClean())
983                         label += "*";
984                 if (i < 10)
985                         label = QString::number(i) + ". " + label + '|' + QString::number(i);
986                 add(MenuItem(MenuItem::Command, label,
987                         FuncRequest(LFUN_BUFFER_SWITCH, b.absFileName())));
988                 ++i;
989         }
990
991
992         i = 0;
993         Buffer * b = first;
994         // We cannot use a for loop as the buffer list cycles.
995         do {
996                 if (!(guiApp->currentView()
997                     && guiApp->currentView()->workArea(*b))) {
998                         QString label = toqstr(b->fileName().displayName(20));
999                         if (!b->isClean())
1000                                 label += "*";
1001                         if (i < 10)
1002                                 label = QString::number(i) + ". " + label + '|' + QString::number(i);
1003                         item.submenu().add(MenuItem(MenuItem::Command, label,
1004                                 FuncRequest(LFUN_BUFFER_SWITCH, b->absFileName())));
1005                         ++i;
1006                 }
1007                 b = theBufferList().next(b);
1008         } while (b != first);
1009
1010         if (!item.submenu().empty())
1011                 add(item);
1012 }
1013
1014
1015 void MenuDefinition::expandBookmarks()
1016 {
1017         lyx::BookmarksSection const & bm = theSession().bookmarks();
1018
1019         bool empty = true;
1020         for (size_t i = 1; i <= bm.size(); ++i) {
1021                 if (bm.isValid(i)) {
1022                         string const file = bm.bookmark(i).filename.absFileName();
1023                         QString const label = QString("%1. %2|%3").arg(i)
1024                                 .arg(toqstr(makeDisplayPath(file, 20))).arg(i);
1025                         add(MenuItem(MenuItem::Command, label,
1026                                 FuncRequest(LFUN_BOOKMARK_GOTO, convert<docstring>(i))));
1027                         empty = false;
1028                 }
1029         }
1030         if (empty)
1031                 add(MenuItem(MenuItem::Info, qt_("<No Bookmarks Saved Yet>")));
1032 }
1033
1034
1035 void MenuDefinition::expandFormats(MenuItem::Kind const kind, Buffer const * buf)
1036 {
1037         if (!buf && kind != MenuItem::ImportFormats)
1038                 return;
1039
1040         typedef vector<Format const *> Formats;
1041         Formats formats;
1042         FuncCode action = LFUN_NOACTION;
1043
1044         switch (kind) {
1045         case MenuItem::ImportFormats:
1046                 formats = theConverters().importableFormats();
1047                 action = LFUN_BUFFER_IMPORT;
1048                 break;
1049         case MenuItem::ViewFormats:
1050                 formats = buf->params().exportableFormats(true);
1051                 action = LFUN_BUFFER_VIEW;
1052                 break;
1053         case MenuItem::UpdateFormats:
1054                 formats = buf->params().exportableFormats(true);
1055                 action = LFUN_BUFFER_UPDATE;
1056                 break;
1057         case MenuItem::ExportFormats:
1058                 formats = buf->params().exportableFormats(false);
1059                 action = LFUN_BUFFER_EXPORT;
1060                 break;
1061         default:
1062                 LATTEST(false);
1063                 return;
1064         }
1065         sort(formats.begin(), formats.end(), Format::formatSorter);
1066
1067         bool const view_update = (kind == MenuItem::ViewFormats
1068                         || kind == MenuItem::UpdateFormats);
1069
1070         QString smenue;
1071         if (view_update)
1072                 smenue = (kind == MenuItem::ViewFormats
1073                         ? qt_("View (Other Formats)|F")
1074                         : qt_("Update (Other Formats)|p"));
1075         MenuItem item(MenuItem::Submenu, smenue);
1076         item.setSubmenu(MenuDefinition(smenue));
1077
1078         Formats::const_iterator fit = formats.begin();
1079         Formats::const_iterator end = formats.end();
1080         for (; fit != end ; ++fit) {
1081                 if ((*fit)->dummy())
1082                         continue;
1083
1084                 docstring lab = from_utf8((*fit)->prettyname());
1085                 docstring const scut = from_utf8((*fit)->shortcut());
1086                 docstring const tmplab = lab;
1087
1088                 if (!scut.empty())
1089                         lab += char_type('|') + scut;
1090                 docstring const lab_i18n = translateIfPossible(lab);
1091                 docstring const shortcut = split(lab_i18n, lab, '|');
1092
1093                 bool const untranslated = (lab == lab_i18n);
1094                 docstring label = untranslated ? translateIfPossible(tmplab) : lab;
1095
1096                 switch (kind) {
1097                 case MenuItem::ImportFormats:
1098                         label += from_ascii("...");
1099                         break;
1100                 case MenuItem::ViewFormats:
1101                 case MenuItem::UpdateFormats:
1102                         if ((*fit)->name() == buf->params().getDefaultOutputFormat()) {
1103                                 docstring lbl = (kind == MenuItem::ViewFormats
1104                                         ? bformat(_("View [%1$s]|V"), label)
1105                                         : bformat(_("Update [%1$s]|U"), label));
1106                                 add(MenuItem(MenuItem::Command, toqstr(lbl), FuncRequest(action)));
1107                                 continue;
1108                         }
1109                 // fall through
1110                 case MenuItem::ExportFormats:
1111                         if (!(*fit)->inExportMenu())
1112                                 continue;
1113                         break;
1114                 default:
1115                         // we already asserted earlier in this case
1116                         // LATTEST(false);
1117                         continue;
1118                 }
1119                 if (!shortcut.empty())
1120                         label += '|' + shortcut;
1121
1122                 if (view_update) {
1123                         // note that at this point, we know that buf is not null
1124                         LATTEST(buf);
1125                         item.submenu().addWithStatusCheck(MenuItem(MenuItem::Command,
1126                                 toqstr(label), FuncRequest(action, (*fit)->name())));
1127                 } else {
1128                         if (buf)
1129                                 addWithStatusCheck(MenuItem(MenuItem::Command, toqstr(label),
1130                                         FuncRequest(action, (*fit)->name())));
1131                         else
1132                                 add(MenuItem(MenuItem::Command, toqstr(label),
1133                                         FuncRequest(action, (*fit)->name())));
1134                 }
1135         }
1136         if (view_update)
1137                 add(item);
1138 }
1139
1140
1141 void MenuDefinition::expandFloatListInsert(Buffer const * buf)
1142 {
1143         if (!buf)
1144                 return;
1145
1146         FloatList const & floats = buf->params().documentClass().floats();
1147         FloatList::const_iterator cit = floats.begin();
1148         FloatList::const_iterator end = floats.end();
1149         set<string> seen;
1150         for (; cit != end; ++cit) {
1151                 if (!cit->second.usesFloatPkg()) {
1152                         // Different floats could declare the same ListCommand. We only
1153                         // want it on the list once, though.
1154                         string const & list_cmd = cit->second.listCommand();
1155                         if (list_cmd.empty())
1156                                 // we do not know how to generate such a list
1157                                 continue;
1158                         // This form of insert returns an iterator pointing to the newly
1159                         // inserted element OR the existing element with that value, and
1160                         // a bool indicating whether we inserted a new element. So we can
1161                         // see if one is there and insert it if not all at once.
1162                         pair<set<string>::iterator, bool> ret = seen.insert(list_cmd);
1163                         if (!ret.second)
1164                                 continue;
1165                 }
1166                 string const & list_name = cit->second.listName();
1167                 addWithStatusCheck(MenuItem(MenuItem::Command, qt_(list_name),
1168                         FuncRequest(LFUN_FLOAT_LIST_INSERT, cit->second.floattype())));
1169         }
1170 }
1171
1172
1173 void MenuDefinition::expandFloatInsert(Buffer const * buf)
1174 {
1175         if (!buf)
1176                 return;
1177
1178         FloatList const & floats = buf->params().documentClass().floats();
1179         FloatList::const_iterator cit = floats.begin();
1180         FloatList::const_iterator end = floats.end();
1181         for (; cit != end; ++cit) {
1182                 // normal float
1183                 QString const label = qt_(cit->second.name());
1184                 addWithStatusCheck(MenuItem(MenuItem::Command, label,
1185                                     FuncRequest(LFUN_FLOAT_INSERT,
1186                                                 cit->second.floattype())));
1187         }
1188 }
1189
1190
1191 void MenuDefinition::expandFlexInsert(
1192                 Buffer const * buf, InsetLayout::InsetLyXType type)
1193 {
1194         if (!buf)
1195                 return;
1196
1197         TextClass::InsetLayouts const & insetLayouts =
1198                 buf->params().documentClass().insetLayouts();
1199         TextClass::InsetLayouts::const_iterator cit = insetLayouts.begin();
1200         TextClass::InsetLayouts::const_iterator end = insetLayouts.end();
1201         for (; cit != end; ++cit) {
1202                 if (cit->second.lyxtype() == type) {
1203                         if (!cit->second.obsoleted_by().empty())
1204                                 continue;
1205                         docstring label = cit->first;
1206                         // we remove the "Flex:" prefix, if it is present
1207                         if (prefixIs(label, from_ascii("Flex:")))
1208                                 label = label.substr(5);
1209                         addWithStatusCheck(MenuItem(MenuItem::Command,
1210                                 toqstr(translateIfPossible(label)),
1211                                 FuncRequest(LFUN_FLEX_INSERT, Lexer::quoteString(label))));
1212                 }
1213         }
1214         // FIXME This is a little clunky.
1215         if (items_.empty() && type == InsetLayout::CUSTOM && !buf->isReadonly())
1216                 add(MenuItem(MenuItem::Help, qt_("No Custom Insets Defined!")));
1217 }
1218
1219
1220 size_t const max_number_of_items = 30;
1221
1222 void MenuDefinition::expandToc2(Toc const & toc_list,
1223                 size_t from, size_t to, int depth)
1224 {
1225         int shortcut_count = 0;
1226
1227         // check whether depth is smaller than the smallest depth in toc.
1228         int min_depth = 1000;
1229         for (size_t i = from; i < to; ++i)
1230                 min_depth = min(min_depth, toc_list[i].depth());
1231         if (min_depth > depth)
1232                 depth = min_depth;
1233
1234         if (to - from <= max_number_of_items) {
1235                 for (size_t i = from; i < to; ++i) {
1236                         QString label(4 * max(0, toc_list[i].depth() - depth), ' ');
1237                         label += limitStringLength(toc_list[i].asString());
1238                         if (toc_list[i].depth() == depth) {
1239                                 label += '|';
1240                             if (shortcut_count < 9) {
1241                                         if (label.contains(QString::number(shortcut_count + 1)))
1242                                                 label += QString::number(++shortcut_count);
1243                                 }
1244                         }
1245                         add(MenuItem(MenuItem::Command, label,
1246                                             FuncRequest(toc_list[i].action())));
1247                         // separator after the menu heading
1248                         if (toc_list[i].depth() < depth)
1249                                 add(MenuItem(MenuItem::Separator));
1250                 }
1251         } else {
1252                 size_t pos = from;
1253                 while (pos < to) {
1254                         size_t new_pos = pos + 1;
1255                         while (new_pos < to && toc_list[new_pos].depth() > depth)
1256                                 ++new_pos;
1257
1258                         QString label(4 * max(0, toc_list[pos].depth() - depth), ' ');
1259                         label += limitStringLength(toc_list[pos].asString());
1260                         if (toc_list[pos].depth() == depth) {
1261                                 label += '|';
1262                             if (shortcut_count < 9) {
1263                                         if (label.contains(QString::number(shortcut_count + 1)))
1264                                                 label += QString::number(++shortcut_count);
1265                                 }
1266                         }
1267                         if (new_pos == pos + 1) {
1268                                 add(MenuItem(MenuItem::Command,
1269                                                     label, FuncRequest(toc_list[pos].action())));
1270                         } else {
1271                                 MenuDefinition sub;
1272                                 sub.expandToc2(toc_list, pos, new_pos, depth + 1);
1273                                 MenuItem item(MenuItem::Submenu, label);
1274                                 item.setSubmenu(sub);
1275                                 add(item);
1276                         }
1277                         pos = new_pos;
1278                 }
1279         }
1280 }
1281
1282
1283 void MenuDefinition::expandToc(Buffer const * buf)
1284 {
1285         // To make things very cleanly, we would have to pass buf to
1286         // all MenuItem constructors and to expandToc2. However, we
1287         // know that all the entries in a TOC will be have status_ ==
1288         // OK, so we avoid this unnecessary overhead (JMarc)
1289         if (!buf) {
1290                 add(MenuItem(MenuItem::Info, qt_("(No Document Open)")));
1291                 return;
1292         }
1293         // Add an entry for the master doc if this is a child doc
1294         Buffer const * const master = buf->masterBuffer();
1295         if (buf != master) {
1296                 ParIterator const pit = par_iterator_begin(master->inset());
1297                 string const arg = convert<string>(pit->id());
1298                 FuncRequest f(LFUN_PARAGRAPH_GOTO, arg);
1299                 add(MenuItem(MenuItem::Command, qt_("Master Document"), f));
1300         }
1301
1302         MenuDefinition other_lists;
1303         FloatList const & floatlist = buf->params().documentClass().floats();
1304         TocList const & toc_list = buf->tocBackend().tocs();
1305         TocList::const_iterator cit = toc_list.begin();
1306         TocList::const_iterator end = toc_list.end();
1307         for (; cit != end; ++cit) {
1308                 // Handle table of contents later
1309                 if (cit->first == "tableofcontents" || cit->second->empty())
1310                         continue;
1311                 MenuDefinition submenu;
1312                 // "Open outliner..." entry
1313                 FuncRequest f(LFUN_DIALOG_SHOW, "toc " + cit->first);
1314                 submenu.add(MenuItem(MenuItem::Command, qt_("Open Outliner..."), f));
1315                 submenu.add(MenuItem(MenuItem::Separator));
1316                 // add entries
1317                 submenu.expandToc2(* cit->second, 0, cit->second->size(), 0);
1318                 MenuItem item(MenuItem::Submenu, guiName(cit->first, buf->params()));
1319                 item.setSubmenu(submenu);
1320                 // deserves to be in the main menu?
1321                 if (floatlist.typeExist(cit->first) || cit->first == "child")
1322                         add(item);
1323                 else
1324                         other_lists.add(item);
1325         }
1326         if (!other_lists.empty()) {
1327                 MenuItem item(MenuItem::Submenu, qt_("Other Lists"));
1328                 item.setSubmenu(other_lists);
1329                 add(item);
1330         }
1331         // Handle normal TOC
1332         add(MenuItem(MenuItem::Separator));
1333         cit = toc_list.find("tableofcontents");
1334         if (cit == end)
1335                 LYXERR(Debug::GUI, "No table of contents.");
1336         else {
1337                 if (!cit->second->empty())
1338                         expandToc2(* cit->second, 0, cit->second->size(), 0);
1339                 else
1340                         add(MenuItem(MenuItem::Info, qt_("(Empty Table of Contents)")));
1341         }
1342 }
1343
1344
1345 void MenuDefinition::expandPasteRecent(Buffer const * buf)
1346 {
1347         docstring_list const sel = cap::availableSelections(buf);
1348
1349         docstring_list::const_iterator cit = sel.begin();
1350         docstring_list::const_iterator end = sel.end();
1351
1352         for (unsigned int index = 0; cit != end; ++cit, ++index) {
1353                 add(MenuItem(MenuItem::Command, toqstr(*cit) + '|',
1354                                     FuncRequest(LFUN_PASTE, convert<string>(index))));
1355         }
1356 }
1357
1358
1359 void MenuDefinition::expandToolbars()
1360 {
1361         MenuDefinition other_lists;
1362         // extracts the toolbars from the backend
1363         Toolbars::Infos::const_iterator cit = guiApp->toolbars().begin();
1364         Toolbars::Infos::const_iterator end = guiApp->toolbars().end();
1365         for (; cit != end; ++cit) {
1366                 MenuItem const item(MenuItem::Command, toqstr(cit->gui_name),
1367                                 FuncRequest(LFUN_TOOLBAR_TOGGLE, cit->name));
1368                 if (guiApp->toolbars().isMainToolbar(cit->name))
1369                         add(item);
1370                 else
1371                         other_lists.add(item);
1372         }
1373
1374         if (!other_lists.empty()) {
1375                 MenuItem item(MenuItem::Submenu, qt_("Other Toolbars"));
1376                 item.setSubmenu(other_lists);
1377                 add(item);
1378         }
1379 }
1380
1381
1382 void MenuDefinition::expandBranches(Buffer const * buf)
1383 {
1384         if (!buf || buf->isReadonly())
1385                 return;
1386
1387         BufferParams const & master_params = buf->masterBuffer()->params();
1388         BufferParams const & params = buf->params();
1389         if (params.branchlist().empty() && master_params.branchlist().empty() ) {
1390                 add(MenuItem(MenuItem::Help, qt_("No Branches Set for Document!")));
1391                 return;
1392         }
1393
1394         BranchList::const_iterator cit = master_params.branchlist().begin();
1395         BranchList::const_iterator end = master_params.branchlist().end();
1396
1397         for (int ii = 1; cit != end; ++cit, ++ii) {
1398                 docstring label = cit->branch();
1399                 if (ii < 10) {
1400                         label = convert<docstring>(ii) + ". " + label
1401                                 + char_type('|') + convert<docstring>(ii);
1402                 }
1403                 addWithStatusCheck(MenuItem(MenuItem::Command, toqstr(label),
1404                                     FuncRequest(LFUN_BRANCH_INSERT,
1405                                                 cit->branch())));
1406         }
1407
1408         if (buf == buf->masterBuffer())
1409                 return;
1410
1411         MenuDefinition child_branches;
1412
1413         BranchList::const_iterator ccit = params.branchlist().begin();
1414         BranchList::const_iterator cend = params.branchlist().end();
1415
1416         for (int ii = 1; ccit != cend; ++ccit, ++ii) {
1417                 docstring label = ccit->branch();
1418                 if (ii < 10) {
1419                         label = convert<docstring>(ii) + ". " + label
1420                                 + char_type('|') + convert<docstring>(ii);
1421                 } else
1422                         label += char_type('|');
1423                 child_branches.addWithStatusCheck(MenuItem(MenuItem::Command,
1424                                     toqstr(label),
1425                                     FuncRequest(LFUN_BRANCH_INSERT,
1426                                                 ccit->branch())));
1427         }
1428
1429         if (!child_branches.empty()) {
1430                 MenuItem item(MenuItem::Submenu, qt_("Child Document"));
1431                 item.setSubmenu(child_branches);
1432                 add(item);
1433         }
1434 }
1435
1436
1437 void MenuDefinition::expandIndices(Buffer const * buf, bool listof)
1438 {
1439         if (!buf)
1440                 return;
1441
1442         BufferParams const & params = buf->masterBuffer()->params();
1443         if (!params.use_indices) {
1444                 if (listof)
1445                         addWithStatusCheck(MenuItem(MenuItem::Command,
1446                                            qt_("Index List|I"),
1447                                            FuncRequest(LFUN_INDEX_PRINT,
1448                                                   from_ascii("idx"))));
1449                 else
1450                         addWithStatusCheck(MenuItem(MenuItem::Command,
1451                                            qt_("Index Entry|d"),
1452                                            FuncRequest(LFUN_INDEX_INSERT,
1453                                                   from_ascii("idx"))));
1454                 return;
1455         }
1456
1457         if (params.indiceslist().empty())
1458                 return;
1459
1460         IndicesList::const_iterator cit = params.indiceslist().begin();
1461         IndicesList::const_iterator end = params.indiceslist().end();
1462
1463         for (int ii = 1; cit != end; ++cit, ++ii) {
1464                 if (listof) {
1465                         docstring const label =
1466                                 bformat(_("Index: %1$s"), cit->index());
1467                         addWithStatusCheck(MenuItem(MenuItem::Command, toqstr(label),
1468                                            FuncRequest(LFUN_INDEX_PRINT, cit->shortcut())));
1469                 } else {
1470                         docstring const label =
1471                                 bformat(_("Index Entry (%1$s)"), cit->index());
1472                         addWithStatusCheck(MenuItem(MenuItem::Command, toqstr(label),
1473                                            FuncRequest(LFUN_INDEX_INSERT, cit->shortcut())));
1474                 }
1475         }
1476 }
1477
1478
1479 void MenuDefinition::expandIndicesContext(Buffer const * buf, bool listof)
1480 {
1481         if (!buf)
1482                 return;
1483
1484         BufferParams const & params = buf->masterBuffer()->params();
1485         if (!params.use_indices || params.indiceslist().empty())
1486                 return;
1487
1488         IndicesList::const_iterator cit = params.indiceslist().begin();
1489         IndicesList::const_iterator end = params.indiceslist().end();
1490
1491         for (int ii = 1; cit != end; ++cit, ++ii) {
1492                 if (listof) {
1493                         InsetCommandParams p(INDEX_PRINT_CODE);
1494                         p["type"] = cit->shortcut();
1495                         string const data = InsetCommand::params2string(p);
1496                         addWithStatusCheck(MenuItem(MenuItem::Command, toqstr(cit->index()),
1497                                            FuncRequest(LFUN_INSET_MODIFY, data)));
1498                 } else {
1499                         docstring const label =
1500                                         bformat(_("Index Entry (%1$s)"), cit->index());
1501                         addWithStatusCheck(MenuItem(MenuItem::Command, toqstr(label),
1502                                            FuncRequest(LFUN_INSET_MODIFY,
1503                                                   from_ascii("changetype ") + cit->shortcut())));
1504                 }
1505         }
1506 }
1507
1508
1509 void MenuDefinition::expandCiteStyles(BufferView const * bv)
1510 {
1511         if (!bv)
1512                 return;
1513
1514         Inset const * inset = bv->cursor().nextInset();
1515         if (!inset || inset->lyxCode() != CITE_CODE) {
1516                 add(MenuItem(MenuItem::Command,
1517                                     qt_("No Citation in Scope!"),
1518                                     FuncRequest(LFUN_NOACTION)));
1519                 return;
1520         }
1521         InsetCommand const * citinset =
1522                                 static_cast<InsetCommand const *>(inset);
1523
1524         Buffer const * buf = &bv->buffer();
1525         string const cmd = citinset->params().getCmdName();
1526
1527         docstring const & key = citinset->getParam("key");
1528         if (key.empty()) {
1529                 add(MenuItem(MenuItem::Command,
1530                                     qt_("No citations selected!"),
1531                                     FuncRequest(LFUN_NOACTION)));
1532                 return;
1533         }
1534
1535         docstring const & before = citinset->getParam("before");
1536         docstring const & after = citinset->getParam("after");
1537
1538         size_t const n = cmd.size();
1539         bool const force = cmd[0] == 'C';
1540         bool const full = cmd[n] == '*';
1541
1542         vector<docstring> const keys = getVectorFromString(key);
1543
1544         vector<CitationStyle> const citeStyleList = buf->params().citeStyles();
1545         static const size_t max_length = 40;
1546         vector<docstring> citeStrings =
1547                 buf->masterBibInfo().getCiteStrings(keys, citeStyleList, bv->buffer(),
1548                 before, after, from_utf8("dialog"), max_length);
1549
1550         vector<docstring>::const_iterator cit = citeStrings.begin();
1551         vector<docstring>::const_iterator end = citeStrings.end();
1552
1553         for (int ii = 1; cit != end; ++cit, ++ii) {
1554                 docstring label = *cit;
1555                 CitationStyle cs = citeStyleList[ii - 1];
1556                 cs.forceUpperCase &= force;
1557                 cs.fullAuthorList &= full;
1558                 addWithStatusCheck(MenuItem(MenuItem::Command, toqstr(label),
1559                                     FuncRequest(LFUN_INSET_MODIFY,
1560                                                 "changetype " + from_utf8(citationStyleToString(cs)))));
1561         }
1562 }
1563
1564
1565 void MenuDefinition::expandArguments(BufferView const * bv, bool switcharg)
1566 {
1567         if (!bv)
1568                 return;
1569
1570         if (!bv->cursor().inTexted())
1571                 return;
1572
1573         Inset const * inset = &bv->cursor().inset();
1574         Layout::LaTeXArgMap args = bv->cursor().paragraph().layout().args();
1575         if (inset && args.empty())
1576                 args = inset->getLayout().args();
1577         if (args.empty() || (switcharg && args.size() == 1))
1578                 return;
1579         Layout::LaTeXArgMap::const_iterator lait = args.begin();
1580         Layout::LaTeXArgMap::const_iterator const laend = args.end();
1581         for (; lait != laend; ++lait) {
1582                 Layout::latexarg arg = (*lait).second;
1583                 docstring str = arg.menustring.empty()? arg.labelstring : arg.menustring;
1584                 QString item = toqstr(translateIfPossible(str));
1585                 if (switcharg)
1586                         add(MenuItem(MenuItem::Command, item,
1587                                      FuncRequest(LFUN_INSET_MODIFY,
1588                                                  from_ascii("changetype ")
1589                                                  + from_ascii((*lait).first))));
1590                 else
1591                         add(MenuItem(MenuItem::Command, item,
1592                                      FuncRequest(LFUN_ARGUMENT_INSERT,
1593                                                  from_ascii((*lait).first))));
1594         }
1595 }
1596
1597
1598 void MenuDefinition::expandCaptions(Buffer const * buf, bool switchcap)
1599 {
1600         if (!buf)
1601                 return;
1602
1603         vector<docstring> caps;
1604         DocumentClass const & dc = buf->params().documentClass();
1605         TextClass::InsetLayouts::const_iterator lit = dc.insetLayouts().begin();
1606         TextClass::InsetLayouts::const_iterator len = dc.insetLayouts().end();
1607         for (; lit != len; ++lit) {
1608                 if (prefixIs(lit->first, from_ascii("Caption:")))
1609                         caps.push_back(lit->first);
1610         }
1611
1612         if (caps.empty() || (switchcap && caps.size() == 1))
1613                 return;
1614         if (caps.size() == 1) {
1615                 docstring dummy;
1616                 docstring const type = split(*caps.begin(), dummy, ':');
1617                 add(MenuItem(MenuItem::Command, qt_("Caption"),
1618                          FuncRequest(LFUN_CAPTION_INSERT, translateIfPossible(type))));
1619                 return;
1620         }
1621
1622         MenuDefinition captions;
1623
1624         vector<docstring>::const_iterator cit = caps.begin();
1625         vector<docstring>::const_iterator end = caps.end();
1626
1627         for (int ii = 1; cit != end; ++cit, ++ii) {
1628                 docstring dummy;
1629                 docstring const type = split(*cit, dummy, ':');
1630                 docstring const trtype = translateIfPossible(type);
1631                 docstring const cmitem = bformat(_("Caption (%1$s)"), trtype);
1632                 // make menu item optional, otherwise we would also see
1633                 // forbidden caption types
1634                 if (switchcap)
1635                         addWithStatusCheck(MenuItem(MenuItem::Command, toqstr(cmitem),
1636                                      FuncRequest(LFUN_INSET_MODIFY,
1637                                                  from_ascii("changetype ")
1638                                                  + type), QString(), true));
1639                 else
1640                         captions.addWithStatusCheck(MenuItem(MenuItem::Command,
1641                                                              toqstr(trtype),
1642                                                              FuncRequest(LFUN_CAPTION_INSERT,
1643                                                              type), QString(), true));
1644         }
1645         if (!captions.empty()) {
1646                 MenuItem item(MenuItem::Submenu, qt_("Caption"));
1647                 item.setSubmenu(captions);
1648                 add(item);
1649         }
1650 }
1651
1652
1653 void MenuDefinition::expandEnvironmentSeparators(BufferView const * bv)
1654 {
1655         if (!bv)
1656                 return;
1657         Text const * text = bv->cursor().text();
1658         // no paragraphs and no separators exist in math
1659         if (!text)
1660                 return;
1661
1662         pit_type pit = bv->cursor().selBegin().pit();
1663         Paragraph const & par = text->getPar(pit);
1664         docstring const curlayout = par.layout().name();
1665         docstring outerlayout;
1666         depth_type current_depth = par.params().depth();
1667         // check if we have an environment in our nesting hierarchy
1668         Paragraph cpar = par;
1669         while (true) {
1670                 if (pit == 0 || cpar.params().depth() == 0)
1671                         break;
1672                 --pit;
1673                 cpar = text->getPar(pit);
1674                 if (cpar.params().depth() < current_depth
1675                     && cpar.layout().isEnvironment()) {
1676                                 outerlayout = cpar.layout().name();
1677                                 current_depth = cpar.params().depth();
1678                 }
1679         }
1680         if (par.layout().isEnvironment()) {
1681                 docstring const label =
1682                         bformat(_("Start New Environment (%1$s)"),
1683                                 translateIfPossible(curlayout));
1684                 add(MenuItem(MenuItem::Command, toqstr(label),
1685                              FuncRequest(LFUN_ENVIRONMENT_SPLIT)));
1686         }
1687         if (!outerlayout.empty()) {
1688                 docstring const label =
1689                         bformat(_("Start New Parent Environment (%1$s)"),
1690                                 translateIfPossible(outerlayout));
1691                 add(MenuItem(MenuItem::Command, toqstr(label),
1692                              FuncRequest(LFUN_ENVIRONMENT_SPLIT,
1693                                          from_ascii("outer"))));
1694         }
1695 }
1696
1697 } // namespace anon
1698
1699
1700 /////////////////////////////////////////////////////////////////////
1701 // Menu::Impl definition and implementation
1702 /////////////////////////////////////////////////////////////////////
1703
1704 struct Menu::Impl
1705 {
1706         /// populates the menu or one of its submenu
1707         /// This is used as a recursive function
1708         void populate(QMenu & qMenu, MenuDefinition const & menu);
1709
1710         /// Only needed for top level menus.
1711         MenuDefinition * top_level_menu;
1712         /// our owning view
1713         GuiView * view;
1714         /// the name of this menu
1715         QString name;
1716 };
1717
1718
1719
1720 /// Get a MenuDefinition item label from the menu backend
1721 static QString label(MenuItem const & mi)
1722 {
1723         QString label = mi.label();
1724         label.replace("&", "&&");
1725
1726         QString shortcut = mi.shortcut();
1727         if (!shortcut.isEmpty()) {
1728                 int pos = label.indexOf(shortcut);
1729                 if (pos != -1)
1730                         //label.insert(pos, 1, char_type('&'));
1731                         label.replace(pos, 0, "&");
1732         }
1733
1734         QString const binding = mi.binding();
1735         if (!binding.isEmpty())
1736                 label += '\t' + binding;
1737
1738         return label;
1739 }
1740
1741 void Menu::Impl::populate(QMenu & qMenu, MenuDefinition const & menu)
1742 {
1743         LYXERR(Debug::GUI, "populating menu " << menu.name());
1744         if (menu.empty()) {
1745                 LYXERR(Debug::GUI, "\tERROR: empty menu " << menu.name());
1746                 return;
1747         }
1748         LYXERR(Debug::GUI, " *****  menu entries " << menu.size());
1749         MenuDefinition::const_iterator m = menu.begin();
1750         MenuDefinition::const_iterator end = menu.end();
1751         for (; m != end; ++m) {
1752                 if (m->kind() == MenuItem::Separator)
1753                         qMenu.addSeparator();
1754                 else if (m->kind() == MenuItem::Submenu) {
1755                         QMenu * subMenu = qMenu.addMenu(label(*m));
1756                         populate(*subMenu, m->submenu());
1757                         subMenu->setEnabled(m->status().enabled());
1758                 } else {
1759                         // we have a MenuItem::Command
1760                         qMenu.addAction(new Action(QIcon(), label(*m),
1761                                 m->func(), m->tooltip(), &qMenu));
1762                 }
1763         }
1764 }
1765
1766 #if (defined(Q_OS_WIN) || defined(Q_CYGWIN_WIN)) && (QT_VERSION >= 0x040600)
1767 class AlwaysMnemonicStyle : public QProxyStyle {
1768 public:
1769         int styleHint(StyleHint hint, const QStyleOption *opt = 0, const QWidget *widget = 0,
1770                 QStyleHintReturn *returnData = 0) const
1771         {
1772                 if (hint == QStyle::SH_UnderlineShortcut)
1773                         return 1;
1774                 return QProxyStyle::styleHint(hint, opt, widget, returnData);
1775         }
1776 };
1777 #endif
1778
1779 /////////////////////////////////////////////////////////////////////
1780 // Menu implementation
1781 /////////////////////////////////////////////////////////////////////
1782
1783 Menu::Menu(GuiView * gv, QString const & name, bool top_level, bool keyboard)
1784 : QMenu(gv), d(new Menu::Impl)
1785 {
1786 #if (defined(Q_OS_WIN) || defined(Q_CYGWIN_WIN)) && (QT_VERSION >= 0x040600)
1787         if (keyboard)
1788                 setStyle(new AlwaysMnemonicStyle);
1789 #else
1790         (void) keyboard;
1791 #endif
1792         d->top_level_menu = top_level? new MenuDefinition : 0;
1793         d->view = gv;
1794         d->name = name;
1795         setTitle(name);
1796         if (d->top_level_menu)
1797                 connect(this, SIGNAL(aboutToShow()), this, SLOT(updateView()));
1798 }
1799
1800
1801 Menu::~Menu()
1802 {
1803         delete d->top_level_menu;
1804         delete d;
1805 }
1806
1807
1808 void Menu::updateView()
1809 {
1810         guiApp->menus().updateMenu(this);
1811 }
1812
1813
1814 void Menu::clear()
1815 {
1816         QList<QAction *> items = actions();
1817         for (int i = 0; i != items.size(); ++i) {
1818                 // QAction::menu() returns 0 if there's no submenu.
1819                 delete items.at(i)->menu();
1820         }
1821         QMenu::clear();
1822 }
1823
1824
1825 /////////////////////////////////////////////////////////////////////
1826 // Menus::Impl definition and implementation
1827 /////////////////////////////////////////////////////////////////////
1828
1829 struct Menus::Impl {
1830         ///
1831         bool hasMenu(QString const &) const;
1832         ///
1833         MenuDefinition & getMenu(QString const &);
1834         ///
1835         MenuDefinition const & getMenu(QString const &) const;
1836
1837         /// Expands some special entries of the menu
1838         /** The entries with the following kind are expanded to a
1839             sequence of Command MenuItems: Lastfiles, Documents,
1840             ViewFormats, ExportFormats, UpdateFormats, Branches,
1841             Indices, Arguments, SwitchArguments, Captions, SwitchCaptions,
1842             EnvironmentSeparators
1843         */
1844         void expand(MenuDefinition const & frommenu, MenuDefinition & tomenu,
1845                 BufferView const *) const;
1846
1847         /// Initialize specific MACOS X menubar
1848         void macxMenuBarInit(QMenuBar * qmb);
1849
1850         /// Mac special menu.
1851         /** This defines a menu whose entries list the FuncRequests
1852             that will be removed by expand() in other menus. This is
1853             used by the Qt/Mac code.
1854
1855             NOTE: Qt does not remove the menu items when clearing a QMenuBar,
1856             such that the items will keep accessing the FuncRequests in
1857             the MenuDefinition. While Menus::Impl might be recreated,
1858             we keep mac_special_menu_ in memory by making it static.
1859         */
1860         static MenuDefinition mac_special_menu_;
1861
1862         ///
1863         MenuList menulist_;
1864         ///
1865         MenuDefinition menubar_;
1866
1867         typedef QMap<GuiView *, QHash<QString, Menu*> > NameMap;
1868
1869         /// name to menu for \c menu() method.
1870         NameMap name_map_;
1871 };
1872
1873
1874 MenuDefinition Menus::Impl::mac_special_menu_;
1875
1876
1877 /*
1878   Here is what the Qt documentation says about how a menubar is chosen:
1879
1880      1) If the window has a QMenuBar then it is used. 2) If the window
1881      is a modal then its menubar is used. If no menubar is specified
1882      then a default menubar is used (as documented below) 3) If the
1883      window has no parent then the default menubar is used (as
1884      documented below).
1885
1886      The above 3 steps are applied all the way up the parent window
1887      chain until one of the above are satisifed. If all else fails a
1888      default menubar will be created, the default menubar on Qt/Mac is
1889      an empty menubar, however you can create a different default
1890      menubar by creating a parentless QMenuBar, the first one created
1891      will thus be designated the default menubar, and will be used
1892      whenever a default menubar is needed.
1893
1894   Thus, for Qt/Mac, we add the menus to a free standing menubar, so
1895   that this menubar will be used also when one of LyX' dialogs has
1896   focus. (JMarc)
1897 */
1898 void Menus::Impl::macxMenuBarInit(QMenuBar * qmb)
1899 {
1900         /* Since Qt 4.2, the qt/mac menu code has special code for
1901            specifying the role of a menu entry. However, it does not
1902            work very well with our scheme of creating menus on demand,
1903            and therefore we need to put these entries in a special
1904            invisible menu. (JMarc)
1905         */
1906
1907         /* The entries of our special mac menu. If we add support for
1908          * special entries in Menus, we could imagine something
1909          * like
1910          *    SpecialItem About " "About LyX" "dialog-show aboutlyx"
1911          * and therefore avoid hardcoding. I am not sure it is worth
1912          * the hassle, though. (JMarc)
1913          */
1914         struct MacMenuEntry {
1915                 FuncCode action;
1916                 char const * arg;
1917                 char const * label;
1918                 QAction::MenuRole role;
1919         };
1920
1921         static MacMenuEntry entries[] = {
1922                 {LFUN_DIALOG_SHOW, "aboutlyx", "About LyX",
1923                  QAction::AboutRole},
1924                 {LFUN_DIALOG_SHOW, "prefs", "Preferences",
1925                  QAction::PreferencesRole},
1926 #if !(defined(QT_MAC_USE_COCOA) || (QT_VERSION >= 0x050000))
1927                 /* This doesn't work with Cocoa. */
1928                 {LFUN_RECONFIGURE, "", "Reconfigure",
1929                  QAction::ApplicationSpecificRole},
1930 #endif
1931                 {LFUN_LYX_QUIT, "", "Quit LyX", QAction::QuitRole}
1932         };
1933         const size_t num_entries = sizeof(entries) / sizeof(entries[0]);
1934         const bool first_call = mac_special_menu_.empty();
1935
1936         LYXERR(Debug::GUI, "Creating Mac OS X special menu bar");
1937         // the special menu for Menus. Fill it up only once.
1938         if (first_call) {
1939                 for (size_t i = 0 ; i < num_entries ; ++i) {
1940                         FuncRequest const func(entries[i].action,
1941                                 from_utf8(entries[i].arg));
1942                         mac_special_menu_.add(MenuItem(MenuItem::Command,
1943                                 entries[i].label, func));
1944                 }
1945         }
1946
1947         // add the entries to a QMenu that will eventually be empty
1948         // and therefore invisible.
1949         QMenu * qMenu = qmb->addMenu("special");
1950         MenuDefinition::const_iterator cit = mac_special_menu_.begin();
1951         MenuDefinition::const_iterator end = mac_special_menu_.end();
1952         for (size_t i = 0 ; cit != end ; ++cit, ++i) {
1953                 Action * action = new Action(QIcon(), cit->label(),
1954                         cit->func(), QString(), qMenu);
1955                 action->setMenuRole(entries[i].role);
1956                 qMenu->addAction(action);
1957         }
1958 }
1959
1960
1961 void Menus::Impl::expand(MenuDefinition const & frommenu,
1962         MenuDefinition & tomenu, BufferView const * bv) const
1963 {
1964         if (!tomenu.empty())
1965                 tomenu.clear();
1966
1967         for (MenuDefinition::const_iterator cit = frommenu.begin();
1968              cit != frommenu.end() ; ++cit) {
1969                 Buffer const * buf = bv ? &bv->buffer() : 0;
1970                 switch (cit->kind()) {
1971                 case MenuItem::Lastfiles:
1972                         tomenu.expandLastfiles();
1973                         break;
1974
1975                 case MenuItem::Documents:
1976                         tomenu.expandDocuments();
1977                         break;
1978
1979                 case MenuItem::Bookmarks:
1980                         tomenu.expandBookmarks();
1981                         break;
1982
1983                 case MenuItem::ImportFormats:
1984                 case MenuItem::ViewFormats:
1985                 case MenuItem::UpdateFormats:
1986                 case MenuItem::ExportFormats:
1987                         tomenu.expandFormats(cit->kind(), buf);
1988                         break;
1989
1990                 case MenuItem::CharStyles:
1991                         tomenu.expandFlexInsert(buf, InsetLayout::CHARSTYLE);
1992                         break;
1993
1994                 case MenuItem::Custom:
1995                         tomenu.expandFlexInsert(buf, InsetLayout::CUSTOM);
1996                         break;
1997
1998                 case MenuItem::Elements:
1999                         tomenu.expandFlexInsert(buf, InsetLayout::ELEMENT);
2000                         break;
2001
2002                 case MenuItem::FloatListInsert:
2003                         tomenu.expandFloatListInsert(buf);
2004                         break;
2005
2006                 case MenuItem::FloatInsert:
2007                         tomenu.expandFloatInsert(buf);
2008                         break;
2009
2010                 case MenuItem::PasteRecent:
2011                         tomenu.expandPasteRecent(buf);
2012                         break;
2013
2014                 case MenuItem::Toolbars:
2015                         tomenu.expandToolbars();
2016                         break;
2017
2018                 case MenuItem::Branches:
2019                         tomenu.expandBranches(buf);
2020                         break;
2021
2022                 case MenuItem::Indices:
2023                         tomenu.expandIndices(buf);
2024                         break;
2025
2026                 case MenuItem::IndicesContext:
2027                         tomenu.expandIndicesContext(buf);
2028                         break;
2029
2030                 case MenuItem::IndicesLists:
2031                         tomenu.expandIndices(buf, true);
2032                         break;
2033
2034                 case MenuItem::IndicesListsContext:
2035                         tomenu.expandIndicesContext(buf, true);
2036                         break;
2037
2038                 case MenuItem::CiteStyles:
2039                         tomenu.expandCiteStyles(bv);
2040                         break;
2041
2042                 case MenuItem::Toc:
2043                         tomenu.expandToc(buf);
2044                         break;
2045
2046                 case MenuItem::GraphicsGroups:
2047                         tomenu.expandGraphicsGroups(bv);
2048                         break;
2049
2050                 case MenuItem::SpellingSuggestions:
2051                         tomenu.expandSpellingSuggestions(bv);
2052                         break;
2053
2054                 case MenuItem::LanguageSelector:
2055                         tomenu.expandLanguageSelector(buf);
2056                         break;
2057
2058                 case MenuItem::Arguments:
2059                         tomenu.expandArguments(bv, false);
2060                         break;
2061
2062                 case MenuItem::SwitchArguments:
2063                         tomenu.expandArguments(bv, true);
2064                         break;
2065
2066                 case MenuItem::Captions:
2067                         tomenu.expandCaptions(buf, false);
2068                         break;
2069
2070                 case MenuItem::SwitchCaptions:
2071                         tomenu.expandCaptions(buf, true);
2072                         break;
2073
2074                 case MenuItem::EnvironmentSeparators:
2075                         tomenu.expandEnvironmentSeparators(bv);
2076                         break;
2077
2078                 case MenuItem::Submenu: {
2079                         MenuItem item(*cit);
2080                         item.setSubmenu(MenuDefinition(cit->submenuname()));
2081                         expand(getMenu(cit->submenuname()), item.submenu(), bv);
2082                         tomenu.addWithStatusCheck(item);
2083                 }
2084                 break;
2085
2086                 case MenuItem::Info:
2087                 case MenuItem::Help:
2088                 case MenuItem::Separator:
2089                         tomenu.addWithStatusCheck(*cit);
2090                         break;
2091
2092                 case MenuItem::Command:
2093                         if (!mac_special_menu_.hasFunc(cit->func()))
2094                                 tomenu.addWithStatusCheck(*cit);
2095                 }
2096         }
2097
2098         // we do not want the menu to end with a separator
2099         if (!tomenu.empty() && tomenu.items_.back().kind() == MenuItem::Separator)
2100                 tomenu.items_.pop_back();
2101
2102         // Check whether the shortcuts are unique
2103         tomenu.checkShortcuts();
2104 }
2105
2106
2107 bool Menus::Impl::hasMenu(QString const & name) const
2108 {
2109         return find_if(menulist_.begin(), menulist_.end(),
2110                 MenuNamesEqual(name)) != menulist_.end();
2111 }
2112
2113
2114 MenuDefinition const & Menus::Impl::getMenu(QString const & name) const
2115 {
2116         const_iterator cit = find_if(menulist_.begin(), menulist_.end(),
2117                 MenuNamesEqual(name));
2118         if (cit == menulist_.end()) {
2119                 LYXERR0("No submenu named " << name);
2120                 LASSERT(false, { static const MenuDefinition m; return m; });
2121         }
2122         return (*cit);
2123 }
2124
2125
2126 MenuDefinition & Menus::Impl::getMenu(QString const & name)
2127 {
2128         iterator it = find_if(menulist_.begin(), menulist_.end(),
2129                 MenuNamesEqual(name));
2130         if (it == menulist_.end()) {
2131                 LYXERR0("No submenu named " << name);
2132                 LASSERT(false, { static MenuDefinition m; return m; });
2133         }
2134         return (*it);
2135 }
2136
2137
2138 /////////////////////////////////////////////////////////////////////
2139 //
2140 // Menus
2141 //
2142 /////////////////////////////////////////////////////////////////////
2143
2144 Menus::Menus() : d(new Impl) {}
2145
2146
2147 Menus::~Menus()
2148 {
2149         delete d;
2150 }
2151
2152
2153 void Menus::reset()
2154 {
2155         delete d;
2156         d = new Impl;
2157 }
2158
2159
2160 void Menus::read(Lexer & lex)
2161 {
2162         enum {
2163                 md_menu,
2164                 md_menubar,
2165                 md_endmenuset
2166         };
2167
2168         LexerKeyword menutags[] = {
2169                 { "end", md_endmenuset },
2170                 { "menu", md_menu },
2171                 { "menubar", md_menubar }
2172         };
2173
2174         // consistency check
2175         if (compare_ascii_no_case(lex.getString(), "menuset"))
2176                 LYXERR0("Menus::read: ERROR wrong token: `" << lex.getString() << '\'');
2177
2178         lex.pushTable(menutags);
2179         lex.setContext("Menus::read");
2180
2181         bool quit = false;
2182
2183         while (lex.isOK() && !quit) {
2184                 switch (lex.lex()) {
2185                 case md_menubar:
2186                         d->menubar_.read(lex);
2187                         break;
2188                 case md_menu: {
2189                         lex.next(true);
2190                         QString const name = toqstr(lex.getDocString());
2191                         if (d->hasMenu(name))
2192                                 d->getMenu(name).read(lex);
2193                         else {
2194                                 MenuDefinition menu(name);
2195                                 menu.read(lex);
2196                                 d->menulist_.push_back(menu);
2197                         }
2198                         break;
2199                 }
2200                 case md_endmenuset:
2201                         quit = true;
2202                         break;
2203                 default:
2204                         lex.printError("Unknown menu tag");
2205                         break;
2206                 }
2207         }
2208         lex.popTable();
2209 }
2210
2211
2212 bool Menus::searchMenu(FuncRequest const & func,
2213         docstring_list & names) const
2214 {
2215         MenuDefinition menu;
2216         d->expand(d->menubar_, menu, 0);
2217         return menu.searchMenu(func, names);
2218 }
2219
2220
2221 void Menus::fillMenuBar(QMenuBar * qmb, GuiView * view, bool initial)
2222 {
2223         if (initial) {
2224 #ifdef Q_OS_MAC
2225                 // setup special mac specific menu items, but only do this
2226                 // the first time a QMenuBar is created. Otherwise Qt will
2227                 // create duplicate items in the application menu. It seems
2228                 // that Qt does not remove them when the QMenubar is cleared.
2229                 d->macxMenuBarInit(qmb);
2230 #endif
2231         } else {
2232                 // Clear all menubar contents before filling it.
2233                 qmb->clear();
2234 #if (QT_VERSION >= 0x050000 && defined(Q_OS_MAC))
2235                 d->macxMenuBarInit(qmb);
2236 #endif
2237         }
2238
2239         LYXERR(Debug::GUI, "populating menu bar" << d->menubar_.name());
2240
2241         if (d->menubar_.empty()) {
2242                 LYXERR(Debug::GUI, "\tERROR: empty menu bar"
2243                         << d->menubar_.name());
2244                 return;
2245         }
2246         LYXERR(Debug::GUI, "menu bar entries " << d->menubar_.size());
2247
2248         MenuDefinition menu;
2249         BufferView * bv = 0;
2250         if (view)
2251                 bv = view->currentBufferView();
2252         d->expand(d->menubar_, menu, bv);
2253
2254         MenuDefinition::const_iterator m = menu.begin();
2255         MenuDefinition::const_iterator end = menu.end();
2256
2257         for (; m != end; ++m) {
2258
2259                 if (m->kind() != MenuItem::Submenu) {
2260                         LYXERR(Debug::GUI, "\tERROR: not a submenu " << m->label());
2261                         continue;
2262                 }
2263
2264                 LYXERR(Debug::GUI, "menu bar item " << m->label()
2265                         << " is a submenu named " << m->submenuname());
2266
2267                 QString name = m->submenuname();
2268                 if (!d->hasMenu(name)) {
2269                         LYXERR(Debug::GUI, "\tERROR: " << name
2270                                 << " submenu has no menu!");
2271                         continue;
2272                 }
2273
2274                 Menu * menu = new Menu(view, m->submenuname(), true);
2275                 menu->setTitle(label(*m));
2276
2277 #if defined(Q_OS_MAC) && (defined(QT_MAC_USE_COCOA) || (QT_VERSION >= 0x050000))
2278                 // On Mac OS with QT/cocoa, the menu is not displayed if there is no action
2279                 // so we create a temporary one here
2280                 QAction * action = new QAction(menu);
2281                 menu->addAction(action);
2282 #endif
2283
2284                 qmb->addMenu(menu);
2285
2286                 d->name_map_[view][name] = menu;
2287         }
2288 }
2289
2290
2291 void Menus::updateMenu(Menu * qmenu)
2292 {
2293         LYXERR(Debug::GUI, "Triggered menu: " << qmenu->d->name);
2294         qmenu->clear();
2295
2296         if (qmenu->d->name.isEmpty())
2297                 return;
2298
2299         docstring identifier = qstring_to_ucs4(qmenu->d->name);
2300         MenuDefinition fromLyxMenu(qmenu->d->name);
2301         while (!identifier.empty()) {
2302                 docstring menu_name;
2303                 identifier = split(identifier, menu_name, ';');
2304
2305                 if (!d->hasMenu(toqstr(menu_name))) {
2306                         LYXERR(Debug::GUI, "\tWARNING: non existing menu: "
2307                                 << menu_name);
2308                         continue;
2309                 }
2310
2311                 MenuDefinition cat_menu = d->getMenu(toqstr(menu_name));
2312                 //FIXME: 50 is a wild guess. We should take into account here
2313                 //the expansion of menu items, disabled optional items etc.
2314                 bool const in_sub_menu = !fromLyxMenu.empty()
2315                         && fromLyxMenu.size() + cat_menu.size() > 50 ;
2316                 if (in_sub_menu)
2317                         fromLyxMenu.catSub(menu_name);
2318                 else
2319                         fromLyxMenu.cat(cat_menu);
2320                 fromLyxMenu.add(MenuItem(MenuItem::Separator));
2321         }
2322
2323         if (fromLyxMenu.empty()) {
2324                 qmenu->addAction(qt_("No Action Defined!"));
2325                 return;
2326         }
2327
2328         BufferView * bv = 0;
2329         if (qmenu->d->view)
2330                 bv = qmenu->d->view->currentBufferView();
2331         d->expand(fromLyxMenu, *qmenu->d->top_level_menu, bv);
2332         qmenu->d->populate(*qmenu, *qmenu->d->top_level_menu);
2333 }
2334
2335
2336 Menu * Menus::menu(QString const & name, GuiView & view, bool keyboard)
2337 {
2338         LYXERR(Debug::GUI, "Context menu requested: " << name);
2339         Menu * menu = d->name_map_[&view].value(name, 0);
2340         if (!menu && !name.startsWith("context-")) {
2341                 LYXERR0("requested context menu not found: " << name);
2342                 return 0;
2343         }
2344
2345         menu = new Menu(&view, name, true, keyboard);
2346         d->name_map_[&view][name] = menu;
2347         return menu;
2348 }
2349
2350 } // namespace frontend
2351 } // namespace lyx
2352
2353 #include "moc_Menus.cpp"