]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiWorkArea.h
Handle full screen mode for all work areas.
[lyx.git] / src / frontends / qt4 / GuiWorkArea.h
1 // -*- C++ -*-
2 /**
3  * \file GuiWorkArea.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  * \author Abdelrazak Younes
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef WORKAREA_H
14 #define WORKAREA_H
15
16 #include "frontends/WorkArea.h"
17
18 #include "FuncRequest.h"
19 #include "support/Timeout.h"
20
21 #include <QAbstractScrollArea>
22 #include <QMouseEvent>
23 #include <QPixmap>
24 #include <QResizeEvent>
25 #include <QTabWidget>
26 #include <QTimer>
27
28 class QContextMenuEvent;
29 class QDragEnterEvent;
30 class QDropEvent;
31 class QKeyEvent;
32 class QWheelEvent;
33 class QPaintEvent;
34 class QWidget;
35
36 #ifdef CursorShape
37 #undef CursorShape
38 #endif
39
40 namespace lyx {
41
42 class Buffer;
43
44 namespace frontend {
45
46 class GuiView;
47
48 /// types of cursor in work area
49 enum CursorShape {
50         /// normal I-beam
51         BAR_SHAPE,
52         /// L-shape for locked insets of a different language
53         L_SHAPE,
54         /// reverse L-shape for RTL text
55         REVERSED_L_SHAPE
56 };
57
58 /// for emulating triple click
59 class DoubleClick {
60 public:
61         ///
62         DoubleClick() : state(Qt::NoButton), active(false) {}
63         ///
64         DoubleClick(QMouseEvent * e) : state(e->button()), active(true) {}
65         ///
66         bool operator==(QMouseEvent const & e) { return state == e.button(); }
67         ///
68 public:
69         ///
70         Qt::MouseButton state;
71         ///
72         bool active;
73 };
74
75 /** Qt only emits mouse events when the mouse is being moved, but
76  *  we want to generate 'pseudo' mouse events when the mouse button is
77  *  pressed and the mouse cursor is below the bottom, or above the top
78  *  of the work area. In this way, we'll be able to continue scrolling
79  *  (and selecting) the text.
80  *
81  *  This class stores all the parameters needed to make this happen.
82  */
83 class SyntheticMouseEvent
84 {
85 public:
86         SyntheticMouseEvent();
87
88         FuncRequest cmd;
89         Timeout timeout;
90         bool restart_timeout;
91         int x_old;
92         int y_old;
93         double scrollbar_value_old;
94 };
95
96
97 /**
98  * Implementation of the work area (buffer view GUI)
99 */
100 class CursorWidget;
101
102 class GuiWorkArea : public QAbstractScrollArea, public WorkArea
103 {
104         Q_OBJECT
105
106 public:
107         ///
108         GuiWorkArea(Buffer & buffer, GuiView & lv);
109         ///
110         ~GuiWorkArea();
111
112         ///
113         void setFullScreen(bool full_screen);
114         ///
115         void scheduleRedraw() { schedule_redraw_ = true; }
116         ///
117         BufferView & bufferView();
118         ///
119         BufferView const & bufferView() const;
120         ///
121         void redraw();
122         ///
123         void stopBlinkingCursor();
124         ///
125         void startBlinkingCursor();
126         /// Process Key pressed event.
127         /// This needs to be public because it is accessed externally by GuiView.
128         void processKeySym(KeySymbol const & key, KeyModifier mod);
129         ///
130         void resizeBufferView();
131
132 Q_SIGNALS:
133         ///
134         void titleChanged(GuiWorkArea *);
135
136 private Q_SLOTS:
137         /// Scroll the BufferView.
138         /**
139           * This is a slot for the valueChanged() signal of the vertical scrollbar.
140           * \p value value of the scrollbar.
141         */
142         void scrollTo(int value);
143         /// timer to limit triple clicks
144         void doubleClickTimeout();
145         /// toggle the cursor's visibility
146         void toggleCursor();
147         /// close this work area.
148         /// Slot for Buffer::closing signal.
149         void close();
150
151 private:
152         /// update the passed area.
153         void update(int x, int y, int w, int h);
154         ///
155         void updateScreen();
156
157         /// paint the cursor and store the background
158         virtual void showCursor(int x, int y, int h, CursorShape shape);
159
160         /// hide the cursor
161         virtual void removeCursor();
162
163         /// This function is called when the buffer readonly status change.
164         void setReadOnly(bool);
165
166         /// Update window titles of all users.
167         void updateWindowTitle();
168         ///
169         bool event(QEvent *);
170         ///
171         void contextMenuEvent(QContextMenuEvent *);
172         ///
173         void focusInEvent(QFocusEvent *);
174         ///
175         void focusOutEvent(QFocusEvent *);
176         /// repaint part of the widget
177         void paintEvent(QPaintEvent * ev);
178         /// widget has been resized
179         void resizeEvent(QResizeEvent * ev);
180         /// mouse button press
181         void mousePressEvent(QMouseEvent * ev);
182         /// mouse button release
183         void mouseReleaseEvent(QMouseEvent * ev);
184         /// mouse double click of button
185         void mouseDoubleClickEvent(QMouseEvent * ev);
186         /// mouse motion
187         void mouseMoveEvent(QMouseEvent * ev);
188         /// wheel event
189         void wheelEvent(QWheelEvent * ev);
190         /// key press
191         void keyPressEvent(QKeyEvent * ev);
192         /// IM events
193         void inputMethodEvent(QInputMethodEvent * ev);
194         /// IM query
195         QVariant inputMethodQuery(Qt::InputMethodQuery query) const;
196
197         /// The slot connected to SyntheticMouseEvent::timeout.
198         void generateSyntheticMouseEvent();
199         ///
200         void dispatch(FuncRequest const & cmd0, KeyModifier = NoModifier);
201         /// hide the visible cursor, if it is visible
202         void hideCursor();
203         /// show the cursor if it is not visible
204         void showCursor();
205         ///
206         void updateScrollbar();
207
208         ///
209         BufferView * buffer_view_;
210         ///
211         GuiView * lyx_view_;
212         /// is the cursor currently displayed
213         bool cursor_visible_;
214
215         ///
216         QTimer cursor_timeout_;
217         ///
218         SyntheticMouseEvent synthetic_mouse_event_;
219         ///
220         DoubleClick dc_event_;
221
222         ///
223         CursorWidget * cursor_;
224         ///
225         QPixmap screen_;
226         ///
227         bool need_resize_;
228         ///
229         bool schedule_redraw_;
230         ///
231         int preedit_lines_;
232 }; // GuiWorkArea
233
234
235 /// A tabbed set of GuiWorkAreas.
236 class TabWorkArea : public QTabWidget
237 {
238         Q_OBJECT
239 public:
240         TabWorkArea(QWidget * parent = 0);
241
242         ///
243         void setFullScreen(bool full_screen);
244         void showBar(bool show);
245         void closeAll();
246         bool setCurrentWorkArea(GuiWorkArea *);
247         GuiWorkArea * addWorkArea(Buffer & buffer, GuiView & view);
248         bool removeWorkArea(GuiWorkArea *);
249         GuiWorkArea * currentWorkArea();
250         GuiWorkArea * workArea(Buffer & buffer);
251
252 Q_SIGNALS:
253         ///
254         void currentWorkAreaChanged(GuiWorkArea *);
255
256 public Q_SLOTS:
257         ///
258         void on_currentTabChanged(int index);
259         ///
260         void closeCurrentTab();
261         ///
262         void updateTabText(GuiWorkArea *);
263 }; // TabWorkArea
264
265 } // namespace frontend
266 } // namespace lyx
267
268 #endif // WORKAREA_H