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>
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
namespace lyx {
|
|
|
|
|
2006-09-22 17:50:33 +00:00
|
|
|
class BufferView;
|
2006-09-29 23:10:17 +00:00
|
|
|
class LyXView;
|
2006-10-12 14:10:13 +00:00
|
|
|
class LColor_color;
|
|
|
|
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
|
2006-10-21 00:16:43 +00:00
|
|
|
common to all frontends.
|
2006-11-21 10:37:52 +00:00
|
|
|
|
|
|
|
Model/View/Controller separation in LyX:
|
|
|
|
|
|
|
|
1) The Model: \c Buffer
|
|
|
|
|
|
|
|
The Buffer is the in-memory representation of a LyX file format. The
|
|
|
|
Buffer does not (should not) have any information on what part of it
|
|
|
|
is represented on screen. There is one unique Buffer per opened LyX
|
|
|
|
file.
|
|
|
|
|
|
|
|
|
|
|
|
2) The Controller: \c BufferView / \c Painter
|
|
|
|
|
|
|
|
The BufferView is a tool used by the view that translates a part of
|
|
|
|
the Buffer contents into drawing routines. The BufferView asks each
|
|
|
|
inset of the Buffer to draw itself onto the screen using the Painter.
|
2006-11-22 14:37:18 +00:00
|
|
|
There can be only one Buffer displayed in a BufferView. While there
|
|
|
|
is the possibility to switch Buffer inside the BufferView, the goal
|
|
|
|
is to instantiate a new BufferView on each Buffer switch.
|
2006-11-21 10:37:52 +00:00
|
|
|
|
|
|
|
\todo Instantiate a new BufferView on each Buffer switch.
|
|
|
|
|
|
|
|
The \c Painter is just a virtual interface to formalize each kind of
|
|
|
|
drawing routines (text, line, rectangle, etc).
|
|
|
|
|
|
|
|
The \c BufferView also contains a Cursor which may or may not be
|
|
|
|
visible on screen. The cursor is really just a bookmark to remember
|
|
|
|
where the next Buffer insertion/deletion is going to take place.
|
|
|
|
|
|
|
|
|
|
|
|
3) The View: \c WorkArea (and it's qt4 specialisation GuiWorkArea)
|
|
|
|
|
|
|
|
This contains the real screen area where the drawing is done by the
|
|
|
|
Painter. One WorkArea holds one unique \c BufferView. While it could be
|
|
|
|
possible that multiple WorkArea share one BufferView, this is not
|
|
|
|
possible right now.
|
|
|
|
The WorkArea also provide a scrollbar which position is translated
|
|
|
|
into scrolling command to the inner \c BufferView.
|
|
|
|
|
|
|
|
The WorkArea use the BufferView to translate each keyboard or mouse
|
|
|
|
events into terms that the Buffer can understand:
|
|
|
|
- insert/delete char
|
|
|
|
- select char
|
|
|
|
- etc.
|
|
|
|
|
|
|
|
|
|
|
|
4) The Window: \c LyXView (and its qt4 specialisation \c GuiView)
|
|
|
|
|
|
|
|
This is a full window containing a menubar, toolbars, a tabbar and a
|
|
|
|
WorkArea. One LyXView could in theory contain multiple WorkArea
|
|
|
|
(ex: with split window) but this number is limited to one only for
|
|
|
|
now. In any case, there would be only one WorkArea that gets the focus
|
|
|
|
at a time.
|
|
|
|
|
|
|
|
Now, concerning the TabBar versus TabWidget issue. Right now, there is
|
|
|
|
only one WorkArea and the TabBar just used to tell the BufferView inside
|
|
|
|
the WorkArea to switch to this another Buffer.
|
|
|
|
|
|
|
|
With a TabWidget, each Tab would own its own \c WorkArea. Clicking on a tab
|
|
|
|
would switch a WorkArea instead of a Buffer.
|
2006-09-22 17:50:33 +00:00
|
|
|
*/
|
|
|
|
class Application
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
Application(int & argc, char ** argv);
|
|
|
|
///
|
|
|
|
virtual ~Application() {}
|
|
|
|
|
|
|
|
///
|
|
|
|
virtual Gui & gui() = 0;
|
2006-11-26 02:18:32 +00:00
|
|
|
|
|
|
|
/// Start the main event loop.
|
|
|
|
/// The batch command is programmed to be execute once
|
|
|
|
/// the event loop is started.
|
2006-09-22 17:50:33 +00:00
|
|
|
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.
|
|
|
|
*/
|
2006-10-21 00:16:43 +00:00
|
|
|
virtual bool getRgbColor(LColor_color col, RGBColor & rgbcol) = 0;
|
2006-10-12 14:10:13 +00:00
|
|
|
|
|
|
|
/** 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)
|
|
|
|
*/
|
2006-12-02 17:39:31 +00:00
|
|
|
virtual void unregisterSocketCallback(int fd) = 0;
|
2006-10-12 14:10:13 +00:00
|
|
|
|
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,
|
2007-03-17 12:28:26 +00:00
|
|
|
int posx, int posy, int maximized,
|
|
|
|
unsigned int iconSizeXY, const std::string & geometryArg);
|
2006-09-29 23:10:17 +00:00
|
|
|
|
2006-11-07 17:19:33 +00:00
|
|
|
///
|
2006-12-04 13:52:02 +00:00
|
|
|
LyXView const * currentView() const;
|
2006-11-07 17:19:33 +00:00
|
|
|
|
|
|
|
///
|
2006-12-04 13:52:02 +00:00
|
|
|
LyXView * currentView();
|
2006-11-07 17:19:33 +00:00
|
|
|
|
2006-09-29 23:10:17 +00:00
|
|
|
///
|
2006-11-07 17:19:33 +00:00
|
|
|
void setCurrentView(LyXView & current_view);
|
2006-09-22 17:50:33 +00:00
|
|
|
|
2006-11-07 17:19:33 +00:00
|
|
|
private:
|
|
|
|
/// This LyXView is the one receiving Clipboard and Selection
|
2006-09-29 22:06:28 +00:00
|
|
|
/// Events
|
2006-11-07 17:19:33 +00:00
|
|
|
LyXView * current_view_;
|
2006-09-22 17:50:33 +00:00
|
|
|
|
|
|
|
}; // Application
|
|
|
|
|
|
|
|
} // namespace frontend
|
2006-10-12 14:10:13 +00:00
|
|
|
|
2006-11-30 00:04:51 +00:00
|
|
|
frontend::Application * theApp();
|
2006-10-21 00:16:43 +00:00
|
|
|
frontend::Application * createApplication(int & argc, char * argv[]);
|
2006-10-12 14:10:13 +00:00
|
|
|
|
2006-09-22 17:50:33 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
} // namespace lyx
|
2006-09-22 17:50:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
#endif // LYX_APPLICATION_H
|