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