mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 20:32:49 +00:00
a5ead24854
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7867 a592a061-630c-0410-9148-cb99ea01b6c8
32 lines
677 B
C++
32 lines
677 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file Menubar.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 Jean-Marc Lasgouttes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef MENUBAR_H
|
|
#define MENUBAR_H
|
|
|
|
#include <string>
|
|
|
|
/**
|
|
* The LyX GUI independent menubar class
|
|
* The GUI interface is implemented in the frontends
|
|
*/
|
|
class Menubar {
|
|
public:
|
|
///
|
|
virtual ~Menubar() {}
|
|
/// Opens a top-level submenu given its name
|
|
virtual void openByName(std::string const &) = 0;
|
|
/// update the state of the menuitems
|
|
virtual void update() = 0;
|
|
};
|
|
#endif // MENUBAR_H
|