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