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