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