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.
|
|
|
|
*/
|
|
|
|
|
2007-11-08 21:52:09 +00:00
|
|
|
#ifndef APPLICATION_H
|
|
|
|
#define APPLICATION_H
|
2006-09-22 17:50:33 +00:00
|
|
|
|
2007-10-25 12:41:02 +00:00
|
|
|
#include "ColorCode.h"
|
|
|
|
|
2007-11-08 21:52:09 +00:00
|
|
|
#include "support/strfwd.h"
|
2006-09-22 17:50:33 +00:00
|
|
|
|
2007-11-08 21:52:09 +00:00
|
|
|
#include <boost/function.hpp>
|
2006-09-22 17:50:33 +00:00
|
|
|
|
2007-11-17 20:47:50 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
namespace lyx {
|
|
|
|
|
2006-09-22 17:50:33 +00:00
|
|
|
class BufferView;
|
2007-11-17 20:47:50 +00:00
|
|
|
class Buffer;
|
2007-11-24 07:58:12 +00:00
|
|
|
class FuncRequest;
|
|
|
|
class FuncStatus;
|
2007-11-17 20:47:50 +00:00
|
|
|
class Inset;
|
2007-12-25 22:27:32 +00:00
|
|
|
class MenuBackend;
|
2007-11-24 07:58:12 +00:00
|
|
|
struct RGBColor;
|
2006-10-12 14:10:13 +00:00
|
|
|
|
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;
|
2007-08-14 09:54:59 +00:00
|
|
|
class LyXView;
|
2006-09-22 17:50:33 +00:00
|
|
|
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.
|
|
|
|
|
2007-08-21 07:33:46 +00:00
|
|
|
Model/View/Controller separation at frontend level in LyX-qt4:
|
|
|
|
|
|
|
|
BufferList (N Buffers)
|
|
|
|
|
|
|
|
|
Buffer-a
|
|
|
|
Buffer-b
|
|
|
|
Buffer-c
|
|
|
|
Buffer-d
|
|
|
|
|
|
|
|
Application (this is the frontend really, should probably be renamed).
|
|
|
|
|
|
|
|
|
LyXView-1 (M1 WorkAreas, M1 <= N)
|
|
|
|
| |
|
|
|
|
| <tab-widget>
|
|
|
|
| | (many)
|
|
|
|
| WorkArea-1
|
|
|
|
| |
|
|
|
|
| BufferView <-----------> Buffer-c
|
|
|
|
| |
|
|
|
|
| Cursor
|
|
|
|
|
|
|
|
|
LyXView-2 (M2 WorkAreas, M2 <= N, M2 independent of M1)
|
|
|
|
|
|
|
|
|
...
|
2006-11-21 10:37:52 +00:00
|
|
|
|
2007-05-28 22:27:45 +00:00
|
|
|
|
2006-11-21 10:37:52 +00:00
|
|
|
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
|
2007-08-21 07:33:46 +00:00
|
|
|
file. A Buffer may or may not be represented on screen; typically, a
|
|
|
|
child document does not have an associated BufferView unless the user
|
|
|
|
choose to visualize it.
|
2006-11-21 10:37:52 +00:00
|
|
|
|
2007-05-28 22:27:45 +00:00
|
|
|
|
2007-08-21 07:33:46 +00:00
|
|
|
2) The Controller: \c BufferView / \c Painter \c Cursor
|
2006-11-21 10:37:52 +00:00
|
|
|
|
2007-08-21 07:33:46 +00:00
|
|
|
The BufferView is a tool used by the view (\sa WorkArea) 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. There can be only one Buffer displayed in
|
|
|
|
a BufferView and it is set on construction. Ideally, a BufferView
|
|
|
|
should not be able to change the contents of its associated Buffer.
|
|
|
|
A BufferView is instanciated and destroyed by a \c WorkArea; it is
|
|
|
|
automatically destroyed by the parent WorkArea when its Buffer is
|
|
|
|
closed.
|
2006-11-21 10:37:52 +00:00
|
|
|
|
2007-08-21 07:33:46 +00:00
|
|
|
\todo Move all Buffer changing LFUN to LyXFunc or Cursor.
|
|
|
|
\todo BufferView::buffer() should only offer const access.
|
2006-11-21 10:37:52 +00:00
|
|
|
|
|
|
|
The \c Painter is just a virtual interface to formalize each kind of
|
|
|
|
drawing routines (text, line, rectangle, etc).
|
2007-05-28 22:27:45 +00:00
|
|
|
|
2006-11-21 10:37:52 +00:00
|
|
|
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.
|
|
|
|
|
2007-05-28 22:27:45 +00:00
|
|
|
|
2006-11-21 10:37:52 +00:00
|
|
|
3) The View: \c WorkArea (and it's qt4 specialisation GuiWorkArea)
|
|
|
|
|
|
|
|
This contains the real screen area where the drawing is done by the
|
2007-08-21 07:33:46 +00:00
|
|
|
Painter. One WorkArea holds one unique \c BufferView. While it could
|
|
|
|
be possible that multiple WorkArea share one BufferView, this is not
|
|
|
|
something desirable because a BufferView is dependent of the WorkArea
|
|
|
|
size.
|
2006-11-21 10:37:52 +00:00
|
|
|
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.
|
|
|
|
|
2007-05-28 22:27:45 +00:00
|
|
|
|
2006-11-21 10:37:52 +00:00
|
|
|
4) The Window: \c LyXView (and its qt4 specialisation \c GuiView)
|
2007-05-28 22:27:45 +00:00
|
|
|
|
2007-08-21 07:33:46 +00:00
|
|
|
This is a full window containing a menubar, toolbars and a central
|
|
|
|
widget. A LyXView is in charge of creating and closing a View for a
|
|
|
|
given Buffer.
|
|
|
|
In the qt4 specialisation, \c GuiView, the central widget is a tab
|
|
|
|
widget. Each tab is reverved to the visualisation of one Buffer and
|
|
|
|
contains one WorkArea. In the qt4 frontend, one LyXView thus contains
|
|
|
|
multiple WorkAreas but this number can limited to one for another
|
|
|
|
frontend. The idea is that the kernel should not know how a Buffer
|
|
|
|
is displayed on screen; it's the frontend business.
|
|
|
|
In the future, we may also have multiple Workareas showing
|
|
|
|
simultaneously in the same GuiView (ex: with split window).
|
|
|
|
|
|
|
|
\todo Implement split-window
|
|
|
|
|
|
|
|
In any case, there would be only one WorkArea that gets the focus
|
2006-11-21 10:37:52 +00:00
|
|
|
at a time.
|
|
|
|
|
2007-08-21 07:33:46 +00:00
|
|
|
With our current implementation using a QTabWidget, each Tab own its
|
|
|
|
own \c WorkArea. Clicking on a tab switch a WorkArea and not really
|
|
|
|
a Buffer. LFUN_BUFFER_SWITCH will tell the frontend to search the
|
|
|
|
WorkArea associated to this Buffer. The WorkArea is automatically
|
|
|
|
created if not already present.
|
|
|
|
|
|
|
|
A WorkArea is connected to the Buffer::closing signal and is thus
|
|
|
|
automatically destroyed when its Buffer is closed.
|
2006-11-21 10:37:52 +00:00
|
|
|
|
2006-09-22 17:50:33 +00:00
|
|
|
*/
|
|
|
|
class Application
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
///
|
2007-11-18 20:36:52 +00:00
|
|
|
Application() {}
|
2006-09-22 17:50:33 +00:00
|
|
|
///
|
|
|
|
virtual ~Application() {}
|
|
|
|
|
2007-11-24 07:58:12 +00:00
|
|
|
///
|
|
|
|
virtual FuncStatus getStatus(FuncRequest const & cmd) = 0;
|
|
|
|
/// dispatch command.
|
2007-11-26 14:36:50 +00:00
|
|
|
/// \return true if the \c FuncRequest has been dispatched.
|
|
|
|
virtual bool dispatch(FuncRequest const & cmd) = 0;
|
2007-11-24 07:58:12 +00:00
|
|
|
|
2007-11-21 15:12:47 +00:00
|
|
|
///
|
|
|
|
virtual void resetGui() = 0;
|
|
|
|
|
2007-11-17 20:47:50 +00:00
|
|
|
///
|
|
|
|
virtual void hideDialogs(std::string const & name, Inset * inset) const = 0;
|
|
|
|
///
|
|
|
|
virtual Buffer const * updateInset(Inset const * inset) const = 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.
|
2007-09-15 17:47:35 +00:00
|
|
|
virtual int 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
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2007-10-25 12:41:02 +00:00
|
|
|
virtual bool getRgbColor(ColorCode col, RGBColor & rgbcol) = 0;
|
2006-10-12 14:10:13 +00:00
|
|
|
|
2007-10-25 12:41:02 +00:00
|
|
|
/** Eg, passing Color_black returns "000000",
|
|
|
|
* passing Color_white returns "ffffff".
|
2006-10-12 14:10:13 +00:00
|
|
|
*/
|
2007-10-25 12:41:02 +00:00
|
|
|
virtual std::string const hexName(ColorCode col) = 0;
|
2006-10-12 14:10:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* update an altered GUI color
|
|
|
|
*/
|
2007-10-25 12:41:02 +00:00
|
|
|
virtual void updateColor(ColorCode col) = 0;
|
2006-10-12 14:10:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* add a callback for socket read notification
|
|
|
|
* @param fd socket descriptor (file/socket/etc)
|
|
|
|
*/
|
2007-09-15 20:31:50 +00:00
|
|
|
typedef boost::function<void()> SocketCallback;
|
2007-09-15 23:04:28 +00:00
|
|
|
virtual void registerSocketCallback(int fd, SocketCallback func) = 0;
|
2006-10-12 14:10:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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;
|
2007-12-25 22:27:32 +00:00
|
|
|
|
|
|
|
///
|
|
|
|
virtual MenuBackend const & menuBackend() const = 0;
|
|
|
|
virtual MenuBackend & menuBackend() = 0;
|
2007-11-13 23:00:36 +00:00
|
|
|
};
|
2006-09-22 17:50:33 +00:00
|
|
|
|
|
|
|
} // 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-10-21 00:16:43 +00:00
|
|
|
} // namespace lyx
|
2006-09-22 17:50:33 +00:00
|
|
|
|
|
|
|
|
2007-11-08 21:52:09 +00:00
|
|
|
#endif // APPLICATION_H
|