]> git.lyx.org Git - lyx.git/blob - src/frontends/WorkArea.h
e9ccfe803ea49a53fcf2f686ccfbf2b54eea4188
[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
19 #include "support/Timeout.h"
20 #include "support/docstring.h"
21
22 #include <boost/signals/trackable.hpp>
23
24 #undef CursorShape
25
26 namespace lyx {
27
28 class Buffer;
29 class BufferView;
30 class FuncRequest;
31 class KeySymbol;
32
33 namespace frontend {
34
35 class LyXView;
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         ///
58         WorkArea(Buffer & buffer, LyXView & lv);
59
60         virtual ~WorkArea();
61
62         ///
63         void setLyXView(LyXView & lv) { lyx_view_ = &lv; }
64
65         ///
66         BufferView & bufferView();
67         ///
68         BufferView const & bufferView() const;
69
70         /// \return true if has the keyboard input focus.
71         virtual bool hasFocus() const = 0;
72
73         /// \return true if has this WorkArea is visible.
74         virtual bool isVisible() const = 0;
75
76         /// return the width of the work area in pixels
77         virtual int width() const = 0;
78
79         /// return the height of the work area in pixels
80         virtual int height() const = 0;
81
82         /**
83          * Update the scrollbar.
84          * @param height the total document height in pixels
85          * @param pos the current position in the document, in pixels
86          * @param line_height the line-scroll amount, in pixels
87          */
88         virtual void setScrollbarParams(int height, int pos, int line_height) = 0;
89
90         ///
91         virtual void scheduleRedraw() = 0;
92
93         /// redraw the screen, without using existing pixmap
94         virtual void redraw();
95         ///
96         void stopBlinkingCursor();
97         void startBlinkingCursor();
98
99         /// Process Key pressed event.
100         /// This needs to be public because it is accessed externally by GuiView.
101         void processKeySym(KeySymbol const & key, key_modifier::state state);
102
103 protected:
104         /// cause the display of the given area of the work area
105         virtual void expose(int x, int y, int w, int h) = 0;
106         ///
107         void dispatch(FuncRequest const & cmd0,
108                 key_modifier::state = key_modifier::none);
109
110         /// close this work area.
111         /// Slot for Buffer::closing boost signal.
112         void close();
113         ///
114         void resizeBufferView();
115         /// hide the visible cursor, if it is visible
116         void hideCursor();
117         /// show the cursor if it is not visible
118         void showCursor();
119         /// toggle the cursor's visibility
120         void toggleCursor();
121         /// hide the cursor
122         virtual void removeCursor() = 0;
123         /// paint the cursor and store the background
124         virtual void showCursor(int x, int y, int h, CursorShape shape) = 0;
125         ///
126         void updateScrollbar();
127
128         ///
129         BufferView * buffer_view_;
130         ///
131         LyXView * lyx_view_;
132
133 private:
134         /// is the cursor currently displayed
135         bool cursor_visible_;
136
137         ///
138         Timeout cursor_timeout_;
139
140         /// buffer changed signal connection
141         boost::signals::connection bufferChangedConnection_;
142         /// buffer closing signal connection
143         boost::signals::connection bufferClosingConnection_;
144 };
145
146 } // namespace frontend
147 } // namespace lyx
148
149 #endif // BASE_WORKAREA_H