lyx_mirror/src/frontends/Gui.h
André Pönitz 72e3177e3d shuffle some code around
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21636 a592a061-630c-0410-9148-cb99ea01b6c8
2007-11-15 22:30:16 +00:00

66 lines
1.1 KiB
C++

// -*- C++ -*-
/**
* \file Gui.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author unknown
* \author John Levon
* \author Abdelrazak Younes
*
* Full author contact details are available in file CREDITS.
*/
#ifndef BASE_GUI_H
#define BASE_GUI_H
#include "support/strfwd.h"
#include <vector>
namespace lyx {
class Buffer;
class Inset;
namespace frontend {
class LyXView;
/**
* A Gui class manages the different frontend elements.
*/
class Gui
{
public:
virtual ~Gui() {}
///
virtual int createRegisteredView() = 0;
///
virtual bool unregisterView(int id) = 0;
///
virtual bool closeAllViews() = 0;
///
virtual LyXView & view(int id) const = 0;
///
std::vector<int> const & viewIds() { return view_ids_; }
///
virtual void hideDialogs(std::string const & name, Inset * inset) const = 0;
///
virtual Buffer const * updateInset(Inset const * inset) const = 0;
protected:
///
std::vector<int> view_ids_;
};
} // namespace frontend
} // namespace lyx
#endif // BASE_GUI_H