]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiPopupMenu.cpp
This is the last of a series of patches that merges the layout modules development...
[lyx.git] / src / frontends / qt4 / GuiPopupMenu.cpp
1 /**
2  * \file GuiPopupMenu.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 Abdelrazak Younes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include <boost/current_function.hpp>
15
16 // Qt defines a macro 'signals' that clashes with a boost namespace.
17 // All is well if the namespace is visible first.
18 #include "GuiView.h"
19
20 #include "Action.h"
21 #include "GuiPopupMenu.h"
22 #include "GuiMenubar.h"
23 #include "qt_helpers.h"
24 #include "MenuBackend.h"
25
26 #include "support/lstrings.h"
27 #include "debug.h"
28
29
30 using std::make_pair;
31 using std::string;
32 using std::pair;
33 using std::endl;
34
35
36 namespace lyx {
37 namespace frontend {
38
39 GuiPopupMenu::GuiPopupMenu(GuiMenubar * owner,
40                                                  MenuItem const & mi, bool topLevelMenu)
41         : owner_(owner)
42 {
43         name_ = mi.submenuname();
44
45         setTitle(toqstr(getLabel(mi)));
46
47         if (topLevelMenu)
48                 connect(this, SIGNAL(aboutToShow()), this, SLOT(updateView()));
49 }
50
51
52 void GuiPopupMenu::updateView()
53 {
54         LYXERR(Debug::GUI) << BOOST_CURRENT_FUNCTION << endl;
55         LYXERR(Debug::GUI) << "\tTriggered menu: " << to_utf8(name_) << endl;
56
57         clear();
58
59         if (name_.empty())
60                 return;
61
62         // Here, We make sure that theLyXFunc points to the correct LyXView.
63         theLyXFunc().setLyXView(owner_->view());
64
65         Menu const & fromLyxMenu = owner_->backend().getMenu(name_);
66         owner_->backend().expand(fromLyxMenu, topLevelMenu_, owner_->view()->buffer());
67
68         if (!owner_->backend().hasMenu(topLevelMenu_.name())) {
69                 LYXERR(Debug::GUI) << "\tWARNING: menu seems empty"
70                         << to_utf8(topLevelMenu_.name()) << endl;
71         }
72         populate(this, &topLevelMenu_);
73 }
74
75
76 void GuiPopupMenu::populate(QMenu * qMenu, Menu * menu)
77 {
78         LYXERR(Debug::GUI) << "populating menu " << to_utf8(menu->name()) ;
79         if (menu->size() == 0) {
80                 LYXERR(Debug::GUI) << "\tERROR: empty menu "
81                         << to_utf8(menu->name()) << endl;
82                 return;
83         }
84         else {
85                 LYXERR(Debug::GUI) << " *****  menu entries " << menu->size() << endl;
86         }
87
88         Menu::const_iterator m = menu->begin();
89         Menu::const_iterator end = menu->end();
90
91         for (; m != end; ++m) {
92
93                 if (m->kind() == MenuItem::Separator) {
94
95                         qMenu->addSeparator();
96                         LYXERR(Debug::GUI) << "adding Menubar Separator" << endl;
97
98                 } else if (m->kind() == MenuItem::Submenu) {
99
100                         LYXERR(Debug::GUI) << "** creating New Sub-Menu "
101                                 << to_utf8(getLabel(*m)) << endl;
102                         QMenu * subMenu = qMenu->addMenu(toqstr(getLabel(*m)));
103                         populate(subMenu, m->submenu());
104
105                 } else { // we have a MenuItem::Command
106
107                         LYXERR(Debug::GUI) << "creating Menu Item "
108                                 << to_utf8(m->label()) << endl;
109
110                         docstring label = getLabel(*m);
111                         addBinding(label, *m);
112
113                         Action * action = new Action(*(owner_->view()),
114                                                      label, m->func());
115                         qMenu->addAction(action);
116                 }
117         }
118 }
119
120
121 docstring const GuiPopupMenu::getLabel(MenuItem const & mi)
122 {
123         docstring const shortcut = mi.shortcut();
124         docstring label = support::subst(mi.label(),
125         from_ascii("&"), from_ascii("&&"));
126
127         if (!shortcut.empty()) {
128                 docstring::size_type pos = label.find(shortcut);
129                 if (pos != docstring::npos)
130                         label.insert(pos, 1, char_type('&'));
131         }
132
133         return label;
134 }
135
136
137 void GuiPopupMenu::addBinding(docstring & label, MenuItem const & mi)
138 {
139 #ifdef Q_WS_MACX
140         docstring const binding = mi.binding(false);
141 #else
142         docstring const binding = mi.binding(true);
143 #endif
144         if (!binding.empty())
145                 label += '\t' + binding;
146 }
147
148
149 } // namespace frontend
150 } // namespace lyx
151
152 #include "GuiPopupMenu_moc.cpp"