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