lyx_mirror/src/frontends/Application.h

96 lines
1.9 KiB
C
Raw Normal View History

/**
* \file frontend/Application.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Abdelrazak Younes
*
* Full author contact details are available in file CREDITS.
*/
#ifndef LYX_APPLICATION_H
#define LYX_APPLICATION_H
#include <boost/scoped_ptr.hpp>
#include <string>
class BufferList;
class BufferView;
class LyXFunc;
class LyXServer;
class LyXServerSocket;
namespace lyx {
namespace frontend {
struct Application_pimpl;
class Clipboard;
class Gui;
class Selection;
/// The main application class
/**
There should be only one instance of this class. No Qt object
initialisation should be done before the instanciation of this class.
\todo The work areas handling could be moved to a base virtual class
comon to all frontends.
*/
class Application
{
public:
///
Application(int & argc, char ** argv);
///
virtual ~Application() {}
int start(std::string const & batch);
///
virtual Gui & gui() = 0;
///
virtual int const exec() = 0;
///
virtual void exit(int status) = 0;
///
virtual Clipboard & clipboard() = 0;
///
virtual Selection & selection() = 0;
///
LyXFunc & lyxFunc();
LyXFunc const & lyxFunc() const;
///
LyXServer & server();
LyXServer const & server() const;
///
LyXServerSocket & socket();
LyXServerSocket const & socket() const;
///
BufferList & bufferList();
BufferList const & bufferList() const;
void setBufferView(BufferView * buffer_view);
protected:
/// This BufferView is the one receiving Clipboard and Selection
/// Events
/// FIXME: \todo use Gui::currentView() in the future
BufferView * buffer_view_;
/// Application private implementation.
/// FIXME: this should be private but LyXFunc construction
/// is still done in GuiApplication.
Application_pimpl * pimpl_;
}; // Application
} // namespace frontend
} // namespace lyx
extern lyx::frontend::Application * theApp;
#endif // LYX_APPLICATION_H