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