lyx_mirror/src/frontends/qt2/QLMenubar.h
Lars Gullik Bjønnes 44cd0fc9a1 The std::string mammoth path.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7862 a592a061-630c-0410-9148-cb99ea01b6c8
2003-10-06 15:43:21 +00:00

55 lines
1.0 KiB
C++

// -*- C++ -*-
/**
* \file qt2/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>
class LyXView;
class QtView;
class MenuBackend;
class QLPopupMenu;
class QLMenubar : public Menubar {
public:
QLMenubar(LyXView *, MenuBackend const &);
/// opens a top-level submenu given its name
void openByName(std::string const &);
/// update the state of the menuitems - not needed
void update();
/// return the owning view
QtView * view();
/// return the menu controller
MenuBackend const & backend();
private:
/// owning view
QtView * owner_;
/// menu controller
MenuBackend const & menubackend_;
typedef std::map<std::string, QLPopupMenu *> NameMap;
/// name to menu for openByName
NameMap name_map_;
};
#endif // QLMENUBAR_H