mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
eefc9ad640
update users of the dir accordingly. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13731 a592a061-630c-0410-9148-cb99ea01b6c8
69 lines
1.2 KiB
C++
69 lines
1.2 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file QLPopupMenu.h
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef QLPOPUPMENU_H
|
|
#define QLPOPUPMENU_H
|
|
|
|
#include <qpopupmenu.h>
|
|
|
|
#include "funcrequest.h"
|
|
|
|
#include <vector>
|
|
#include <utility>
|
|
|
|
class MenuBackend;
|
|
class MenuItem;
|
|
class Menu;
|
|
class QMenuData;
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
class QLMenubar;
|
|
class QLPopupMenu;
|
|
|
|
/// create a sub-menu
|
|
std::pair<int, QLPopupMenu *>
|
|
createMenu(QMenuData * parent, MenuItem const * item,
|
|
QLMenubar * owner, bool is_toplevel = false);
|
|
|
|
/// a submenu
|
|
class QLPopupMenu : public QPopupMenu {
|
|
Q_OBJECT
|
|
public:
|
|
QLPopupMenu(QLMenubar * owner,
|
|
std::string const & name, bool toplevel);
|
|
|
|
/// populate the menu
|
|
void populate(Menu * menu);
|
|
public slots:
|
|
/// populate the toplevel menu and all children
|
|
void showing();
|
|
///
|
|
void fire(int);
|
|
private:
|
|
/// our owning menubar
|
|
QLMenubar * owner_;
|
|
|
|
/// the name of this menu
|
|
std::string name_;
|
|
|
|
///
|
|
typedef std::vector<FuncRequest> Funcs;
|
|
///
|
|
Funcs funcs_;
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // QLPOPUPMENU_H
|