lyx_mirror/src/frontends/qt4/QLMenubar.h
André Pönitz c6b932f467 code cosmetics whitespace, unneeded lyx:: qualification, indentation, unneeded destructors and the like
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17994 a592a061-630c-0410-9148-cb99ea01b6c8
2007-04-25 16:39:21 +00:00

83 lines
1.5 KiB
C++

// -*- C++ -*-
/**
* \file qt4/QLMenubar.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Lars Gullik Bjønnes
* \author John Levon
*
* Full author contact details are available in file CREDITS.
*/
#ifndef QLMENUBAR_H
#define QLMENUBAR_H
#include "frontends/Menubar.h"
#include <map>
#include <boost/scoped_ptr.hpp>
#include <QObject>
#include <QMenuBar>
#include "QLPopupMenu.h"
class LyXView;
class MenuBackend;
class Menu;
class MenuItem;
namespace lyx {
namespace frontend {
class GuiView;
class QLMenubar : public QObject, public Menubar {
Q_OBJECT
public:
QLMenubar(LyXView *, MenuBackend &);
/// opens a top-level submenu given its name
void openByName(docstring const &);
/// return the owning view
GuiView * view();
/// return the menu controller
MenuBackend const & backend();
/// The QMenuBar used by LyX
QMenuBar * menuBar() const;
/// update the state of the menuitems - not needed
void update();
public Q_SLOTS:
/// populate a toplevel menu and all its children on demand
// void updateMenu();
private:
/// Initialize specific MACOS X menubar
void macxMenuBarInit();
/// owning view
GuiView * owner_;
/// menu controller
MenuBackend & menubackend_;
typedef std::map<docstring, QLPopupMenu *> NameMap;
/// name to menu for openByName
NameMap name_map_;
/// MACOS X special menubar.
boost::scoped_ptr<QMenuBar> mac_menubar_;
};
} // namespace frontend
} // namespace lyx
#endif // QLMENUBAR_H