]> git.lyx.org Git - lyx.git/blob - src/frontends/qt/GuiWorkArea_Private.h
Rewrite (again!) the code for caret drawing
[lyx.git] / src / frontends / qt / GuiWorkArea_Private.h
1 // -*- C++ -*-
2 /**
3  * \file GuiWorkArea_Private.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Abdelrazak Younes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef WORKAREA_PRIVATE_H
13 #define WORKAREA_PRIVATE_H
14
15 #include "FuncRequest.h"
16
17 #include "support/FileName.h"
18 #include "support/Timeout.h"
19
20 #include <QMouseEvent>
21 #include <QTimer>
22
23 namespace lyx {
24
25 namespace frontend {
26
27 class GuiCompleter;
28 class GuiPainter;
29 class GuiView;
30 class GuiWorkArea;
31
32 /// for emulating triple click
33 class DoubleClick {
34 public:
35         ///
36         DoubleClick() : state(Qt::NoButton), active(false) {}
37         ///
38         DoubleClick(QMouseEvent * e) : state(e->button()), active(true) {}
39         ///
40         bool operator==(QMouseEvent const & e) { return state == e.button(); }
41         ///
42 public:
43         ///
44         Qt::MouseButton state;
45         ///
46         bool active;
47 };
48
49 /** Qt only emits mouse events when the mouse is being moved, but
50  *  we want to generate 'pseudo' mouse events when the mouse button is
51  *  pressed and the mouse cursor is below the bottom, or above the top
52  *  of the work area. In this way, we'll be able to continue scrolling
53  *  (and selecting) the text.
54  *
55  *  This class stores all the parameters needed to make this happen.
56  */
57 class SyntheticMouseEvent
58 {
59 public:
60         SyntheticMouseEvent();
61
62         FuncRequest cmd;
63         Timeout timeout;
64         bool restart_timeout;
65 };
66
67
68 /**
69  * Implementation of the work area (buffer view GUI)
70 */
71
72 struct GuiWorkArea::Private
73 {
74         ///
75         Private(GuiWorkArea *);
76
77         ///
78         ~Private();
79
80         ///
81         void resizeBufferView();
82
83         ///
84         void dispatch(FuncRequest const & cmd0);
85         /// Make caret visible and signal that its geometry needs to be updated
86         void resetCaret();
87         /// recompute the shape and position of the caret
88         void updateCaretGeometry();
89         /// show the caret if it is not visible
90         void showCaret();
91         /// hide the caret if it is visible
92         void hideCaret();
93         /* Draw the caret. Parameter \c horiz_offset is not 0 when there
94          * has been horizontal scrolling in current row
95          */
96         void drawCaret(QPainter & painter, int horiz_offset) const;
97         /// Set the range and value of the scrollbar and connect to its valueChanged
98         /// signal.
99         void updateScrollbar();
100         /// Change the cursor when the mouse hovers over a clickable inset
101         void updateCursorShape();
102
103         void paintPreeditText(GuiPainter & pain);
104
105         /// Prepare screen for next painting
106         void resetScreen();
107         /// Where painting takes place
108         QPaintDevice * screenDevice();
109         /// Put backingstore to screen if necessary
110         void updateScreen(QRectF const & rc);
111
112         ///
113         GuiWorkArea * p;
114         ///
115         BufferView * buffer_view_;
116         ///
117         GuiView * lyx_view_;
118
119         /// Do we need an intermediate image when painting (for now macOS and Wayland)
120         bool use_backingstore_;
121         ///
122         QImage screen_;
123
124         /// is the caret currently displayed
125         bool caret_visible_;
126         ///
127         QTimer caret_timeout_;
128
129         ///
130         SyntheticMouseEvent synthetic_mouse_event_;
131         ///
132         DoubleClick dc_event_;
133
134         ///
135         bool need_resize_;
136
137         /// the current preedit text of the input method
138         docstring preedit_string_;
139         /// Number of lines used by preedit text
140         int preedit_lines_;
141         /// the attributes of the preedit text
142         QList<QInputMethodEvent::Attribute> preedit_attr_;
143
144         /// Ratio between physical pixels and device-independent pixels
145         /// We save the last used value to detect changes of the
146         /// current pixel_ratio of the viewport.
147         double last_pixel_ratio_;
148         ///
149         GuiCompleter * completer_;
150
151         /// Special mode in which Esc and Enter (with or without Shift)
152         /// are ignored
153         bool dialog_mode_;
154         /// store the name of the context menu when the mouse is
155         /// pressed. This is used to get the correct context menu
156         /// when the menu is actually shown (after releasing on Windows)
157         /// and after the DEPM has done its job.
158         std::string context_menu_name_;
159
160         /// stuff related to window title
161         ///
162         support::FileName file_name_;
163         ///
164         bool shell_escape_;
165         ///
166         bool read_only_;
167         ///
168         docstring vc_status_;
169         ///
170         bool clean_;
171         ///
172         bool externally_modified_;
173         ///
174         bool needs_caret_geometry_update_;
175
176 }; // GuiWorkArea
177
178 } // namespace frontend
179 } // namespace lyx
180
181 #endif // WORKAREA_H