2006-03-05 17:24:44 +00:00
|
|
|
/**
|
2006-03-12 17:44:38 +00:00
|
|
|
* \file qt4/QLMenubar.C
|
2006-03-05 17:24:44 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author John Levon
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
// Qt defines a macro 'signals' that clashes with a boost namespace.
|
|
|
|
// All is well if the namespace is visible first.
|
2006-06-20 09:33:01 +00:00
|
|
|
#include "GuiView.h"
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2006-12-20 14:28:06 +00:00
|
|
|
#include "Action.h"
|
2006-03-05 17:24:44 +00:00
|
|
|
#include "QLMenubar.h"
|
|
|
|
#include "QLPopupMenu.h"
|
|
|
|
|
|
|
|
#include "qt_helpers.h"
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
|
|
|
|
#include "MenuBackend.h"
|
|
|
|
|
2006-03-20 17:25:02 +00:00
|
|
|
#include "debug.h"
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
#include <QCursor>
|
2007-02-26 19:54:41 +00:00
|
|
|
#include <QMenuBar>
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
using std::pair;
|
|
|
|
using std::string;
|
|
|
|
using std::endl;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
} // namespace anon
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
|
|
|
|
namespace frontend {
|
|
|
|
|
|
|
|
// MacOSX specific stuff is at the end.
|
|
|
|
|
|
|
|
QLMenubar::QLMenubar(LyXView * view, MenuBackend & mbe)
|
2006-06-20 09:33:01 +00:00
|
|
|
: owner_(static_cast<GuiView*>(view)), menubackend_(mbe)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
|
|
|
macxMenuBarInit();
|
|
|
|
|
2007-04-01 10:09:49 +00:00
|
|
|
LYXERR(Debug::GUI) << "populating menu bar" << lyx::to_utf8(menubackend_.getMenubar().name()) << endl;
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
if (menubackend_.getMenubar().size() == 0) {
|
2007-04-01 10:09:49 +00:00
|
|
|
LYXERR(Debug::GUI) << "\tERROR: empty menu bar" << lyx::to_utf8(menubackend_.getMenubar().name()) << endl;
|
2006-03-05 17:24:44 +00:00
|
|
|
return;
|
|
|
|
// continue;
|
|
|
|
}
|
|
|
|
else {
|
2007-04-01 10:09:49 +00:00
|
|
|
LYXERR(Debug::GUI) << "menu bar entries " << menubackend_.getMenubar().size();
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
// for (; m != end; ++m) {
|
|
|
|
|
|
|
|
Menu menu;
|
2006-09-29 21:40:56 +00:00
|
|
|
menubackend_.expand(menubackend_.getMenubar(), menu, owner_->buffer());
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
Menu::const_iterator m = menu.begin();
|
|
|
|
Menu::const_iterator end = menu.end();
|
|
|
|
|
|
|
|
for (; m != end; ++m) {
|
|
|
|
|
|
|
|
if (m->kind() != MenuItem::Submenu) {
|
2007-04-01 10:09:49 +00:00
|
|
|
LYXERR(Debug::GUI) << "\tERROR: not a submenu " << lyx::to_utf8(m->label()) << endl;
|
2006-03-05 17:24:44 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2007-04-01 10:09:49 +00:00
|
|
|
LYXERR(Debug::GUI) << "menu bar item " << lyx::to_utf8(m->label()) << " is a submenu named " << lyx::to_utf8(m->submenuname()) << endl;
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2006-09-09 22:27:22 +00:00
|
|
|
docstring name = m->submenuname();
|
2006-03-05 17:24:44 +00:00
|
|
|
if (!menubackend_.hasMenu(name)) {
|
2007-04-01 10:09:49 +00:00
|
|
|
LYXERR(Debug::GUI) << "\tERROR: " << lyx::to_utf8(name) << " submenu has no menu!" << endl;
|
2006-03-05 17:24:44 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
Menu menu;
|
2006-09-29 21:40:56 +00:00
|
|
|
menubackend_.expand(menubackend_.getMenubar(), menu, owner_->buffer());
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
QLPopupMenu * qMenu = new QLPopupMenu(this, *m, true);
|
|
|
|
owner_->menuBar()->addMenu(qMenu);
|
|
|
|
|
|
|
|
pair<NameMap::iterator, bool> I = name_map_.insert(make_pair(name, qMenu));
|
|
|
|
if (!I.second) {
|
2007-04-01 10:09:49 +00:00
|
|
|
LYXERR(Debug::GUI) << "\tERROR: " << lyx::to_utf8(name) << " submenu is already there!" << endl;
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
/*
|
|
|
|
QObject::connect(qMenu, SIGNAL(aboutToShow()), this, SLOT(update()));
|
|
|
|
QObject::connect(qMenu, SIGNAL(triggered(QAction *)), this, SLOT(update()));
|
|
|
|
QObject::connect(qMenu->menuAction(), SIGNAL(triggered()), this, SLOT(update()));
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
//QObject::connect(owner_->menuBar(), SIGNAL(triggered()), this, SLOT(update()));
|
|
|
|
}
|
|
|
|
|
2006-09-09 22:27:22 +00:00
|
|
|
void QLMenubar::openByName(docstring const & name)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
|
|
|
NameMap::const_iterator const cit = name_map_.find(name);
|
|
|
|
if (cit == name_map_.end())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// I (Abdel) don't understand this comment:
|
|
|
|
// this will have to do I'm afraid.
|
|
|
|
cit->second->exec(QCursor::pos());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QLMenubar::update()
|
|
|
|
{ }
|
|
|
|
|
2006-06-20 09:33:01 +00:00
|
|
|
GuiView * QLMenubar::view()
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
|
|
|
return owner_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
MenuBackend const & QLMenubar::backend()
|
|
|
|
{
|
|
|
|
return menubackend_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-20 14:28:06 +00:00
|
|
|
/// Some special Qt/Mac support hacks
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
/*
|
|
|
|
Here is what the Qt documentation says about how a menubar is chosen:
|
|
|
|
|
|
|
|
1) If the window has a QMenuBar then it is used. 2) If the window
|
|
|
|
is a modal then its menubar is used. If no menubar is specified
|
|
|
|
then a default menubar is used (as documented below) 3) If the
|
|
|
|
window has no parent then the default menubar is used (as
|
|
|
|
documented below).
|
|
|
|
|
|
|
|
The above 3 steps are applied all the way up the parent window
|
|
|
|
chain until one of the above are satisifed. If all else fails a
|
|
|
|
default menubar will be created, the default menubar on Qt/Mac is
|
|
|
|
an empty menubar, however you can create a different default
|
|
|
|
menubar by creating a parentless QMenuBar, the first one created
|
|
|
|
will thus be designated the default menubar, and will be used
|
|
|
|
whenever a default menubar is needed.
|
|
|
|
|
|
|
|
Thus, for Qt/Mac, we add the menus to a free standing menubar, so
|
|
|
|
that this menubar will be used also when one of LyX' dialogs has
|
|
|
|
focus. (JMarc)
|
|
|
|
*/
|
|
|
|
QMenuBar * QLMenubar::menuBar() const
|
|
|
|
{
|
2006-03-14 14:50:00 +00:00
|
|
|
#ifdef Q_WS_MACX
|
2006-03-12 17:44:38 +00:00
|
|
|
return mac_menubar_.get();
|
2006-03-05 17:24:44 +00:00
|
|
|
#else
|
|
|
|
return owner_->menuBar();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2006-12-20 14:28:06 +00:00
|
|
|
#ifdef Q_WS_MACX
|
|
|
|
extern void qt_mac_set_menubar_merge(bool b);
|
|
|
|
#endif
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
void QLMenubar::macxMenuBarInit()
|
|
|
|
{
|
2006-03-14 14:50:00 +00:00
|
|
|
#ifdef Q_WS_MACX
|
2006-03-12 17:44:38 +00:00
|
|
|
mac_menubar_.reset(new QMenuBar);
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2007-02-26 19:54:41 +00:00
|
|
|
# if QT_VERSION >= 0x040200
|
|
|
|
/* Since Qt 4.2, the qt/mac menu code has special code for
|
|
|
|
specifying the role of a menu entry. However, it does not
|
|
|
|
work very well with our scheme of creating menus on demand,
|
|
|
|
and therefore we need to put these entries in a special
|
|
|
|
invisible menu. (JMarc)
|
2006-12-20 14:28:06 +00:00
|
|
|
*/
|
2007-02-26 19:54:41 +00:00
|
|
|
|
|
|
|
/* The entries of our special mac menu. If we add support for
|
|
|
|
* special entries in MenuBackend, we could imagine something
|
|
|
|
* like
|
|
|
|
* SpecialItem About " "About LyX" "dialog-show aboutlyx"
|
|
|
|
* and therefore avoid hardcoding. I am not sure it is worth
|
|
|
|
* the hassle, though. (JMarc)
|
|
|
|
*/
|
|
|
|
struct MacMenuEntry {
|
|
|
|
kb_action action;
|
|
|
|
char const * arg;
|
|
|
|
char const * label;
|
|
|
|
QAction::MenuRole role;
|
|
|
|
};
|
|
|
|
|
|
|
|
MacMenuEntry entries[] = {
|
|
|
|
{LFUN_DIALOG_SHOW, "aboutlyx", "About LyX",
|
|
|
|
QAction::AboutRole},
|
|
|
|
{LFUN_DIALOG_SHOW, "prefs", "Preferences",
|
|
|
|
QAction::PreferencesRole},
|
2007-02-27 15:30:29 +00:00
|
|
|
{LFUN_RECONFIGURE, "", "Reconfigure",
|
|
|
|
QAction::ApplicationSpecificRole},
|
2007-02-26 19:54:41 +00:00
|
|
|
{LFUN_LYX_QUIT, "", "Quit LyX", QAction::QuitRole}
|
|
|
|
};
|
|
|
|
const size_t num_entries = sizeof(entries) / sizeof(MacMenuEntry);
|
|
|
|
|
|
|
|
// the special menu for MenuBackend.
|
2007-01-03 11:59:10 +00:00
|
|
|
Menu special;
|
2007-02-26 19:54:41 +00:00
|
|
|
for (size_t i = 0 ; i < num_entries ; ++i) {
|
|
|
|
FuncRequest const func(entries[i].action,
|
|
|
|
from_utf8(entries[i].arg));
|
|
|
|
special.add(MenuItem(MenuItem::Command,
|
|
|
|
from_utf8(entries[i].label),
|
|
|
|
func));
|
|
|
|
}
|
2007-01-03 11:59:10 +00:00
|
|
|
menubackend_.specialMenu(special);
|
2007-02-26 19:54:41 +00:00
|
|
|
|
|
|
|
// add the entries to a QMenu that will eventually be empty
|
|
|
|
// and therefore invisible.
|
|
|
|
QMenu * qMenu = owner_->menuBar()->addMenu("special");
|
|
|
|
|
|
|
|
// we do not use 'special' because it is a temporary variable,
|
|
|
|
// whereas MenuBackend::specialMenu points to a persistent
|
|
|
|
// copy.
|
|
|
|
Menu::const_iterator cit = menubackend_.specialMenu().begin();
|
2007-01-03 11:59:10 +00:00
|
|
|
Menu::const_iterator end = menubackend_.specialMenu().end();
|
2007-02-26 19:54:41 +00:00
|
|
|
for (size_t i = 0 ; cit != end ; ++cit, ++i) {
|
|
|
|
Action * action = new Action(*owner_, cit->label(),
|
|
|
|
cit->func());
|
|
|
|
action->setMenuRole(entries[i].role);
|
|
|
|
qMenu->addAction(action);
|
|
|
|
|
|
|
|
}
|
2006-12-20 14:28:06 +00:00
|
|
|
# else
|
|
|
|
qt_mac_set_menubar_merge(false);
|
2007-02-26 19:54:41 +00:00
|
|
|
# endif // QT_VERSION >= 0x040200
|
2006-12-20 14:28:06 +00:00
|
|
|
#endif // Q_WS_MACX
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|
2006-05-18 08:51:12 +00:00
|
|
|
|
|
|
|
#include "QLMenubar_moc.cpp"
|