2002-06-19 05:20:29 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file Menubar_pimpl.C
|
|
|
|
|
* Copyright 1999-2001 The LyX Team.
|
|
|
|
|
* See the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes, larsbj@lyx.org
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
|
#pragma implementation
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "Menubar_pimpl.h"
|
|
|
|
|
#include "MenuBackend.h"
|
|
|
|
|
#include "LyXAction.h"
|
|
|
|
|
#include "kbmap.h"
|
|
|
|
|
#include "buffer.h"
|
|
|
|
|
#include "Dialogs.h"
|
|
|
|
|
#include "lyxfunc.h"
|
|
|
|
|
#include "FloatList.h"
|
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
|
#include "support/LAssert.h"
|
|
|
|
|
#include "gettext.h"
|
|
|
|
|
#include "debug.h"
|
|
|
|
|
|
|
|
|
|
#include "QtView.h"
|
|
|
|
|
|
|
|
|
|
#include <qmenubar.h>
|
|
|
|
|
#include <qpopupmenu.h>
|
|
|
|
|
|
|
|
|
|
using std::endl;
|
|
|
|
|
using std::vector;
|
|
|
|
|
using std::max;
|
|
|
|
|
using std::min;
|
|
|
|
|
using std::for_each;
|
|
|
|
|
|
|
|
|
|
typedef vector<int>::size_type size_type;
|
|
|
|
|
|
|
|
|
|
extern boost::scoped_ptr<kb_keymap> toplevel_keymap;
|
|
|
|
|
extern LyXAction lyxaction;
|
|
|
|
|
|
|
|
|
|
|
2002-06-21 16:40:54 +00:00
|
|
|
|
Menubar::Pimpl::Pimpl(LyXView * view, MenuBackend const & mbe)
|
|
|
|
|
: owner_(static_cast<QtView*>(view)), menubackend_(mbe)
|
2002-06-19 05:20:29 +00:00
|
|
|
|
{
|
2002-07-21 01:38:24 +00:00
|
|
|
|
Menu::const_iterator m = mbe.getMenubar().begin();
|
|
|
|
|
Menu::const_iterator end = mbe.getMenubar().end();
|
|
|
|
|
for (; m != end; ++m) {
|
|
|
|
|
makeMenu(owner_->menuBar(), *m);
|
2002-06-19 05:20:29 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void Menubar::Pimpl::makeMenu(QMenuData * parent, MenuItem const & menu)
|
|
|
|
|
{
|
|
|
|
|
// FIXME: leak
|
|
|
|
|
QPopupMenu * pm = new QPopupMenu();
|
|
|
|
|
parent->insertItem(menu.label().c_str(), pm);
|
|
|
|
|
|
|
|
|
|
Menu md;
|
|
|
|
|
menubackend_.getMenu(menu.submenu()).expand(md, 0);
|
|
|
|
|
Menu::const_iterator m = md.begin();
|
|
|
|
|
Menu::const_iterator end = md.end();
|
|
|
|
|
for (; m != end; ++m) {
|
|
|
|
|
if (m->kind() == MenuItem::Separator) {
|
|
|
|
|
pm->insertSeparator();
|
|
|
|
|
} else {
|
|
|
|
|
pm->insertItem(m->label().c_str(), m->action());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void Menubar::Pimpl::openByName(string const & name)
|
|
|
|
|
{
|
|
|
|
|
lyxerr << "Menubar::Pimpl::openByName: menu " << name << endl;
|
|
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
|
if (menubackend_->getMenu(current_menu_name_).hasSubmenu(name)) {
|
|
|
|
|
for (ButtonList::const_iterator cit = buttonlist_.begin();
|
|
|
|
|
cit != buttonlist_.end(); ++cit) {
|
|
|
|
|
if ((*cit)->item_->submenu() == name) {
|
|
|
|
|
MenuCallback((*cit)->obj_, 1);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|