lyx_mirror/src/frontends/Application.h
Abdelrazak Younes 315d394338 Some cleanup
* Application.h: pimpl_ is now private

* GuiApplication.C: headers cleanup.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15185 a592a061-630c-0410-9148-cb99ea01b6c8
2006-09-29 23:21:03 +00:00

101 lines
1.9 KiB
C++

/**
* \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;
class LyXView;
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;
///
LyXView & createView(unsigned int width, unsigned int height,
int posx, int posy, bool maximize);
///
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_;
private:
/// Application private implementation.
Application_pimpl * pimpl_;
}; // Application
} // namespace frontend
} // namespace lyx
extern lyx::frontend::Application * theApp;
#endif // LYX_APPLICATION_H