]> git.lyx.org Git - lyx.git/blob - src/frontends/WorkArea.h
a33ef86a58dc78991889d5a22db66acd2fef5625
[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/key_state.h"
18 #include "frontends/LyXKeySym.h"
19 #include "frontends/Timeout.h"
20
21 #include "support/docstring.h"
22
23 #include <boost/signals/trackable.hpp>
24
25 // FIXME: defined in X.h, spuriously pulled in by Qt 3 headers
26 #undef CursorShape
27
28 namespace lyx {
29
30 class BufferView;
31 class FuncRequest;
32 class LyXView;
33
34 namespace frontend {
35
36 class Painter;
37
38 /// types of cursor in work area
39 enum CursorShape {
40         /// normal I-beam
41         BAR_SHAPE,
42         /// L-shape for locked insets of a different language
43         L_SHAPE,
44         /// reverse L-shape for RTL text
45         REVERSED_L_SHAPE
46 };
47
48 /**
49  * The work area class represents the widget that provides the
50  * view onto a document. It is owned by the BufferView, and
51  * is responsible for handing events back to its owning BufferView.
52  * It works in concert with the BaseScreen class to update the
53  * widget view of a document.
54  */
55 class WorkArea : public boost::signals::trackable {
56 public:
57         WorkArea(LyXView & lyx_view);
58
59         virtual ~WorkArea() {}
60
61         void setBufferView(BufferView * buffer_view);
62
63         ///
64         BufferView & bufferView();
65         ///
66         BufferView const & bufferView() const;
67
68         /// return the width of the work area in pixels
69         virtual int width() const = 0;
70
71         /// return the height of the work area in pixels
72         virtual int height() const = 0;
73
74         /**
75          * Update the scrollbar.
76          * @param height the total document height in pixels
77          * @param pos the current position in the document, in pixels
78          * @param line_height the line-scroll amount, in pixels
79          */
80         virtual void setScrollbarParams(int height, int pos, int line_height) = 0;
81
82         /// redraw the screen, without using existing pixmap
83         virtual void redraw();
84         ///
85         void checkAndGreyOut();
86
87 protected:
88         /// grey out (no buffer)
89         virtual void greyOut();
90         ///
91         void processKeySym(LyXKeySymPtr key, key_modifier::state state);
92         /// cause the display of the given area of the work area
93         virtual void expose(int x, int y, int w, int h) = 0;
94         ///
95         void dispatch(FuncRequest const & cmd0);
96         ///
97         void resizeBufferView();
98         ///
99         void scrollBufferView(int position);
100         /// hide the visible cursor, if it is visible
101         void hideCursor();
102         /// show the cursor if it is not visible
103         void showCursor();
104         /// toggle the cursor's visibility
105         void toggleCursor();
106         /// hide the cursor
107         virtual void removeCursor() = 0;
108         /// paint the cursor and store the background
109         virtual void showCursor(int x, int y, int h, CursorShape shape) = 0;
110         ///
111         void updateScrollbar();
112
113         ///
114         BufferView * buffer_view_;
115
116         ///
117         LyXView & lyx_view_;
118         ///
119         bool greyed_out_;
120
121 private:
122         ///
123         void displayMessage(docstring const &);
124         /// buffer messages signal connection
125         boost::signals::connection message_connection_;
126
127         /// is the cursor currently displayed
128         bool cursor_visible_;
129
130         ///
131         Timeout cursor_timeout_;
132 };
133
134 } // namespace frontend
135 } // namespace lyx
136
137 #endif // BASE_WORKAREA_H