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