2006-09-22 17:50:33 +00:00
|
|
|
/**
|
|
|
|
* \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
|
|
|
|
|
2006-10-12 14:10:13 +00:00
|
|
|
#include <boost/function.hpp>
|
2006-09-22 17:50:33 +00:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class BufferView;
|
2006-09-29 23:10:17 +00:00
|
|
|
class LyXView;
|
2006-10-12 14:10:13 +00:00
|
|
|
class LColor_color;
|
2006-09-29 22:06:28 +00:00
|
|
|
|
2006-09-22 17:50:33 +00:00
|
|
|
namespace lyx {
|
2006-10-12 14:10:13 +00:00
|
|
|
|
|
|
|
struct RGBColor;
|
|
|
|
|
2006-09-22 17:50:33 +00:00
|
|
|
namespace frontend {
|
|
|
|
|
|
|
|
class Clipboard;
|
2006-10-03 16:17:32 +00:00
|
|
|
class FontLoader;
|
2006-09-22 17:50:33 +00:00
|
|
|
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() {}
|
|
|
|
|
2006-10-03 13:59:01 +00:00
|
|
|
/// Start the main event loop, after executing the given batch
|
|
|
|
/// commands.
|
2006-09-22 17:50:33 +00:00
|
|
|
int start(std::string const & batch);
|
|
|
|
///
|
|
|
|
virtual Gui & gui() = 0;
|
|
|
|
///
|
|
|
|
virtual int const exec() = 0;
|
2006-10-03 13:59:01 +00:00
|
|
|
|
|
|
|
/// Quit running LyX.
|
|
|
|
/**
|
|
|
|
* This may either quit directly or record the exit status
|
|
|
|
* and only stop the event loop.
|
|
|
|
*/
|
2006-09-22 17:50:33 +00:00
|
|
|
virtual void exit(int status) = 0;
|
|
|
|
|
2006-10-12 14:10:13 +00:00
|
|
|
/**
|
|
|
|
* Synchronise all pending events.
|
|
|
|
*/
|
|
|
|
virtual void syncEvents() = 0;
|
2006-09-22 17:50:33 +00:00
|
|
|
///
|
|
|
|
virtual Clipboard & clipboard() = 0;
|
|
|
|
///
|
|
|
|
virtual Selection & selection() = 0;
|
2006-10-03 16:17:32 +00:00
|
|
|
///
|
|
|
|
virtual FontLoader & fontLoader() = 0;
|
2006-09-22 17:50:33 +00:00
|
|
|
|
2006-10-03 10:34:10 +00:00
|
|
|
/// return a suitable serif font name.
|
|
|
|
virtual std::string const romanFontName() = 0;
|
|
|
|
|
|
|
|
/// return a suitable sans serif font name.
|
|
|
|
virtual std::string const sansFontName() = 0;
|
|
|
|
|
|
|
|
/// return a suitable monospaced font name.
|
|
|
|
virtual std::string const typewriterFontName() = 0;
|
|
|
|
|
2006-10-12 14:10:13 +00:00
|
|
|
/**
|
|
|
|
* Given col, fills r, g, b in the range 0-255.
|
|
|
|
* The function returns true if successful.
|
|
|
|
* It returns false on failure and sets r, g, b to 0.
|
|
|
|
*/
|
|
|
|
virtual bool getRgbColor(LColor_color col, lyx::RGBColor & rgbcol) = 0;
|
|
|
|
|
|
|
|
/** Eg, passing LColor::black returns "000000",
|
|
|
|
* passing LColor::white returns "ffffff".
|
|
|
|
*/
|
|
|
|
virtual std::string const hexName(LColor_color col) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* update an altered GUI color
|
|
|
|
*/
|
|
|
|
virtual void updateColor(LColor_color col) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* add a callback for socket read notification
|
|
|
|
* @param fd socket descriptor (file/socket/etc)
|
|
|
|
*/
|
|
|
|
virtual void registerSocketCallback(
|
|
|
|
int fd, boost::function<void()> func) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* remove a I/O read callback
|
|
|
|
* @param fd socket descriptor (file/socket/etc)
|
|
|
|
*/
|
|
|
|
virtual void unregisterSocketCallback(int fd) = 0;
|
|
|
|
|
2006-10-03 13:59:01 +00:00
|
|
|
/// Create the main window with given geometry settings.
|
2006-09-29 23:10:17 +00:00
|
|
|
LyXView & createView(unsigned int width, unsigned int height,
|
|
|
|
int posx, int posy, bool maximize);
|
|
|
|
|
|
|
|
///
|
2006-09-22 17:50:33 +00:00
|
|
|
void setBufferView(BufferView * buffer_view);
|
|
|
|
|
|
|
|
protected:
|
2006-09-29 22:06:28 +00:00
|
|
|
/// This BufferView is the one receiving Clipboard and Selection
|
|
|
|
/// Events
|
|
|
|
/// FIXME: \todo use Gui::currentView() in the future
|
2006-09-22 17:50:33 +00:00
|
|
|
BufferView * buffer_view_;
|
|
|
|
|
|
|
|
}; // Application
|
|
|
|
|
|
|
|
} // namespace frontend
|
2006-10-12 14:10:13 +00:00
|
|
|
|
|
|
|
lyx::frontend::Application * createApplication(int & argc, char * argv[]);
|
|
|
|
|
2006-09-22 17:50:33 +00:00
|
|
|
} // namespace lyx
|
|
|
|
|
|
|
|
extern lyx::frontend::Application * theApp;
|
|
|
|
|
|
|
|
|
|
|
|
#endif // LYX_APPLICATION_H
|