]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/Menus.cpp
Make Japanese Biblatex-aware
[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 #include "insets/InsetQuotes.h"
64
65 #include "support/lassert.h"
66 #include "support/convert.h"
67 #include "support/debug.h"
68 #include "support/docstring_list.h"
69 #include "support/filetools.h"
70 #include "support/gettext.h"
71 #include "support/lstrings.h"
72
73 #include <QCursor>
74 #include <QHash>
75 #include <QList>
76 #include <QMenuBar>
77 #include <QString>
78 #if QT_VERSION >= 0x040600
79 #include <QProxyStyle>
80 #endif
81
82 #include <algorithm>
83 #include <memory>
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                 /** This is the list of quotation marks available */
194                 SwitchQuotes
195         };
196
197         explicit MenuItem(Kind kind) : kind_(kind), optional_(false) {}
198
199         MenuItem(Kind kind,
200                  QString const & label,
201                  QString const & submenu = QString(),
202                  QString const & tooltip = QString(),
203                  bool optional = false)
204                 : kind_(kind), label_(label), func_(make_shared<FuncRequest>()),
205                   submenuname_(submenu), tooltip_(tooltip), optional_(optional)
206         {
207                 LATTEST(kind == Submenu || kind == Help || kind == Info);
208         }
209
210         MenuItem(Kind kind,
211                  QString const & label,
212                  FuncRequest const & func,
213                  QString const & tooltip = QString(),
214                  bool optional = false,
215                  FuncRequest::Origin origin = FuncRequest::MENU)
216                 : kind_(kind), label_(label), func_(make_shared<FuncRequest>(func)),
217                   tooltip_(tooltip), optional_(optional)
218         {
219                 func_->setOrigin(origin);
220         }
221
222         /// The label of a given menuitem
223         QString label() const
224         {
225                 int const index = label_.lastIndexOf('|');
226                 return index == -1 ? label_ : label_.left(index);
227         }
228
229         /// The keyboard shortcut (usually underlined in the entry)
230         QString shortcut() const
231         {
232                 int const index = label_.lastIndexOf('|');
233                 return index == -1 ? QString() : label_.mid(index + 1);
234         }
235         /// The complete label, with label and shortcut separated by a '|'
236         QString fulllabel() const { return label_; }
237         /// The kind of entry
238         Kind kind() const { return kind_; }
239         /// the action (if relevant)
240         shared_ptr<FuncRequest const> func() const { return func_; }
241         /// the tooltip
242         QString const & tooltip() const { return tooltip_; }
243         /// returns true if the entry should be omitted when disabled
244         bool optional() const { return optional_; }
245         /// returns the status of the lfun associated with this entry
246         FuncStatus const & status() const { return status_; }
247         /// returns the status of the lfun associated with this entry
248         FuncStatus & status() { return status_; }
249         /// returns the status of the lfun associated with this entry
250         void status(FuncStatus const & status) { status_ = status; }
251
252         ///returns the binding associated to this action.
253         QString binding() const
254         {
255                 if (kind_ != Command)
256                         return QString();
257                 // Get the keys bound to this action, but keep only the
258                 // first one later
259                 KeyMap::Bindings bindings = theTopLevelKeymap().findBindings(*func_);
260                 if (!bindings.empty())
261                         return toqstr(bindings.begin()->print(KeySequence::ForGui));
262
263                 LYXERR(Debug::KBMAP, "No binding for "
264                         << lyxaction.getActionName(func_->action())
265                         << '(' << func_->argument() << ')');
266                 return QString();
267         }
268
269         /// the description of the  submenu (if relevant)
270         QString const & submenuname() const { return submenuname_; }
271         /// set the description of the  submenu
272         void submenuname(QString const & name) { submenuname_ = name; }
273         ///
274         bool hasSubmenu() const { return !submenu_.isEmpty(); }
275         ///
276         MenuDefinition const & submenu() const { return submenu_.at(0); }
277         MenuDefinition & submenu() { return submenu_[0]; }
278         ///
279         void setSubmenu(MenuDefinition const & menu)
280         {
281                 submenu_.clear();
282                 submenu_.append(menu);
283         }
284
285 private:
286         ///
287         Kind kind_;
288         ///
289         QString label_;
290         ///
291         shared_ptr<FuncRequest> func_;// non-null
292         ///
293         QString submenuname_;
294         ///
295         QString tooltip_;
296         ///
297         bool optional_;
298         ///
299         FuncStatus status_;
300         /// contains 0 or 1 item.
301         QList<MenuDefinition> submenu_;
302 };
303
304 ///
305 class MenuDefinition {
306 public:
307         ///
308         typedef std::vector<MenuItem> ItemList;
309         ///
310         typedef ItemList::const_iterator const_iterator;
311         ///
312         explicit MenuDefinition(QString const & name = QString()) : name_(name) {}
313
314         ///
315         void read(Lexer &);
316         ///
317         QString const & name() const { return name_; }
318         ///
319         bool empty() const { return items_.empty(); }
320         /// Clear the menu content.
321         void clear() { items_.clear(); }
322         ///
323         size_t size() const { return items_.size(); }
324         ///
325         const_iterator begin() const { return items_.begin(); }
326         ///
327         const_iterator end() const { return items_.end(); }
328         ///
329         void cat(MenuDefinition const & other);
330         ///
331         void catSub(docstring const & name);
332
333         // search for func in this menu iteratively, and put menu
334         // names in a stack.
335         bool searchMenu(FuncRequest const & func, docstring_list & names)
336                 const;
337         ///
338         bool hasFunc(FuncRequest const &) const;
339         /// Add the menu item unconditionally
340         void add(MenuItem const & item) { items_.push_back(item); }
341         /// Checks the associated FuncRequest status before adding the
342         /// menu item.
343         void addWithStatusCheck(MenuItem const &);
344         // Check whether the menu shortcuts are unique
345         void checkShortcuts() const;
346         ///
347         void expandLastfiles();
348         void expandDocuments();
349         void expandBookmarks();
350         void expandFormats(MenuItem::Kind const kind, Buffer const * buf);
351         void expandFloatListInsert(Buffer const * buf);
352         void expandFloatInsert(Buffer const * buf);
353         void expandFlexInsert(Buffer const * buf, InsetLayout::InsetLyXType type);
354         void expandTocSubmenu(std::string const & type, Toc const & toc_list);
355         void expandToc2(Toc const & toc_list, size_t from, size_t to, int depth, string toc_type);
356         void expandToc(Buffer const * buf);
357         void expandPasteRecent(Buffer const * buf);
358         void expandToolbars();
359         void expandBranches(Buffer const * buf);
360         void expandIndices(Buffer const * buf, bool listof = false);
361         void expandIndicesContext(Buffer const * buf, bool listof = false);
362         void expandCiteStyles(BufferView const *);
363         void expandGraphicsGroups(BufferView const *);
364         void expandSpellingSuggestions(BufferView const *);
365         void expandLanguageSelector(Buffer const * buf);
366         void expandArguments(BufferView const *, bool switcharg = false);
367         void expandCaptions(Buffer const * buf, bool switchcap = false);
368         void expandEnvironmentSeparators(BufferView const *);
369         void expandQuotes(BufferView const *);
370         ///
371         ItemList items_;
372         ///
373         QString name_;
374 };
375
376
377 /// Helper for std::find_if
378 class MenuNamesEqual
379 {
380 public:
381         MenuNamesEqual(QString const & name) : name_(name) {}
382         bool operator()(MenuDefinition const & menu) const { return menu.name() == name_; }
383 private:
384         QString name_;
385 };
386
387
388 ///
389 typedef std::vector<MenuDefinition> MenuList;
390 ///
391 typedef MenuList::const_iterator const_iterator;
392 ///
393 typedef MenuList::iterator iterator;
394
395 /////////////////////////////////////////////////////////////////////
396 // MenuDefinition implementation
397 /////////////////////////////////////////////////////////////////////
398
399 void MenuDefinition::addWithStatusCheck(MenuItem const & i)
400 {
401         switch (i.kind()) {
402
403         case MenuItem::Command: {
404                 FuncStatus status = lyx::getStatus(*i.func());
405                 if (status.unknown() || (!status.enabled() && i.optional()))
406                         break;
407                 items_.push_back(i);
408                 items_.back().status(status);
409                 break;
410         }
411
412         case MenuItem::Submenu: {
413                 bool enabled = false;
414                 if (i.hasSubmenu()) {
415                         for (const_iterator cit = i.submenu().begin();
416                                   cit != i.submenu().end(); ++cit) {
417                                 // Only these kind of items affect the status of the submenu
418                                 if ((cit->kind() == MenuItem::Command
419                                      || cit->kind() == MenuItem::Submenu
420                                      || cit->kind() == MenuItem::Help)
421                                     && cit->status().enabled()) {
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                 md_switchquotes
484         };
485
486         LexerKeyword menutags[] = {
487                 { "arguments", md_arguments },
488                 { "bookmarks", md_bookmarks },
489                 { "branches", md_branches },
490                 { "captions", md_captions },
491                 { "charstyles", md_charstyles },
492                 { "citestyles", md_citestyles },
493                 { "custom", md_custom },
494                 { "documents", md_documents },
495                 { "elements", md_elements },
496                 { "end", md_endmenu },
497                 { "environmentseparators", md_env_separators },
498                 { "exportformats", md_exportformats },
499                 { "floatinsert", md_floatinsert },
500                 { "floatlistinsert", md_floatlistinsert },
501                 { "graphicsgroups", md_graphicsgroups },
502                 { "importformats", md_importformats },
503                 { "indices", md_indices },
504                 { "indicescontext", md_indicescontext },
505                 { "indiceslists", md_indiceslists },
506                 { "indiceslistscontext", md_indiceslistscontext },
507                 { "item", md_item },
508                 { "languageselector", md_languageselector },
509                 { "lastfiles", md_lastfiles },
510                 { "optitem", md_optitem },
511                 { "optsubmenu", md_optsubmenu },
512                 { "pasterecent", md_pasterecent },
513                 { "separator", md_separator },
514                 { "spellingsuggestions", md_spellingsuggestions },
515                 { "submenu", md_submenu },
516                 { "switcharguments", md_switcharguments },
517                 { "switchcaptions", md_switchcaptions },
518                 { "switchquotes", md_switchquotes },
519                 { "toc", md_toc },
520                 { "toolbars", md_toolbars },
521                 { "updateformats", md_updateformats },
522                 { "viewformats", md_viewformats }
523         };
524
525         lex.pushTable(menutags);
526         lex.setContext("MenuDefinition::read: ");
527
528         int md_type = 0;
529         while (lex.isOK() && md_type != md_endmenu) {
530                 switch (md_type = lex.lex()) {
531                 case md_optitem:
532                 case md_item: {
533                         lex.next(true);
534                         docstring const name = translateIfPossible(lex.getDocString());
535                         lex.next(true);
536                         string const command = lex.getString();
537                         FuncRequest func = lyxaction.lookupFunc(command);
538                         FuncRequest::Origin origin = FuncRequest::MENU;
539                         if (name_.startsWith("context-toc-"))
540                                 origin = FuncRequest::TOC;
541                         bool const optional = (md_type == md_optitem);
542                         add(MenuItem(MenuItem::Command, toqstr(name), func, QString(), optional, origin));
543                         break;
544                 }
545
546                 case md_separator:
547                         add(MenuItem(MenuItem::Separator));
548                         break;
549
550                 case md_lastfiles:
551                         add(MenuItem(MenuItem::Lastfiles));
552                         break;
553
554                 case md_charstyles:
555                         add(MenuItem(MenuItem::CharStyles));
556                         break;
557
558                 case md_custom:
559                         add(MenuItem(MenuItem::Custom));
560                         break;
561
562                 case md_elements:
563                         add(MenuItem(MenuItem::Elements));
564                         break;
565
566                 case md_documents:
567                         add(MenuItem(MenuItem::Documents));
568                         break;
569
570                 case md_bookmarks:
571                         add(MenuItem(MenuItem::Bookmarks));
572                         break;
573
574                 case md_toc:
575                         add(MenuItem(MenuItem::Toc));
576                         break;
577
578                 case md_viewformats:
579                         add(MenuItem(MenuItem::ViewFormats));
580                         break;
581
582                 case md_updateformats:
583                         add(MenuItem(MenuItem::UpdateFormats));
584                         break;
585
586                 case md_exportformats:
587                         add(MenuItem(MenuItem::ExportFormats));
588                         break;
589
590                 case md_importformats:
591                         add(MenuItem(MenuItem::ImportFormats));
592                         break;
593
594                 case md_floatlistinsert:
595                         add(MenuItem(MenuItem::FloatListInsert));
596                         break;
597
598                 case md_floatinsert:
599                         add(MenuItem(MenuItem::FloatInsert));
600                         break;
601
602                 case md_pasterecent:
603                         add(MenuItem(MenuItem::PasteRecent));
604                         break;
605
606                 case md_toolbars:
607                         add(MenuItem(MenuItem::Toolbars));
608                         break;
609
610                 case md_branches:
611                         add(MenuItem(MenuItem::Branches));
612                         break;
613
614                 case md_citestyles:
615                         add(MenuItem(MenuItem::CiteStyles));
616                         break;
617
618                 case md_graphicsgroups:
619                         add(MenuItem(MenuItem::GraphicsGroups));
620                         break;
621
622                 case md_spellingsuggestions:
623                         add(MenuItem(MenuItem::SpellingSuggestions));
624                         break;
625
626                 case md_languageselector:
627                         add(MenuItem(MenuItem::LanguageSelector));
628                         break;
629
630                 case md_indices:
631                         add(MenuItem(MenuItem::Indices));
632                         break;
633
634                 case md_indicescontext:
635                         add(MenuItem(MenuItem::IndicesContext));
636                         break;
637
638                 case md_indiceslists:
639                         add(MenuItem(MenuItem::IndicesLists));
640                         break;
641
642                 case md_indiceslistscontext:
643                         add(MenuItem(MenuItem::IndicesListsContext));
644                         break;
645
646                 case md_arguments:
647                         add(MenuItem(MenuItem::Arguments));
648                         break;
649
650                 case md_switcharguments:
651                         add(MenuItem(MenuItem::SwitchArguments));
652                         break;
653
654                 case md_captions:
655                         add(MenuItem(MenuItem::Captions));
656                         break;
657
658                 case md_switchcaptions:
659                         add(MenuItem(MenuItem::SwitchCaptions));
660                         break;
661
662                 case md_env_separators:
663                         add(MenuItem(MenuItem::EnvironmentSeparators));
664                         break;
665
666                 case md_switchquotes:
667                         add(MenuItem(MenuItem::SwitchQuotes));
668                         break;
669
670                 case md_optsubmenu:
671                 case md_submenu: {
672                         lex.next(true);
673                         docstring const mlabel = translateIfPossible(lex.getDocString());
674                         lex.next(true);
675                         docstring const mname = lex.getDocString();
676                         bool const optional = (md_type == md_optsubmenu);
677                         add(MenuItem(MenuItem::Submenu,
678                                 toqstr(mlabel), toqstr(mname), QString(), optional));
679                         break;
680                 }
681
682                 case md_endmenu:
683                         break;
684
685                 default:
686                         lex.printError("Unknown menu tag");
687                         break;
688                 }
689         }
690         lex.popTable();
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         FormatList formats;
1041         FuncCode action = LFUN_NOACTION;
1042
1043         switch (kind) {
1044         case MenuItem::ImportFormats:
1045                 formats = theConverters().importableFormats();
1046                 action = LFUN_BUFFER_IMPORT;
1047                 break;
1048         case MenuItem::ViewFormats:
1049                 formats = buf->params().exportableFormats(true);
1050                 action = LFUN_BUFFER_VIEW;
1051                 break;
1052         case MenuItem::UpdateFormats:
1053                 formats = buf->params().exportableFormats(true);
1054                 action = LFUN_BUFFER_UPDATE;
1055                 break;
1056         case MenuItem::ExportFormats:
1057                 formats = buf->params().exportableFormats(false);
1058                 action = LFUN_BUFFER_EXPORT;
1059                 break;
1060         default:
1061                 LATTEST(false);
1062                 return;
1063         }
1064
1065         bool const view_update = (kind == MenuItem::ViewFormats
1066                         || kind == MenuItem::UpdateFormats);
1067
1068         QString smenue;
1069         if (view_update)
1070                 smenue = (kind == MenuItem::ViewFormats
1071                         ? qt_("View (Other Formats)|F")
1072                         : qt_("Update (Other Formats)|p"));
1073         MenuItem item(MenuItem::Submenu, smenue);
1074         item.setSubmenu(MenuDefinition(smenue));
1075
1076         for (Format const * f : formats) {
1077                 if (f->dummy())
1078                         continue;
1079
1080                 docstring lab = f->prettyname();
1081                 docstring const scut = from_utf8(f->shortcut());
1082                 docstring const tmplab = lab;
1083
1084                 if (!scut.empty())
1085                         lab += char_type('|') + scut;
1086                 docstring const lab_i18n = translateIfPossible(lab);
1087                 docstring const shortcut = split(lab_i18n, lab, '|');
1088
1089                 bool const untranslated = (lab == lab_i18n);
1090                 docstring label = untranslated ? translateIfPossible(tmplab) : lab;
1091
1092                 switch (kind) {
1093                 case MenuItem::ImportFormats:
1094                         label += from_ascii("...");
1095                         break;
1096                 case MenuItem::ViewFormats:
1097                 case MenuItem::UpdateFormats:
1098                         if (f->name() == buf->params().getDefaultOutputFormat()) {
1099                                 docstring lbl = (kind == MenuItem::ViewFormats
1100                                         ? bformat(_("View [%1$s]|V"), label)
1101                                         : bformat(_("Update [%1$s]|U"), label));
1102                                 add(MenuItem(MenuItem::Command, toqstr(lbl), FuncRequest(action)));
1103                                 continue;
1104                         }
1105                 // fall through
1106                 case MenuItem::ExportFormats:
1107                         if (!f->inExportMenu())
1108                                 continue;
1109                         break;
1110                 default:
1111                         // we already asserted earlier in this case
1112                         // LATTEST(false);
1113                         continue;
1114                 }
1115                 if (!shortcut.empty())
1116                         label += '|' + shortcut;
1117
1118                 if (view_update) {
1119                         // note that at this point, we know that buf is not null
1120                         LATTEST(buf);
1121                         item.submenu().addWithStatusCheck(MenuItem(MenuItem::Command,
1122                                 toqstr(label), FuncRequest(action, f->name())));
1123                 } else {
1124                         if (buf)
1125                                 addWithStatusCheck(MenuItem(MenuItem::Command, toqstr(label),
1126                                         FuncRequest(action, f->name())));
1127                         else
1128                                 add(MenuItem(MenuItem::Command, toqstr(label),
1129                                         FuncRequest(action, f->name())));
1130                 }
1131         }
1132         if (view_update)
1133                 add(item);
1134 }
1135
1136
1137 void MenuDefinition::expandFloatListInsert(Buffer const * buf)
1138 {
1139         if (!buf)
1140                 return;
1141
1142         FloatList const & floats = buf->params().documentClass().floats();
1143         FloatList::const_iterator cit = floats.begin();
1144         FloatList::const_iterator end = floats.end();
1145         set<string> seen;
1146         for (; cit != end; ++cit) {
1147                 if (!cit->second.usesFloatPkg()) {
1148                         // Different floats could declare the same ListCommand. We only
1149                         // want it on the list once, though.
1150                         string const & list_cmd = cit->second.listCommand();
1151                         if (list_cmd.empty())
1152                                 // we do not know how to generate such a list
1153                                 continue;
1154                         // This form of insert returns an iterator pointing to the newly
1155                         // inserted element OR the existing element with that value, and
1156                         // a bool indicating whether we inserted a new element. So we can
1157                         // see if one is there and insert it if not all at once.
1158                         pair<set<string>::iterator, bool> ret = seen.insert(list_cmd);
1159                         if (!ret.second)
1160                                 continue;
1161                 }
1162                 string const & list_name = cit->second.listName();
1163                 addWithStatusCheck(MenuItem(MenuItem::Command, qt_(list_name),
1164                         FuncRequest(LFUN_FLOAT_LIST_INSERT, cit->second.floattype())));
1165         }
1166 }
1167
1168
1169 void MenuDefinition::expandFloatInsert(Buffer const * buf)
1170 {
1171         if (!buf)
1172                 return;
1173
1174         FloatList const & floats = buf->params().documentClass().floats();
1175         FloatList::const_iterator cit = floats.begin();
1176         FloatList::const_iterator end = floats.end();
1177         for (; cit != end; ++cit) {
1178                 // normal float
1179                 QString const label = qt_(cit->second.name());
1180                 addWithStatusCheck(MenuItem(MenuItem::Command, label,
1181                                     FuncRequest(LFUN_FLOAT_INSERT,
1182                                                 cit->second.floattype())));
1183         }
1184 }
1185
1186
1187 void MenuDefinition::expandFlexInsert(
1188                 Buffer const * buf, InsetLayout::InsetLyXType type)
1189 {
1190         if (!buf)
1191                 return;
1192
1193         TextClass::InsetLayouts const & insetLayouts =
1194                 buf->params().documentClass().insetLayouts();
1195         TextClass::InsetLayouts::const_iterator cit = insetLayouts.begin();
1196         TextClass::InsetLayouts::const_iterator end = insetLayouts.end();
1197         for (; cit != end; ++cit) {
1198                 if (cit->second.lyxtype() == type) {
1199                         if (!cit->second.obsoleted_by().empty())
1200                                 continue;
1201                         docstring label = cit->first;
1202                         // we remove the "Flex:" prefix, if it is present
1203                         if (prefixIs(label, from_ascii("Flex:")))
1204                                 label = label.substr(5);
1205                         addWithStatusCheck(MenuItem(MenuItem::Command,
1206                                 toqstr(translateIfPossible(label)),
1207                                 FuncRequest(LFUN_FLEX_INSERT, Lexer::quoteString(label))));
1208                 }
1209         }
1210         // FIXME This is a little clunky.
1211         if (items_.empty() && type == InsetLayout::CUSTOM && !buf->isReadonly())
1212                 add(MenuItem(MenuItem::Help, qt_("No Custom Insets Defined!")));
1213 }
1214
1215
1216 // Threshold before we stop displaying sub-items alongside items
1217 // (for display purposes). Ideally this should fit on a screen.
1218 size_t const max_number_of_items = 30;
1219 // Size limit for the menu. This is for performance purposes,
1220 // because qt already displays a scrollable menu when necessary.
1221 // Ideally this should be the menu size from which scrollable
1222 // menus become unpractical.
1223 size_t const menu_size_limit = 80;
1224
1225 void MenuDefinition::expandToc2(Toc const & toc_list,
1226                                 size_t from, size_t to, int depth,
1227                                 string toc_type)
1228 {
1229         int shortcut_count = 0;
1230
1231         // check whether depth is smaller than the smallest depth in toc.
1232         int min_depth = 1000;
1233         for (size_t i = from; i < to; ++i)
1234                 min_depth = min(min_depth, toc_list[i].depth());
1235         if (min_depth > depth)
1236                 depth = min_depth;
1237
1238         if (to - from <= max_number_of_items) {
1239                 for (size_t i = from; i < to; ++i) {
1240                         QString label(4 * max(0, toc_list[i].depth() - depth), ' ');
1241                         label += limitStringLength(toc_list[i].asString());
1242                         if (toc_list[i].depth() == depth) {
1243                                 label += '|';
1244                             if (shortcut_count < 9) {
1245                                         if (label.contains(QString::number(shortcut_count + 1)))
1246                                                 label += QString::number(++shortcut_count);
1247                                 }
1248                         }
1249                         add(MenuItem(MenuItem::Command, label,
1250                                             FuncRequest(toc_list[i].action())));
1251                         // separator after the menu heading
1252                         if (toc_list[i].depth() < depth)
1253                                 add(MenuItem(MenuItem::Separator));
1254                 }
1255         } else {
1256                 size_t pos = from;
1257                 size_t size = 1;
1258                 while (pos < to) {
1259                         size_t new_pos = pos + 1;
1260                         while (new_pos < to && toc_list[new_pos].depth() > depth)
1261                                 ++new_pos;
1262
1263                         QString label(4 * max(0, toc_list[pos].depth() - depth), ' ');
1264                         label += limitStringLength(toc_list[pos].asString());
1265                         if (toc_list[pos].depth() == depth) {
1266                                 label += '|';
1267                             if (shortcut_count < 9) {
1268                                         if (label.contains(QString::number(shortcut_count + 1)))
1269                                                 label += QString::number(++shortcut_count);
1270                                 }
1271                         }
1272                         if (size >= menu_size_limit) {
1273                                 FuncRequest f(LFUN_DIALOG_SHOW, "toc " + toc_type);
1274                                 add(MenuItem(MenuItem::Command, "...", f));
1275                                 break;
1276                         }
1277                         if (new_pos == pos + 1) {
1278                                 add(MenuItem(MenuItem::Command,
1279                                                     label, FuncRequest(toc_list[pos].action())));
1280                         } else {
1281                                 MenuDefinition sub;
1282                                 sub.expandToc2(toc_list, pos, new_pos, depth + 1, toc_type);
1283                                 MenuItem item(MenuItem::Submenu, label);
1284                                 item.setSubmenu(sub);
1285                                 add(item);
1286                         }
1287                         ++size;
1288                         pos = new_pos;
1289                 }
1290         }
1291 }
1292
1293
1294 void MenuDefinition::expandToc(Buffer const * buf)
1295 {
1296         // To make things very cleanly, we would have to pass buf to
1297         // all MenuItem constructors and to expandToc2. However, we
1298         // know that all the entries in a TOC will be have status_ ==
1299         // OK, so we avoid this unnecessary overhead (JMarc)
1300         if (!buf) {
1301                 add(MenuItem(MenuItem::Info, qt_("(No Document Open)")));
1302                 return;
1303         }
1304         // Add an entry for the master doc if this is a child doc
1305         Buffer const * const master = buf->masterBuffer();
1306         if (buf != master) {
1307                 ParIterator const pit = par_iterator_begin(master->inset());
1308                 string const arg = convert<string>(pit->id());
1309                 FuncRequest f(LFUN_PARAGRAPH_GOTO, arg);
1310                 add(MenuItem(MenuItem::Command, qt_("Master Document"), f));
1311         }
1312
1313         MenuDefinition other_lists;
1314         TocList const & toc_list = buf->tocBackend().tocs();
1315         TocList::const_iterator cit = toc_list.begin();
1316         TocList::const_iterator end = toc_list.end();
1317         for (; cit != end; ++cit) {
1318                 // Handle table of contents later
1319                 if (cit->first == "tableofcontents" || cit->second->empty())
1320                         continue;
1321                 MenuDefinition submenu;
1322                 submenu.expandTocSubmenu(cit->first, *cit->second);
1323                 MenuItem item(MenuItem::Submenu, guiName(cit->first, buf->params()));
1324                 item.setSubmenu(submenu);
1325                 // deserves to be in the main menu?
1326                 if (!TocBackend::isOther(cit->first))
1327                         add(item);
1328                 else
1329                         other_lists.add(item);
1330         }
1331         if (!other_lists.empty()) {
1332                 MenuItem item(MenuItem::Submenu, qt_("Other Lists"));
1333                 item.setSubmenu(other_lists);
1334                 add(item);
1335         }
1336         // Handle normal TOC
1337         add(MenuItem(MenuItem::Separator));
1338         cit = toc_list.find("tableofcontents");
1339         if (cit == end)
1340                 LYXERR(Debug::GUI, "No table of contents.");
1341         else {
1342                 if (!cit->second->empty())
1343                         expandToc2(*cit->second, 0, cit->second->size(), 0,
1344                                    "tableofcontents");
1345                 else
1346                         add(MenuItem(MenuItem::Info, qt_("(Empty Table of Contents)")));
1347         }
1348 }
1349
1350
1351 void MenuDefinition::expandTocSubmenu(std::string const & type, Toc const & toc)
1352 {
1353         // "Open outliner..." entry
1354         FuncRequest f(LFUN_DIALOG_SHOW, "toc " + type);
1355         add(MenuItem(MenuItem::Command, qt_("Open Outliner..."), f));
1356         add(MenuItem(MenuItem::Separator));
1357         // add entries
1358         expandToc2(toc, 0, toc.size(), 0, type);
1359 }
1360
1361
1362 void MenuDefinition::expandPasteRecent(Buffer const * buf)
1363 {
1364         docstring_list const sel = cap::availableSelections(buf);
1365
1366         docstring_list::const_iterator cit = sel.begin();
1367         docstring_list::const_iterator end = sel.end();
1368
1369         for (unsigned int index = 0; cit != end; ++cit, ++index) {
1370                 add(MenuItem(MenuItem::Command, toqstr(*cit) + '|',
1371                                     FuncRequest(LFUN_PASTE, convert<string>(index))));
1372         }
1373 }
1374
1375
1376 void MenuDefinition::expandToolbars()
1377 {
1378         MenuDefinition other_lists;
1379         // extracts the toolbars from the backend
1380         Toolbars::Infos::const_iterator cit = guiApp->toolbars().begin();
1381         Toolbars::Infos::const_iterator end = guiApp->toolbars().end();
1382         for (; cit != end; ++cit) {
1383                 MenuItem const item(MenuItem::Command, toqstr(cit->gui_name),
1384                                 FuncRequest(LFUN_TOOLBAR_TOGGLE, cit->name));
1385                 if (guiApp->toolbars().isMainToolbar(cit->name))
1386                         add(item);
1387                 else
1388                         other_lists.add(item);
1389         }
1390
1391         if (!other_lists.empty()) {
1392                 MenuItem item(MenuItem::Submenu, qt_("Other Toolbars"));
1393                 item.setSubmenu(other_lists);
1394                 add(item);
1395         }
1396 }
1397
1398
1399 void MenuDefinition::expandBranches(Buffer const * buf)
1400 {
1401         if (!buf || buf->isReadonly())
1402                 return;
1403
1404         BufferParams const & master_params = buf->masterBuffer()->params();
1405         BufferParams const & params = buf->params();
1406         if (params.branchlist().empty() && master_params.branchlist().empty() ) {
1407                 add(MenuItem(MenuItem::Help, qt_("No Branches Set for Document!")));
1408                 return;
1409         }
1410
1411         BranchList::const_iterator cit = master_params.branchlist().begin();
1412         BranchList::const_iterator end = master_params.branchlist().end();
1413
1414         for (int ii = 1; cit != end; ++cit, ++ii) {
1415                 docstring label = cit->branch();
1416                 if (ii < 10) {
1417                         label = convert<docstring>(ii) + ". " + label
1418                                 + char_type('|') + convert<docstring>(ii);
1419                 }
1420                 addWithStatusCheck(MenuItem(MenuItem::Command, toqstr(label),
1421                                     FuncRequest(LFUN_BRANCH_INSERT,
1422                                                 cit->branch())));
1423         }
1424
1425         if (buf == buf->masterBuffer())
1426                 return;
1427
1428         MenuDefinition child_branches;
1429
1430         BranchList::const_iterator ccit = params.branchlist().begin();
1431         BranchList::const_iterator cend = params.branchlist().end();
1432
1433         for (int ii = 1; ccit != cend; ++ccit, ++ii) {
1434                 docstring label = ccit->branch();
1435                 if (ii < 10) {
1436                         label = convert<docstring>(ii) + ". " + label
1437                                 + char_type('|') + convert<docstring>(ii);
1438                 } else
1439                         label += char_type('|');
1440                 child_branches.addWithStatusCheck(MenuItem(MenuItem::Command,
1441                                     toqstr(label),
1442                                     FuncRequest(LFUN_BRANCH_INSERT,
1443                                                 ccit->branch())));
1444         }
1445
1446         if (!child_branches.empty()) {
1447                 MenuItem item(MenuItem::Submenu, qt_("Child Document"));
1448                 item.setSubmenu(child_branches);
1449                 add(item);
1450         }
1451 }
1452
1453
1454 void MenuDefinition::expandIndices(Buffer const * buf, bool listof)
1455 {
1456         if (!buf)
1457                 return;
1458
1459         BufferParams const & params = buf->masterBuffer()->params();
1460         if (!params.use_indices) {
1461                 if (listof)
1462                         addWithStatusCheck(MenuItem(MenuItem::Command,
1463                                            qt_("Index List|I"),
1464                                            FuncRequest(LFUN_INDEX_PRINT,
1465                                                   from_ascii("idx"))));
1466                 else
1467                         addWithStatusCheck(MenuItem(MenuItem::Command,
1468                                            qt_("Index Entry|d"),
1469                                            FuncRequest(LFUN_INDEX_INSERT,
1470                                                   from_ascii("idx"))));
1471                 return;
1472         }
1473
1474         if (params.indiceslist().empty())
1475                 return;
1476
1477         IndicesList::const_iterator cit = params.indiceslist().begin();
1478         IndicesList::const_iterator end = params.indiceslist().end();
1479
1480         for (int ii = 1; cit != end; ++cit, ++ii) {
1481                 if (listof) {
1482                         docstring const label =
1483                                 bformat(_("Index: %1$s"), cit->index());
1484                         addWithStatusCheck(MenuItem(MenuItem::Command, toqstr(label),
1485                                            FuncRequest(LFUN_INDEX_PRINT, cit->shortcut())));
1486                 } else {
1487                         docstring const label =
1488                                 bformat(_("Index Entry (%1$s)"), cit->index());
1489                         addWithStatusCheck(MenuItem(MenuItem::Command, toqstr(label),
1490                                            FuncRequest(LFUN_INDEX_INSERT, cit->shortcut())));
1491                 }
1492         }
1493 }
1494
1495
1496 void MenuDefinition::expandIndicesContext(Buffer const * buf, bool listof)
1497 {
1498         if (!buf)
1499                 return;
1500
1501         BufferParams const & params = buf->masterBuffer()->params();
1502         if (!params.use_indices || params.indiceslist().empty())
1503                 return;
1504
1505         IndicesList::const_iterator cit = params.indiceslist().begin();
1506         IndicesList::const_iterator end = params.indiceslist().end();
1507
1508         for (int ii = 1; cit != end; ++cit, ++ii) {
1509                 if (listof) {
1510                         InsetCommandParams p(INDEX_PRINT_CODE);
1511                         p["type"] = cit->shortcut();
1512                         string const data = InsetCommand::params2string(p);
1513                         addWithStatusCheck(MenuItem(MenuItem::Command, toqstr(cit->index()),
1514                                            FuncRequest(LFUN_INSET_MODIFY, data)));
1515                 } else {
1516                         docstring const label =
1517                                         bformat(_("Index Entry (%1$s)"), cit->index());
1518                         addWithStatusCheck(MenuItem(MenuItem::Command, toqstr(label),
1519                                            FuncRequest(LFUN_INSET_MODIFY,
1520                                                   from_ascii("changetype ") + cit->shortcut())));
1521                 }
1522         }
1523 }
1524
1525
1526 void MenuDefinition::expandCiteStyles(BufferView const * bv)
1527 {
1528         if (!bv)
1529                 return;
1530
1531         Inset const * inset = bv->cursor().nextInset();
1532         if (!inset || inset->lyxCode() != CITE_CODE) {
1533                 add(MenuItem(MenuItem::Command,
1534                                     qt_("No Citation in Scope!"),
1535                                     FuncRequest(LFUN_NOACTION)));
1536                 return;
1537         }
1538         InsetCitation const * citinset =
1539                                 static_cast<InsetCitation const *>(inset);
1540
1541         Buffer const * buf = &bv->buffer();
1542         BufferParams const & bp = buf->params();
1543         string const cmd = citinset->params().getCmdName();
1544
1545         docstring const & key = citinset->getParam("key");
1546         if (key.empty()) {
1547                 add(MenuItem(MenuItem::Command,
1548                                     qt_("No citations selected!"),
1549                                     FuncRequest(LFUN_NOACTION)));
1550                 return;
1551         }
1552
1553         size_t const n = cmd.size();
1554         bool const force = isUpperCase(cmd[0]);
1555         bool const star = cmd[n] == '*';
1556
1557         vector<docstring> const keys = getVectorFromString(key);
1558
1559         vector<CitationStyle> const citeStyleList = buf->params().citeStyles();
1560         CiteItem ci;
1561         ci.textBefore = citinset->getParam("before");
1562         ci.textAfter = citinset->getParam("after");
1563         ci.forceUpperCase = force;
1564         ci.Starred = star;
1565         ci.context = CiteItem::Dialog;
1566         ci.max_size = 40;
1567         vector<docstring> citeStrings =
1568                 buf->masterBibInfo().getCiteStrings(keys, citeStyleList, bv->buffer(), ci);
1569
1570         vector<docstring>::const_iterator cit = citeStrings.begin();
1571         vector<docstring>::const_iterator end = citeStrings.end();
1572
1573         for (int ii = 1; cit != end; ++cit, ++ii) {
1574                 docstring label = *cit;
1575                 CitationStyle cs = citeStyleList[ii - 1];
1576                 cs.forceUpperCase &= force;
1577                 cs.hasStarredVersion &= star;
1578                 addWithStatusCheck(MenuItem(MenuItem::Command, toqstr(label),
1579                                     FuncRequest(LFUN_INSET_MODIFY,
1580                                                 "changetype " + from_utf8(citationStyleToString(cs)))));
1581         }
1582
1583         // Extra features of the citation styles
1584         CitationStyle cs = citinset->getCitationStyle(bp, cmd, citeStyleList);
1585
1586         if (cs.hasStarredVersion) {
1587                 docstring starred = _("All authors|h");
1588                 // Check if we have a custom string/tooltip for the starred version
1589                 if (!cs.stardesc.empty()) {
1590                         string val =
1591                                 bp.documentClass().getCiteMacro(buf->params().citeEngineType(), cs.stardesc);
1592                         if (!val.empty())
1593                                 starred = translateIfPossible(from_utf8(val));
1594                         // Transform qt-style accelerators to menu-style
1595                         int const amps = count_char(starred, '&');
1596                         if (amps > 0) {
1597                                 if (amps > 1)
1598                                         starred = subst(starred, from_ascii("&&"), from_ascii("<:amp:>"));
1599                                 size_t n = starred.find('&');
1600                                 char_type accel = char_type();
1601                                 if (n != docstring::npos && n < starred.size() - 1)
1602                                         accel = starred[n + 1];
1603                                 starred = subst(starred, from_ascii("&"), from_ascii(""));
1604                                 if (amps > 1)
1605                                         starred = subst(starred, from_ascii("<:amp:>"), from_ascii("&&"));
1606                                 if (accel != char_type())
1607                                         starred = starred + '|' + accel;
1608                         }
1609                 }
1610                 add(MenuItem(MenuItem::Separator));
1611                 addWithStatusCheck(MenuItem(MenuItem::Command, toqstr(starred),
1612                                     FuncRequest(LFUN_INSET_MODIFY, "toggleparam star")));
1613         }
1614
1615         if (cs.forceUpperCase) {
1616                 if (!cs.hasStarredVersion)
1617                         add(MenuItem(MenuItem::Separator));
1618                 addWithStatusCheck(MenuItem(MenuItem::Command, toqstr(_("Force upper case|u")),
1619                                     FuncRequest(LFUN_INSET_MODIFY, "toggleparam casing")));
1620         }
1621 }
1622
1623
1624 void MenuDefinition::expandArguments(BufferView const * bv, bool switcharg)
1625 {
1626         if (!bv)
1627                 return;
1628
1629         if (!bv->cursor().inTexted())
1630                 return;
1631
1632         Inset const * inset = &bv->cursor().inset();
1633         Layout::LaTeXArgMap args = bv->cursor().paragraph().layout().args();
1634         if (inset && args.empty())
1635                 args = inset->getLayout().args();
1636         if (args.empty() || (switcharg && args.size() == 1))
1637                 return;
1638         Layout::LaTeXArgMap::const_iterator lait = args.begin();
1639         Layout::LaTeXArgMap::const_iterator const laend = args.end();
1640         for (; lait != laend; ++lait) {
1641                 Layout::latexarg arg = (*lait).second;
1642                 docstring str = arg.menustring.empty()? arg.labelstring : arg.menustring;
1643                 QString item = toqstr(translateIfPossible(str));
1644                 if (switcharg)
1645                         add(MenuItem(MenuItem::Command, item,
1646                                      FuncRequest(LFUN_INSET_MODIFY,
1647                                                  from_ascii("changetype ")
1648                                                  + from_ascii((*lait).first))));
1649                 else
1650                         add(MenuItem(MenuItem::Command, item,
1651                                      FuncRequest(LFUN_ARGUMENT_INSERT,
1652                                                  from_ascii((*lait).first))));
1653         }
1654 }
1655
1656
1657 void MenuDefinition::expandCaptions(Buffer const * buf, bool switchcap)
1658 {
1659         if (!buf)
1660                 return;
1661
1662         DocumentClass const & dc = buf->params().documentClass();
1663         vector< pair<docstring, FuncRequest> > caps;
1664         for (pair<docstring, InsetLayout> const & il : dc.insetLayouts()) {
1665                 docstring instype;
1666                 docstring const type = split(il.first, instype, ':');
1667                 if (instype == "Caption") {
1668                         // skip forbidden caption types
1669                         FuncRequest const cmd = switchcap
1670                                 ? FuncRequest(LFUN_INSET_MODIFY, from_ascii("changetype ") + type)
1671                                 : FuncRequest(LFUN_CAPTION_INSERT, type);
1672                         if (getStatus(cmd).enabled())
1673                                 caps.push_back(make_pair(type, cmd));
1674                 }
1675         }
1676
1677         if (caps.empty() || (switchcap && caps.size() == 1))
1678                 return;
1679         if (caps.size() == 1) {
1680                 add(MenuItem(MenuItem::Command, qt_("Caption"), caps.front().second));
1681                 return;
1682         }
1683
1684         MenuDefinition captions;
1685         for (pair<docstring, FuncRequest> const & cap : caps) {
1686                 docstring const type = cap.first;
1687                 docstring const trtype = translateIfPossible(type);
1688                 docstring const cmitem = bformat(_("Caption (%1$s)"), trtype);
1689                 if (switchcap)
1690                         add(MenuItem(MenuItem::Command, toqstr(cmitem), cap.second));
1691                 else
1692                         captions.add(MenuItem(MenuItem::Command, toqstr(trtype), cap.second));
1693         }
1694         if (!captions.empty()) {
1695                 MenuItem item(MenuItem::Submenu, qt_("Caption"));
1696                 item.setSubmenu(captions);
1697                 add(item);
1698         }
1699 }
1700
1701
1702 void MenuDefinition::expandQuotes(BufferView const * bv)
1703 {
1704         if (!bv)
1705                 return;
1706     
1707         if (!bv->cursor().inTexted())
1708                 return;
1709
1710         Inset const * inset = bv->cursor().nextInset();
1711         if (!inset || inset->lyxCode() != QUOTE_CODE) {
1712                 add(MenuItem(MenuItem::Command,
1713                                     qt_("No Quote in Scope!"),
1714                                     FuncRequest(LFUN_NOACTION)));
1715                 return;
1716         }
1717         InsetQuotes const * qinset =
1718                 static_cast<InsetQuotes const *>(inset);
1719
1720         map<string, docstring> styles = quoteparams.getTypes();
1721         string const qtype = qinset->getType();
1722         
1723         map<string, docstring>::const_iterator qq = styles.begin();
1724         map<string, docstring>::const_iterator end = styles.end();
1725
1726         MenuDefinition aqs;
1727
1728         BufferParams const & bp = bv->buffer().masterBuffer()->params();
1729
1730         // The global setting
1731         InsetQuotesParams::QuoteStyle globalqs = bp.quotes_style;
1732         char const globalqsc = quoteparams.getStyleChar(globalqs);
1733
1734         // The current language's default
1735         InsetQuotesParams::QuoteStyle langdefqs =
1736                 bp.getQuoteStyle(bv->cursor().current_font.language()->quoteStyle());
1737         char const langqs = quoteparams.getStyleChar(langdefqs);
1738
1739         bool main_global_qs = false;
1740         bool main_langdef_qs = false;
1741         bool main_dynamic_qs = false;
1742         docstring const subcmd = from_ascii("changetype ");
1743         docstring const wildcards = from_ascii("..");
1744         // Add the items
1745         // First the top level menu (all glyphs of the current style) ...
1746         // Begin with dynamic (if they are current style),
1747         if (qtype[0] == 'x') {
1748                 FuncRequest cmd = FuncRequest(LFUN_INSET_MODIFY, subcmd + from_ascii("xld"));
1749                 docstring desc = bformat(_("%1$s (dynamic)"),
1750                         quoteparams.getShortGuiLabel(globalqsc + from_ascii("ld")));
1751                 add(MenuItem(MenuItem::Command, toqstr(desc), cmd));
1752                 cmd = FuncRequest(LFUN_INSET_MODIFY, subcmd + from_ascii("xls"));
1753                 desc = bformat(_("%1$s (dynamic)"),
1754                         quoteparams.getShortGuiLabel(globalqsc + from_ascii("ls")));
1755                 add(MenuItem(MenuItem::Command, toqstr(desc), cmd));
1756                 cmd = FuncRequest(LFUN_INSET_MODIFY, subcmd + from_ascii("xrd"));
1757                 desc = bformat(_("%1$s (dynamic)"),
1758                         quoteparams.getShortGuiLabel(globalqsc + from_ascii("rd")));
1759                 add(MenuItem(MenuItem::Command, toqstr(desc), cmd));
1760                 cmd = FuncRequest(LFUN_INSET_MODIFY, subcmd + from_ascii("xrs"));
1761                 desc = bformat(_("%1$s (dynamic)"),
1762                         quoteparams.getShortGuiLabel(globalqsc + from_ascii("rs")));
1763                 add(MenuItem(MenuItem::Command, toqstr(desc), cmd));
1764                 main_dynamic_qs = true;
1765         }
1766         // now traverse through the static styles ...
1767         for (; qq != end; ++qq) {
1768                 docstring const style = from_ascii(qq->first);
1769                 bool langdef = (style[0] == langqs);
1770                 bool globaldef = (style[0] == globalqsc);
1771                 
1772                 if (prefixIs(style, qtype[0])) {
1773                         FuncRequest cmd = FuncRequest(LFUN_INSET_MODIFY, subcmd + style);
1774                         docstring const desc = quoteparams.getShortGuiLabel(style);
1775                         add(MenuItem(MenuItem::Command, toqstr(desc), cmd));
1776                         main_global_qs = globaldef;
1777                         main_langdef_qs = langdef;
1778                 }
1779                 else if (!langdef && !globaldef && suffixIs(style, from_ascii("ld"))) {
1780                         docstring const desc =
1781                                 quoteparams.getGuiLabel(quoteparams.getQuoteStyle(to_ascii(style)));
1782                         FuncRequest cmd = FuncRequest(LFUN_INSET_MODIFY, subcmd + style[0] + "..");
1783                         aqs.add(MenuItem(MenuItem::Command, toqstr(desc), cmd));
1784                 }
1785         }
1786
1787         add(MenuItem(MenuItem::Separator));
1788
1789         bool have_section = false;
1790         bool display_static = false;
1791         // ... then potentially items to reset to the defaults and to dynamic style ...
1792         if (!main_dynamic_qs && globalqsc != 'x') {
1793                 FuncRequest cmd = FuncRequest(LFUN_INSET_MODIFY, subcmd + 'x' + wildcards);
1794                 docstring const desc = bformat(_("Use dynamic quotes (%1$s)|d"),
1795                                                 quoteparams.getGuiLabel(globalqs));
1796                 add(MenuItem(MenuItem::Command, toqstr(desc), cmd));
1797                 have_section = true;
1798                 display_static = true;
1799         }
1800         if (!main_global_qs && langdefqs != globalqs) {
1801                 docstring const variant = main_dynamic_qs ? _("dynamic[[Quotes]]") : _("static[[Quotes]]");
1802                 FuncRequest cmd = FuncRequest(LFUN_INSET_MODIFY, subcmd + globalqsc + wildcards);
1803                 docstring const desc = bformat(_("Reset to document default (%1$s, %2$s)|o"),
1804                                                 quoteparams.getGuiLabel(globalqs), variant);
1805                 add(MenuItem(MenuItem::Command, toqstr(desc), cmd));
1806                 have_section = true;
1807         }
1808         if (!main_langdef_qs) {
1809                 FuncRequest cmd = FuncRequest(LFUN_INSET_MODIFY, subcmd + globalqsc + wildcards);
1810                 docstring const desc = (main_dynamic_qs || display_static) 
1811                                         ? bformat(_("Reset to language default (%1$s, %2$s)|l"),
1812                                                   quoteparams.getGuiLabel(langdefqs), _("static[[Quotes]]"))
1813                                         : bformat(_("Reset to language default (%1$s)|l"),
1814                                                   quoteparams.getGuiLabel(langdefqs));
1815                 add(MenuItem(MenuItem::Command, toqstr(desc), cmd));
1816                 have_section = true;
1817         }
1818
1819         if (have_section)
1820                 add(MenuItem(MenuItem::Separator));
1821
1822         // ... and a subitem with the rest
1823         MenuItem item(MenuItem::Submenu, qt_("Change Style|y"));
1824         item.setSubmenu(aqs);
1825         add(item);
1826 }
1827
1828
1829 void MenuDefinition::expandEnvironmentSeparators(BufferView const * bv)
1830 {
1831         if (!bv)
1832                 return;
1833         Text const * text = bv->cursor().text();
1834         // no paragraphs and no separators exist in math
1835         if (!text)
1836                 return;
1837
1838         pit_type pit = bv->cursor().selBegin().pit();
1839         Paragraph const & par = text->getPar(pit);
1840         docstring const curlayout = par.layout().name();
1841         docstring outerlayout;
1842         depth_type current_depth = par.params().depth();
1843         // check if we have an environment in our nesting hierarchy
1844         Paragraph cpar = par;
1845         while (true) {
1846                 if (pit == 0 || cpar.params().depth() == 0)
1847                         break;
1848                 --pit;
1849                 cpar = text->getPar(pit);
1850                 if (cpar.params().depth() < current_depth
1851                     && cpar.layout().isEnvironment()) {
1852                                 outerlayout = cpar.layout().name();
1853                                 current_depth = cpar.params().depth();
1854                 }
1855         }
1856         if (par.layout().isEnvironment()) {
1857                 docstring const label =
1858                         bformat(_("Start New Environment (%1$s)"),
1859                                 translateIfPossible(curlayout));
1860                 add(MenuItem(MenuItem::Command, toqstr(label),
1861                              FuncRequest(LFUN_ENVIRONMENT_SPLIT)));
1862         }
1863         if (!outerlayout.empty()) {
1864                 docstring const label =
1865                         bformat(_("Start New Parent Environment (%1$s)"),
1866                                 translateIfPossible(outerlayout));
1867                 add(MenuItem(MenuItem::Command, toqstr(label),
1868                              FuncRequest(LFUN_ENVIRONMENT_SPLIT,
1869                                          from_ascii("outer"))));
1870         }
1871 }
1872
1873 } // namespace anon
1874
1875
1876 /////////////////////////////////////////////////////////////////////
1877 // Menu::Impl definition and implementation
1878 /////////////////////////////////////////////////////////////////////
1879
1880 struct Menu::Impl
1881 {
1882         /// populates the menu or one of its submenu
1883         /// This is used as a recursive function
1884         void populate(QMenu * qMenu, MenuDefinition const & menu);
1885
1886         /// Only needed for top level menus.
1887         MenuDefinition * top_level_menu;
1888         /// our owning view
1889         GuiView * view;
1890         /// the name of this menu
1891         QString name;
1892 };
1893
1894
1895
1896 /// Get a MenuDefinition item label from the menu backend
1897 static QString label(MenuItem const & mi)
1898 {
1899         QString label = mi.label();
1900         label.replace("&", "&&");
1901
1902         QString shortcut = mi.shortcut();
1903         if (!shortcut.isEmpty()) {
1904                 int pos = label.indexOf(shortcut);
1905                 if (pos != -1)
1906                         //label.insert(pos, 1, char_type('&'));
1907                         label.replace(pos, 0, "&");
1908         }
1909
1910         QString const binding = mi.binding();
1911         if (!binding.isEmpty())
1912                 label += '\t' + binding;
1913
1914         return label;
1915 }
1916
1917 void Menu::Impl::populate(QMenu * qMenu, MenuDefinition const & menu)
1918 {
1919         LYXERR(Debug::GUI, "populating menu " << menu.name());
1920         if (menu.empty()) {
1921                 LYXERR(Debug::GUI, "\tERROR: empty menu " << menu.name());
1922                 return;
1923         }
1924         LYXERR(Debug::GUI, " *****  menu entries " << menu.size());
1925         for (MenuItem const & m : menu)
1926                 switch (m.kind()) {
1927                 case MenuItem::Separator:
1928                         qMenu->addSeparator();
1929                         break;
1930                 case MenuItem::Submenu: {
1931                         QMenu * subMenu = qMenu->addMenu(label(m));
1932                         populate(subMenu, m.submenu());
1933                         subMenu->setEnabled(!subMenu->isEmpty());
1934                         break;
1935                 }
1936                 case MenuItem::Command:
1937                 default:
1938                         // FIXME: A previous comment assured that MenuItem::Command was the
1939                         // only possible case in practice, but this is wrong.  It would be
1940                         // good to document which cases are actually treated here.
1941                         qMenu->addAction(new Action(m.func(), QIcon(), label(m),
1942                                                     m.tooltip(), qMenu));
1943                         break;
1944                 }
1945 }
1946
1947 #if (defined(Q_OS_WIN) || defined(Q_CYGWIN_WIN)) && (QT_VERSION >= 0x040600)
1948 class AlwaysMnemonicStyle : public QProxyStyle {
1949 public:
1950         int styleHint(StyleHint hint, const QStyleOption *opt = 0, const QWidget *widget = 0,
1951                 QStyleHintReturn *returnData = 0) const
1952         {
1953                 if (hint == QStyle::SH_UnderlineShortcut)
1954                         return 1;
1955                 return QProxyStyle::styleHint(hint, opt, widget, returnData);
1956         }
1957 };
1958 #endif
1959
1960 /////////////////////////////////////////////////////////////////////
1961 // Menu implementation
1962 /////////////////////////////////////////////////////////////////////
1963
1964 Menu::Menu(GuiView * gv, QString const & name, bool top_level, bool keyboard)
1965 : QMenu(gv), d(new Menu::Impl)
1966 {
1967 #if (defined(Q_OS_WIN) || defined(Q_CYGWIN_WIN)) && (QT_VERSION >= 0x040600)
1968         if (keyboard)
1969                 setStyle(new AlwaysMnemonicStyle);
1970 #else
1971         (void) keyboard;
1972 #endif
1973         d->top_level_menu = top_level? new MenuDefinition : 0;
1974         d->view = gv;
1975         d->name = name;
1976         setTitle(name);
1977         if (d->top_level_menu)
1978                 connect(this, SIGNAL(aboutToShow()), this, SLOT(updateView()));
1979 }
1980
1981
1982 Menu::~Menu()
1983 {
1984         delete d->top_level_menu;
1985         delete d;
1986 }
1987
1988
1989 void Menu::updateView()
1990 {
1991         guiApp->menus().updateMenu(this);
1992 }
1993
1994
1995 void Menu::clear()
1996 {
1997         QList<QAction *> items = actions();
1998         for (int i = 0; i != items.size(); ++i) {
1999                 // QAction::menu() returns 0 if there's no submenu.
2000                 delete items.at(i)->menu();
2001         }
2002         QMenu::clear();
2003 }
2004
2005
2006 /////////////////////////////////////////////////////////////////////
2007 // Menus::Impl definition and implementation
2008 /////////////////////////////////////////////////////////////////////
2009
2010 struct Menus::Impl {
2011         ///
2012         bool hasMenu(QString const &) const;
2013         ///
2014         MenuDefinition & getMenu(QString const &);
2015         ///
2016         MenuDefinition const & getMenu(QString const &) const;
2017
2018         /// Expands some special entries of the menu
2019         /** The entries with the following kind are expanded to a
2020             sequence of Command MenuItems: Lastfiles, Documents,
2021             ViewFormats, ExportFormats, UpdateFormats, Branches,
2022             Indices, Arguments, SwitchArguments, Captions, SwitchCaptions,
2023             EnvironmentSeparators
2024         */
2025         void expand(MenuDefinition const & frommenu, MenuDefinition & tomenu,
2026                 BufferView const *) const;
2027
2028         /// Initialize specific MACOS X menubar
2029         void macxMenuBarInit(QMenuBar * qmb);
2030
2031         /// Mac special menu.
2032         /** This defines a menu whose entries list the FuncRequests
2033             that will be removed by expand() in other menus. This is
2034             used by the Qt/Mac code.
2035
2036             NOTE: Qt does not remove the menu items when clearing a QMenuBar,
2037             such that the items will keep accessing the FuncRequests in
2038             the MenuDefinition. While Menus::Impl might be recreated,
2039             we keep mac_special_menu_ in memory by making it static.
2040         */
2041         static MenuDefinition mac_special_menu_;
2042
2043         ///
2044         MenuList menulist_;
2045         ///
2046         MenuDefinition menubar_;
2047
2048         typedef QMap<GuiView *, QHash<QString, Menu*> > NameMap;
2049
2050         /// name to menu for \c menu() method.
2051         NameMap name_map_;
2052 };
2053
2054
2055 MenuDefinition Menus::Impl::mac_special_menu_;
2056
2057
2058 /*
2059   Here is what the Qt documentation says about how a menubar is chosen:
2060
2061      1) If the window has a QMenuBar then it is used. 2) If the window
2062      is a modal then its menubar is used. If no menubar is specified
2063      then a default menubar is used (as documented below) 3) If the
2064      window has no parent then the default menubar is used (as
2065      documented below).
2066
2067      The above 3 steps are applied all the way up the parent window
2068      chain until one of the above are satisifed. If all else fails a
2069      default menubar will be created, the default menubar on Qt/Mac is
2070      an empty menubar, however you can create a different default
2071      menubar by creating a parentless QMenuBar, the first one created
2072      will thus be designated the default menubar, and will be used
2073      whenever a default menubar is needed.
2074
2075   Thus, for Qt/Mac, we add the menus to a free standing menubar, so
2076   that this menubar will be used also when one of LyX' dialogs has
2077   focus. (JMarc)
2078 */
2079 void Menus::Impl::macxMenuBarInit(QMenuBar * qmb)
2080 {
2081         /* Since Qt 4.2, the qt/mac menu code has special code for
2082            specifying the role of a menu entry. However, it does not
2083            work very well with our scheme of creating menus on demand,
2084            and therefore we need to put these entries in a special
2085            invisible menu. (JMarc)
2086         */
2087
2088         /* The entries of our special mac menu. If we add support for
2089          * special entries in Menus, we could imagine something
2090          * like
2091          *    SpecialItem About " "About LyX" "dialog-show aboutlyx"
2092          * and therefore avoid hardcoding. I am not sure it is worth
2093          * the hassle, though. (JMarc)
2094          */
2095         struct MacMenuEntry {
2096                 FuncCode action;
2097                 char const * arg;
2098                 char const * label;
2099                 QAction::MenuRole role;
2100         };
2101
2102         static const MacMenuEntry entries[] = {
2103                 {LFUN_DIALOG_SHOW, "aboutlyx", "About LyX",
2104                  QAction::AboutRole},
2105                 {LFUN_DIALOG_SHOW, "prefs", "Preferences",
2106                  QAction::PreferencesRole},
2107 #if !(defined(QT_MAC_USE_COCOA) || (QT_VERSION >= 0x050000))
2108                 /* This doesn't work with Cocoa. */
2109                 {LFUN_RECONFIGURE, "", "Reconfigure",
2110                  QAction::ApplicationSpecificRole},
2111 #endif
2112                 {LFUN_LYX_QUIT, "", "Quit LyX", QAction::QuitRole}
2113         };
2114         const size_t num_entries = sizeof(entries) / sizeof(entries[0]);
2115         const bool first_call = mac_special_menu_.empty();
2116
2117         LYXERR(Debug::GUI, "Creating Mac OS X special menu bar");
2118         // the special menu for Menus. Fill it up only once.
2119         if (first_call) {
2120                 for (size_t i = 0 ; i < num_entries ; ++i) {
2121                         FuncRequest const func(entries[i].action,
2122                                 from_utf8(entries[i].arg));
2123                         mac_special_menu_.add(MenuItem(MenuItem::Command,
2124                                 entries[i].label, func));
2125                 }
2126         }
2127
2128         // add the entries to a QMenu that will eventually be empty
2129         // and therefore invisible.
2130         QMenu * qMenu = qmb->addMenu("special");
2131         size_t i = 0;
2132         for (MenuItem const & m : mac_special_menu_) {
2133                 Action * action = new Action(m.func(), QIcon(), m.label(),
2134                                              QString(), qMenu);
2135                 action->setMenuRole(entries[i].role);
2136                 qMenu->addAction(action);
2137                 ++i;
2138         }
2139 }
2140
2141
2142 void Menus::Impl::expand(MenuDefinition const & frommenu,
2143         MenuDefinition & tomenu, BufferView const * bv) const
2144 {
2145         if (!tomenu.empty())
2146                 tomenu.clear();
2147
2148         for (MenuDefinition::const_iterator cit = frommenu.begin();
2149              cit != frommenu.end() ; ++cit) {
2150                 Buffer const * buf = bv ? &bv->buffer() : 0;
2151                 switch (cit->kind()) {
2152                 case MenuItem::Lastfiles:
2153                         tomenu.expandLastfiles();
2154                         break;
2155
2156                 case MenuItem::Documents:
2157                         tomenu.expandDocuments();
2158                         break;
2159
2160                 case MenuItem::Bookmarks:
2161                         tomenu.expandBookmarks();
2162                         break;
2163
2164                 case MenuItem::ImportFormats:
2165                 case MenuItem::ViewFormats:
2166                 case MenuItem::UpdateFormats:
2167                 case MenuItem::ExportFormats:
2168                         tomenu.expandFormats(cit->kind(), buf);
2169                         break;
2170
2171                 case MenuItem::CharStyles:
2172                         tomenu.expandFlexInsert(buf, InsetLayout::CHARSTYLE);
2173                         break;
2174
2175                 case MenuItem::Custom:
2176                         tomenu.expandFlexInsert(buf, InsetLayout::CUSTOM);
2177                         break;
2178
2179                 case MenuItem::Elements:
2180                         tomenu.expandFlexInsert(buf, InsetLayout::ELEMENT);
2181                         break;
2182
2183                 case MenuItem::FloatListInsert:
2184                         tomenu.expandFloatListInsert(buf);
2185                         break;
2186
2187                 case MenuItem::FloatInsert:
2188                         tomenu.expandFloatInsert(buf);
2189                         break;
2190
2191                 case MenuItem::PasteRecent:
2192                         tomenu.expandPasteRecent(buf);
2193                         break;
2194
2195                 case MenuItem::Toolbars:
2196                         tomenu.expandToolbars();
2197                         break;
2198
2199                 case MenuItem::Branches:
2200                         tomenu.expandBranches(buf);
2201                         break;
2202
2203                 case MenuItem::Indices:
2204                         tomenu.expandIndices(buf);
2205                         break;
2206
2207                 case MenuItem::IndicesContext:
2208                         tomenu.expandIndicesContext(buf);
2209                         break;
2210
2211                 case MenuItem::IndicesLists:
2212                         tomenu.expandIndices(buf, true);
2213                         break;
2214
2215                 case MenuItem::IndicesListsContext:
2216                         tomenu.expandIndicesContext(buf, true);
2217                         break;
2218
2219                 case MenuItem::CiteStyles:
2220                         tomenu.expandCiteStyles(bv);
2221                         break;
2222
2223                 case MenuItem::Toc:
2224                         tomenu.expandToc(buf);
2225                         break;
2226
2227                 case MenuItem::GraphicsGroups:
2228                         tomenu.expandGraphicsGroups(bv);
2229                         break;
2230
2231                 case MenuItem::SpellingSuggestions:
2232                         tomenu.expandSpellingSuggestions(bv);
2233                         break;
2234
2235                 case MenuItem::LanguageSelector:
2236                         tomenu.expandLanguageSelector(buf);
2237                         break;
2238
2239                 case MenuItem::Arguments:
2240                         tomenu.expandArguments(bv, false);
2241                         break;
2242
2243                 case MenuItem::SwitchArguments:
2244                         tomenu.expandArguments(bv, true);
2245                         break;
2246
2247                 case MenuItem::Captions:
2248                         tomenu.expandCaptions(buf, false);
2249                         break;
2250
2251                 case MenuItem::SwitchCaptions:
2252                         tomenu.expandCaptions(buf, true);
2253                         break;
2254
2255                 case MenuItem::EnvironmentSeparators:
2256                         tomenu.expandEnvironmentSeparators(bv);
2257                         break;
2258
2259                 case MenuItem::SwitchQuotes:
2260                         tomenu.expandQuotes(bv);
2261                         break;
2262
2263                 case MenuItem::Submenu: {
2264                         MenuItem item(*cit);
2265                         item.setSubmenu(MenuDefinition(cit->submenuname()));
2266                         expand(getMenu(cit->submenuname()), item.submenu(), bv);
2267                         tomenu.addWithStatusCheck(item);
2268                 }
2269                 break;
2270
2271                 case MenuItem::Info:
2272                 case MenuItem::Help:
2273                 case MenuItem::Separator:
2274                         tomenu.addWithStatusCheck(*cit);
2275                         break;
2276
2277                 case MenuItem::Command:
2278                         if (!mac_special_menu_.hasFunc(*cit->func()))
2279                                 tomenu.addWithStatusCheck(*cit);
2280                 }
2281         }
2282
2283         // we do not want the menu to end with a separator
2284         if (!tomenu.empty() && tomenu.items_.back().kind() == MenuItem::Separator)
2285                 tomenu.items_.pop_back();
2286
2287         // Check whether the shortcuts are unique
2288         tomenu.checkShortcuts();
2289 }
2290
2291
2292 bool Menus::Impl::hasMenu(QString const & name) const
2293 {
2294         return find_if(menulist_.begin(), menulist_.end(),
2295                 MenuNamesEqual(name)) != menulist_.end();
2296 }
2297
2298
2299 MenuDefinition const & Menus::Impl::getMenu(QString const & name) const
2300 {
2301         const_iterator cit = find_if(menulist_.begin(), menulist_.end(),
2302                 MenuNamesEqual(name));
2303         if (cit == menulist_.end()) {
2304                 LYXERR0("No submenu named " << name);
2305                 LASSERT(false, { static const MenuDefinition m; return m; });
2306         }
2307         return (*cit);
2308 }
2309
2310
2311 MenuDefinition & Menus::Impl::getMenu(QString const & name)
2312 {
2313         iterator it = find_if(menulist_.begin(), menulist_.end(),
2314                 MenuNamesEqual(name));
2315         if (it == menulist_.end()) {
2316                 LYXERR0("No submenu named " << name);
2317                 LASSERT(false, { static MenuDefinition m; return m; });
2318         }
2319         return (*it);
2320 }
2321
2322
2323 /////////////////////////////////////////////////////////////////////
2324 //
2325 // Menus
2326 //
2327 /////////////////////////////////////////////////////////////////////
2328
2329 Menus::Menus() : d(new Impl) {}
2330
2331
2332 Menus::~Menus()
2333 {
2334         delete d;
2335 }
2336
2337
2338 void Menus::reset()
2339 {
2340         delete d;
2341         d = new Impl;
2342 }
2343
2344
2345 void Menus::read(Lexer & lex)
2346 {
2347         enum {
2348                 md_menu,
2349                 md_menubar,
2350                 md_endmenuset
2351         };
2352
2353         LexerKeyword menutags[] = {
2354                 { "end", md_endmenuset },
2355                 { "menu", md_menu },
2356                 { "menubar", md_menubar }
2357         };
2358
2359         // consistency check
2360         if (compare_ascii_no_case(lex.getString(), "menuset"))
2361                 LYXERR0("Menus::read: ERROR wrong token: `" << lex.getString() << '\'');
2362
2363         lex.pushTable(menutags);
2364         lex.setContext("Menus::read");
2365
2366         bool quit = false;
2367
2368         while (lex.isOK() && !quit) {
2369                 switch (lex.lex()) {
2370                 case md_menubar:
2371                         d->menubar_.read(lex);
2372                         break;
2373                 case md_menu: {
2374                         lex.next(true);
2375                         QString const name = toqstr(lex.getDocString());
2376                         if (d->hasMenu(name))
2377                                 d->getMenu(name).read(lex);
2378                         else {
2379                                 MenuDefinition menu(name);
2380                                 menu.read(lex);
2381                                 d->menulist_.push_back(menu);
2382                         }
2383                         break;
2384                 }
2385                 case md_endmenuset:
2386                         quit = true;
2387                         break;
2388                 default:
2389                         lex.printError("Unknown menu tag");
2390                         break;
2391                 }
2392         }
2393         lex.popTable();
2394 }
2395
2396
2397 bool Menus::searchMenu(FuncRequest const & func,
2398         docstring_list & names) const
2399 {
2400         MenuDefinition menu;
2401         d->expand(d->menubar_, menu, 0);
2402         return menu.searchMenu(func, names);
2403 }
2404
2405
2406 void Menus::fillMenuBar(QMenuBar * qmb, GuiView * view, bool initial)
2407 {
2408         if (initial) {
2409 #ifdef Q_OS_MAC
2410                 // setup special mac specific menu items, but only do this
2411                 // the first time a QMenuBar is created. Otherwise Qt will
2412                 // create duplicate items in the application menu. It seems
2413                 // that Qt does not remove them when the QMenubar is cleared.
2414                 d->macxMenuBarInit(qmb);
2415 #endif
2416         } else {
2417                 // Clear all menubar contents before filling it.
2418                 qmb->clear();
2419 #if (QT_VERSION >= 0x050000 && defined(Q_OS_MAC))
2420                 d->macxMenuBarInit(qmb);
2421 #endif
2422         }
2423
2424         LYXERR(Debug::GUI, "populating menu bar" << d->menubar_.name());
2425
2426         if (d->menubar_.empty()) {
2427                 LYXERR(Debug::GUI, "\tERROR: empty menu bar"
2428                         << d->menubar_.name());
2429                 return;
2430         }
2431         LYXERR(Debug::GUI, "menu bar entries " << d->menubar_.size());
2432
2433         MenuDefinition menu;
2434         BufferView * bv = 0;
2435         if (view)
2436                 bv = view->currentBufferView();
2437         d->expand(d->menubar_, menu, bv);
2438
2439         MenuDefinition::const_iterator m = menu.begin();
2440         MenuDefinition::const_iterator end = menu.end();
2441
2442         for (; m != end; ++m) {
2443
2444                 if (m->kind() != MenuItem::Submenu) {
2445                         LYXERR(Debug::GUI, "\tERROR: not a submenu " << m->label());
2446                         continue;
2447                 }
2448
2449                 LYXERR(Debug::GUI, "menu bar item " << m->label()
2450                         << " is a submenu named " << m->submenuname());
2451
2452                 QString name = m->submenuname();
2453                 if (!d->hasMenu(name)) {
2454                         LYXERR(Debug::GUI, "\tERROR: " << name
2455                                 << " submenu has no menu!");
2456                         continue;
2457                 }
2458
2459                 Menu * menu = new Menu(view, m->submenuname(), true);
2460                 menu->setTitle(label(*m));
2461
2462 #if defined(Q_OS_MAC) && (defined(QT_MAC_USE_COCOA) || (QT_VERSION >= 0x050000))
2463                 // On Mac OS with QT/cocoa, the menu is not displayed if there is no action
2464                 // so we create a temporary one here
2465                 QAction * action = new QAction(menu);
2466                 menu->addAction(action);
2467 #endif
2468
2469                 qmb->addMenu(menu);
2470
2471                 d->name_map_[view][name] = menu;
2472         }
2473 }
2474
2475
2476 void Menus::updateMenu(Menu * qmenu)
2477 {
2478         LYXERR(Debug::GUI, "Triggered menu: " << qmenu->d->name);
2479         qmenu->clear();
2480
2481         if (qmenu->d->name.isEmpty())
2482                 return;
2483
2484         docstring identifier = qstring_to_ucs4(qmenu->d->name);
2485         MenuDefinition fromLyxMenu(qmenu->d->name);
2486         while (!identifier.empty()) {
2487                 docstring menu_name;
2488                 identifier = split(identifier, menu_name, ';');
2489
2490                 if (!d->hasMenu(toqstr(menu_name))) {
2491                         LYXERR(Debug::GUI, "\tWARNING: non existing menu: "
2492                                 << menu_name);
2493                         continue;
2494                 }
2495
2496                 MenuDefinition cat_menu = d->getMenu(toqstr(menu_name));
2497                 //FIXME: 50 is a wild guess. We should take into account here
2498                 //the expansion of menu items, disabled optional items etc.
2499                 bool const in_sub_menu = !fromLyxMenu.empty()
2500                         && fromLyxMenu.size() + cat_menu.size() > 50 ;
2501                 if (in_sub_menu)
2502                         fromLyxMenu.catSub(menu_name);
2503                 else
2504                         fromLyxMenu.cat(cat_menu);
2505                 fromLyxMenu.add(MenuItem(MenuItem::Separator));
2506         }
2507
2508         if (fromLyxMenu.empty()) {
2509                 qmenu->addAction(qt_("No Action Defined!"));
2510                 return;
2511         }
2512
2513         BufferView * bv = 0;
2514         if (qmenu->d->view)
2515                 bv = qmenu->d->view->currentBufferView();
2516         d->expand(fromLyxMenu, *qmenu->d->top_level_menu, bv);
2517         qmenu->d->populate(qmenu, *qmenu->d->top_level_menu);
2518 }
2519
2520
2521 Menu * Menus::menu(QString const & name, GuiView & view, bool keyboard)
2522 {
2523         LYXERR(Debug::GUI, "Context menu requested: " << name);
2524         Menu * menu = d->name_map_[&view].value(name, 0);
2525         if (!menu && !name.startsWith("context-")) {
2526                 LYXERR0("requested context menu not found: " << name);
2527                 return 0;
2528         }
2529
2530         menu = new Menu(&view, name, true, keyboard);
2531         d->name_map_[&view][name] = menu;
2532         return menu;
2533 }
2534
2535 } // namespace frontend
2536 } // namespace lyx
2537
2538 #include "moc_Menus.cpp"