]> git.lyx.org Git - lyx.git/blob - src/frontends/WorkArea.h
c5aadfef6fb5b944a0e77eb2ce9de78e198cb43f
[lyx.git] / src / frontends / WorkArea.h
1 // -*- C++ -*-
2 /**
3  * \file WorkArea.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author unknown
8  * \author John Levon
9  * \author Abdelrazak Younes
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #ifndef BASE_WORKAREA_H
15 #define BASE_WORKAREA_H
16
17 #include "frontends/KeyModifier.h"
18 #include "frontends/LyXView.h"
19
20 namespace lyx {
21
22 class BufferView;
23 class KeySymbol;
24
25 namespace frontend {
26
27 /**
28  * The work area class represents the widget that provides the
29  * view onto a document. It is owned by the BufferView, and
30  * is responsible for handing events back to its owning BufferView.
31  * It works in concert with the BaseScreen class to update the
32  * widget view of a document.
33  */
34 class WorkArea
35 {
36 public:
37         ///
38         virtual ~WorkArea() {}
39
40         /// redraw the screen, without using existing pixmap
41         virtual void redraw(bool update_metrics) = 0;
42
43         /// close this work area.
44         /// Slot for Buffer::closing signal.
45         virtual void close() = 0;
46
47         /// Update window titles of all users.
48         virtual void updateWindowTitle() = 0;
49 };
50
51 } // namespace frontend
52 } // namespace lyx
53
54 #endif // BASE_WORKAREA_H