]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiWorkArea_Private.h
Remember correctly pixel ratio used for painting
[lyx.git] / src / frontends / qt4 / 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 class Buffer;
26
27 namespace frontend {
28
29 class GuiCompleter;
30 class GuiPainter;
31 class GuiView;
32 class GuiWorkArea;
33
34 /// for emulating triple click
35 class DoubleClick {
36 public:
37         ///
38         DoubleClick() : state(Qt::NoButton), active(false) {}
39         ///
40         DoubleClick(QMouseEvent * e) : state(e->button()), active(true) {}
41         ///
42         bool operator==(QMouseEvent const & e) { return state == e.button(); }
43         ///
44 public:
45         ///
46         Qt::MouseButton state;
47         ///
48         bool active;
49 };
50
51 /** Qt only emits mouse events when the mouse is being moved, but
52  *  we want to generate 'pseudo' mouse events when the mouse button is
53  *  pressed and the mouse cursor is below the bottom, or above the top
54  *  of the work area. In this way, we'll be able to continue scrolling
55  *  (and selecting) the text.
56  *
57  *  This class stores all the parameters needed to make this happen.
58  */
59 class SyntheticMouseEvent
60 {
61 public:
62         SyntheticMouseEvent();
63
64         FuncRequest cmd;
65         Timeout timeout;
66         bool restart_timeout;
67 };
68
69
70 /**
71  * Implementation of the work area (buffer view GUI)
72 */
73 class CaretWidget;
74
75 struct GuiWorkArea::Private
76 {
77         ///
78         Private(GuiWorkArea *);
79
80         ///
81         ~Private();
82
83         ///
84         void resizeBufferView();
85
86         ///
87         void dispatch(FuncRequest const & cmd0);
88         /// hide the visible caret, if it is visible
89         void hideCaret();
90         /// show the caret if it is not visible
91         void showCaret();
92         /// Set the range and value of the scrollbar and connect to its valueChanged
93         /// signal.
94         void updateScrollbar();
95         /// Change the cursor when the mouse hovers over a clickable inset
96         void updateCursorShape();
97
98         void paintPreeditText(GuiPainter & pain);
99
100         ///
101         GuiWorkArea * p;
102         ///
103         BufferView * buffer_view_;
104         ///
105         GuiView * lyx_view_;
106
107         ///
108         CaretWidget * caret_;
109         /// is the caret currently displayed
110         bool caret_visible_;
111         ///
112         QTimer caret_timeout_;
113
114         ///
115         SyntheticMouseEvent synthetic_mouse_event_;
116         ///
117         DoubleClick dc_event_;
118
119         ///
120         bool need_resize_;
121
122         /// the current preedit text of the input method
123         docstring preedit_string_;
124         /// Number of lines used by preedit text
125         int preedit_lines_;
126         /// the attributes of the preedit text
127         QList<QInputMethodEvent::Attribute> preedit_attr_;
128
129         /// Ratio between physical pixels and device-independent pixels
130         /// We save the last used value to detect changes of the
131         /// current pixel_ratio of the viewport.
132         double last_pixel_ratio_;
133         ///
134         GuiCompleter * completer_;
135
136         /// Special mode in which Esc and Enter (with or without Shift)
137         /// are ignored
138         bool dialog_mode_;
139         /// store the name of the context menu when the mouse is
140         /// pressed. This is used to get the correct context menu
141         /// when the menu is actually shown (after releasing on Windows)
142         /// and after the DEPM has done its job.
143         std::string context_menu_name_;
144
145         /// stuff related to window title
146         ///
147         support::FileName file_name_;
148         ///
149         bool shell_escape_;
150         ///
151         bool read_only_;
152         ///
153         docstring vc_status_;
154         ///
155         bool clean_;
156         ///
157         bool externally_modified_;
158
159 }; // GuiWorkArea
160
161 } // namespace frontend
162 } // namespace lyx
163
164 #endif // WORKAREA_H