lyx_mirror/src/frontends/qt4/Menus.h
Stefan Schimanski f9f0b26bd3 * make sure the Mac special menu item are only created once per QMenuBar.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23754 a592a061-630c-0410-9148-cb99ea01b6c8
2008-03-15 02:58:05 +00:00

89 lines
1.4 KiB
C++

// -*- C++ -*-
/**
* \file Menus.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 MENUS_H
#define MENUS_H
#include "support/docstring.h"
#include <QMenu>
#include <vector>
class QString;
class QMenuBar;
namespace lyx {
class Lexer;
class FuncRequest;
namespace frontend {
class GuiView;
class Menu : public QMenu
{
Q_OBJECT
public:
///
Menu(GuiView * gv, QString const & name, bool top_level);
///
~Menu();
private Q_SLOTS:
///
void updateView();
private:
friend class Menus;
/// Use the Pimpl idiom to hide the internals.
struct Impl;
/// The pointer never changes although *d's contents may.
Impl * const d;
};
class Menus
{
public:
Menus();
///
bool searchMenu(FuncRequest const & func,
std::vector<docstring> & names) const;
///
void fillMenuBar(QMenuBar * qmb, GuiView * view, bool initial = false);
/// \return a top-level submenu given its name.
Menu * menu(QString const & name, GuiView & view);
///
void read(Lexer &);
///
void updateMenu(Menu * qmenu);
private:
/// Use the Pimpl idiom to hide the internals.
struct Impl;
/// The pointer never changes although *d's contents may.
Impl * const d;
};
} // namespace frontend
} // namespace lyx
#endif // MENUS_H