Absolute File Name: | /home/qt/qt5_coco/qt5/qtbase/src/gui/kernel/qevent.cpp |
Source code | Switch to Preprocessed file |
Line | Source | Count | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | /**************************************************************************** | - | ||||||||||||
2 | ** | - | ||||||||||||
3 | ** Copyright (C) 2016 The Qt Company Ltd. | - | ||||||||||||
4 | ** Contact: https://www.qt.io/licensing/ | - | ||||||||||||
5 | ** | - | ||||||||||||
6 | ** This file is part of the QtGui module of the Qt Toolkit. | - | ||||||||||||
7 | ** | - | ||||||||||||
8 | ** $QT_BEGIN_LICENSE:LGPL$ | - | ||||||||||||
9 | ** Commercial License Usage | - | ||||||||||||
10 | ** Licensees holding valid commercial Qt licenses may use this file in | - | ||||||||||||
11 | ** accordance with the commercial license agreement provided with the | - | ||||||||||||
12 | ** Software or, alternatively, in accordance with the terms contained in | - | ||||||||||||
13 | ** a written agreement between you and The Qt Company. For licensing terms | - | ||||||||||||
14 | ** and conditions see https://www.qt.io/terms-conditions. For further | - | ||||||||||||
15 | ** information use the contact form at https://www.qt.io/contact-us. | - | ||||||||||||
16 | ** | - | ||||||||||||
17 | ** GNU Lesser General Public License Usage | - | ||||||||||||
18 | ** Alternatively, this file may be used under the terms of the GNU Lesser | - | ||||||||||||
19 | ** General Public License version 3 as published by the Free Software | - | ||||||||||||
20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the | - | ||||||||||||
21 | ** packaging of this file. Please review the following information to | - | ||||||||||||
22 | ** ensure the GNU Lesser General Public License version 3 requirements | - | ||||||||||||
23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. | - | ||||||||||||
24 | ** | - | ||||||||||||
25 | ** GNU General Public License Usage | - | ||||||||||||
26 | ** Alternatively, this file may be used under the terms of the GNU | - | ||||||||||||
27 | ** General Public License version 2.0 or (at your option) the GNU General | - | ||||||||||||
28 | ** Public license version 3 or any later version approved by the KDE Free | - | ||||||||||||
29 | ** Qt Foundation. The licenses are as published by the Free Software | - | ||||||||||||
30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 | - | ||||||||||||
31 | ** included in the packaging of this file. Please review the following | - | ||||||||||||
32 | ** information to ensure the GNU General Public License requirements will | - | ||||||||||||
33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and | - | ||||||||||||
34 | ** https://www.gnu.org/licenses/gpl-3.0.html. | - | ||||||||||||
35 | ** | - | ||||||||||||
36 | ** $QT_END_LICENSE$ | - | ||||||||||||
37 | ** | - | ||||||||||||
38 | ****************************************************************************/ | - | ||||||||||||
39 | - | |||||||||||||
40 | #include "qevent.h" | - | ||||||||||||
41 | #include "qcursor.h" | - | ||||||||||||
42 | #include "private/qguiapplication_p.h" | - | ||||||||||||
43 | #include "qpa/qplatformintegration.h" | - | ||||||||||||
44 | #include "qpa/qplatformdrag.h" | - | ||||||||||||
45 | #include "private/qevent_p.h" | - | ||||||||||||
46 | #include "qfile.h" | - | ||||||||||||
47 | #include "qmetaobject.h" | - | ||||||||||||
48 | #include "qmimedata.h" | - | ||||||||||||
49 | #include "private/qdnd_p.h" | - | ||||||||||||
50 | #include "qevent_p.h" | - | ||||||||||||
51 | #include "qmath.h" | - | ||||||||||||
52 | - | |||||||||||||
53 | #include <private/qdebug_p.h> | - | ||||||||||||
54 | - | |||||||||||||
55 | QT_BEGIN_NAMESPACE | - | ||||||||||||
56 | - | |||||||||||||
57 | /*! | - | ||||||||||||
58 | \class QEnterEvent | - | ||||||||||||
59 | \ingroup events | - | ||||||||||||
60 | \inmodule QtGui | - | ||||||||||||
61 | - | |||||||||||||
62 | \brief The QEnterEvent class contains parameters that describe an enter event. | - | ||||||||||||
63 | - | |||||||||||||
64 | Enter events occur when the mouse cursor enters a window or a widget. | - | ||||||||||||
65 | - | |||||||||||||
66 | \since 5.0 | - | ||||||||||||
67 | */ | - | ||||||||||||
68 | - | |||||||||||||
69 | /*! | - | ||||||||||||
70 | Constructs an enter event object. | - | ||||||||||||
71 | - | |||||||||||||
72 | The points \a localPos, \a windowPos and \a screenPos specify the | - | ||||||||||||
73 | mouse cursor's position relative to the receiving widget or item, | - | ||||||||||||
74 | window, and screen, respectively. | - | ||||||||||||
75 | */ | - | ||||||||||||
76 | - | |||||||||||||
77 | QEnterEvent::QEnterEvent(const QPointF &localPos, const QPointF &windowPos, const QPointF &screenPos) | - | ||||||||||||
78 | : QEvent(QEvent::Enter) | - | ||||||||||||
79 | , l(localPos) | - | ||||||||||||
80 | , w(windowPos) | - | ||||||||||||
81 | , s(screenPos) | - | ||||||||||||
82 | { | - | ||||||||||||
83 | } never executed: end of block | 0 | ||||||||||||
84 | - | |||||||||||||
85 | /*! | - | ||||||||||||
86 | \internal | - | ||||||||||||
87 | */ | - | ||||||||||||
88 | QEnterEvent::~QEnterEvent() | - | ||||||||||||
89 | { | - | ||||||||||||
90 | } | - | ||||||||||||
91 | - | |||||||||||||
92 | /*! | - | ||||||||||||
93 | \fn QPoint QEnterEvent::globalPos() const | - | ||||||||||||
94 | - | |||||||||||||
95 | Returns the global position of the widget \e{at the time of the event}. | - | ||||||||||||
96 | */ | - | ||||||||||||
97 | /*! | - | ||||||||||||
98 | \fn int QEnterEvent::globalX() const | - | ||||||||||||
99 | - | |||||||||||||
100 | Returns the global position on the X-axis of the mouse cursor relative to the the widget. | - | ||||||||||||
101 | */ | - | ||||||||||||
102 | /*! | - | ||||||||||||
103 | \fn int QEnterEvent::globalY() const | - | ||||||||||||
104 | - | |||||||||||||
105 | Returns the global position on the Y-axis of the mouse cursor relative to the the widget. | - | ||||||||||||
106 | */ | - | ||||||||||||
107 | /*! | - | ||||||||||||
108 | \fn QPoint QEnterEvent::localPos() const | - | ||||||||||||
109 | - | |||||||||||||
110 | Returns the mouse cursor's position relative to the receiving widget. | - | ||||||||||||
111 | */ | - | ||||||||||||
112 | /*! | - | ||||||||||||
113 | \fn QPoint QEnterEvent::pos() const | - | ||||||||||||
114 | - | |||||||||||||
115 | Returns the position of the mouse cursor in global screen coordinates. | - | ||||||||||||
116 | */ | - | ||||||||||||
117 | /*! | - | ||||||||||||
118 | \fn QPoint QEnterEvent::screenPos() const | - | ||||||||||||
119 | - | |||||||||||||
120 | Returns the position of the mouse cursor relative to the receiving screen. | - | ||||||||||||
121 | */ | - | ||||||||||||
122 | /*! | - | ||||||||||||
123 | \fn QPoint QEnterEvent::windowPos() const | - | ||||||||||||
124 | - | |||||||||||||
125 | Returns the position of the mouse cursor relative to the receiving window. | - | ||||||||||||
126 | */ | - | ||||||||||||
127 | /*! | - | ||||||||||||
128 | \fn int QEnterEvent::x() const | - | ||||||||||||
129 | - | |||||||||||||
130 | Returns the x position of the mouse cursor relative to the receiving widget. | - | ||||||||||||
131 | */ | - | ||||||||||||
132 | /*! | - | ||||||||||||
133 | \fn int QEnterEvent::y() const | - | ||||||||||||
134 | - | |||||||||||||
135 | Returns the y position of the mouse cursor relative to the receiving widget. | - | ||||||||||||
136 | */ | - | ||||||||||||
137 | - | |||||||||||||
138 | /*! | - | ||||||||||||
139 | \class QInputEvent | - | ||||||||||||
140 | \ingroup events | - | ||||||||||||
141 | \inmodule QtGui | - | ||||||||||||
142 | - | |||||||||||||
143 | \brief The QInputEvent class is the base class for events that | - | ||||||||||||
144 | describe user input. | - | ||||||||||||
145 | */ | - | ||||||||||||
146 | - | |||||||||||||
147 | /*! | - | ||||||||||||
148 | \internal | - | ||||||||||||
149 | */ | - | ||||||||||||
150 | QInputEvent::QInputEvent(Type type, Qt::KeyboardModifiers modifiers) | - | ||||||||||||
151 | : QEvent(type), modState(modifiers), ts(0) | - | ||||||||||||
152 | {} never executed: end of block | 0 | ||||||||||||
153 | - | |||||||||||||
154 | /*! | - | ||||||||||||
155 | \internal | - | ||||||||||||
156 | */ | - | ||||||||||||
157 | QInputEvent::~QInputEvent() | - | ||||||||||||
158 | { | - | ||||||||||||
159 | } | - | ||||||||||||
160 | - | |||||||||||||
161 | /*! | - | ||||||||||||
162 | \fn Qt::KeyboardModifiers QInputEvent::modifiers() const | - | ||||||||||||
163 | - | |||||||||||||
164 | Returns the keyboard modifier flags that existed immediately | - | ||||||||||||
165 | before the event occurred. | - | ||||||||||||
166 | - | |||||||||||||
167 | \sa QGuiApplication::keyboardModifiers() | - | ||||||||||||
168 | */ | - | ||||||||||||
169 | - | |||||||||||||
170 | /*! \fn void QInputEvent::setModifiers(Qt::KeyboardModifiers modifiers) | - | ||||||||||||
171 | - | |||||||||||||
172 | \internal | - | ||||||||||||
173 | - | |||||||||||||
174 | Sets the keyboard modifiers flags for this event. | - | ||||||||||||
175 | */ | - | ||||||||||||
176 | - | |||||||||||||
177 | /*! | - | ||||||||||||
178 | \fn ulong QInputEvent::timestamp() const | - | ||||||||||||
179 | - | |||||||||||||
180 | Returns the window system's timestamp for this event. | - | ||||||||||||
181 | It will normally be in milliseconds since some arbitrary point | - | ||||||||||||
182 | in time, such as the time when the system was started. | - | ||||||||||||
183 | */ | - | ||||||||||||
184 | - | |||||||||||||
185 | /*! \fn void QInputEvent::setTimestamp(ulong atimestamp) | - | ||||||||||||
186 | - | |||||||||||||
187 | \internal | - | ||||||||||||
188 | - | |||||||||||||
189 | Sets the timestamp for this event. | - | ||||||||||||
190 | */ | - | ||||||||||||
191 | - | |||||||||||||
192 | /*! | - | ||||||||||||
193 | \class QMouseEvent | - | ||||||||||||
194 | \ingroup events | - | ||||||||||||
195 | \inmodule QtGui | - | ||||||||||||
196 | - | |||||||||||||
197 | \brief The QMouseEvent class contains parameters that describe a mouse event. | - | ||||||||||||
198 | - | |||||||||||||
199 | Mouse events occur when a mouse button is pressed or released | - | ||||||||||||
200 | inside a widget, or when the mouse cursor is moved. | - | ||||||||||||
201 | - | |||||||||||||
202 | Mouse move events will occur only when a mouse button is pressed | - | ||||||||||||
203 | down, unless mouse tracking has been enabled with | - | ||||||||||||
204 | QWidget::setMouseTracking(). | - | ||||||||||||
205 | - | |||||||||||||
206 | Qt automatically grabs the mouse when a mouse button is pressed | - | ||||||||||||
207 | inside a widget; the widget will continue to receive mouse events | - | ||||||||||||
208 | until the last mouse button is released. | - | ||||||||||||
209 | - | |||||||||||||
210 | A mouse event contains a special accept flag that indicates | - | ||||||||||||
211 | whether the receiver wants the event. You should call ignore() if | - | ||||||||||||
212 | the mouse event is not handled by your widget. A mouse event is | - | ||||||||||||
213 | propagated up the parent widget chain until a widget accepts it | - | ||||||||||||
214 | with accept(), or an event filter consumes it. | - | ||||||||||||
215 | - | |||||||||||||
216 | \note If a mouse event is propagated to a \l{QWidget}{widget} for | - | ||||||||||||
217 | which Qt::WA_NoMousePropagation has been set, that mouse event | - | ||||||||||||
218 | will not be propagated further up the parent widget chain. | - | ||||||||||||
219 | - | |||||||||||||
220 | The state of the keyboard modifier keys can be found by calling the | - | ||||||||||||
221 | \l{QInputEvent::modifiers()}{modifiers()} function, inherited from | - | ||||||||||||
222 | QInputEvent. | - | ||||||||||||
223 | - | |||||||||||||
224 | The functions pos(), x(), and y() give the cursor position | - | ||||||||||||
225 | relative to the widget that receives the mouse event. If you | - | ||||||||||||
226 | move the widget as a result of the mouse event, use the global | - | ||||||||||||
227 | position returned by globalPos() to avoid a shaking motion. | - | ||||||||||||
228 | - | |||||||||||||
229 | The QWidget::setEnabled() function can be used to enable or | - | ||||||||||||
230 | disable mouse and keyboard events for a widget. | - | ||||||||||||
231 | - | |||||||||||||
232 | Reimplement the QWidget event handlers, QWidget::mousePressEvent(), | - | ||||||||||||
233 | QWidget::mouseReleaseEvent(), QWidget::mouseDoubleClickEvent(), | - | ||||||||||||
234 | and QWidget::mouseMoveEvent() to receive mouse events in your own | - | ||||||||||||
235 | widgets. | - | ||||||||||||
236 | - | |||||||||||||
237 | \sa QWidget::setMouseTracking(), QWidget::grabMouse(), | - | ||||||||||||
238 | QCursor::pos() | - | ||||||||||||
239 | */ | - | ||||||||||||
240 | - | |||||||||||||
241 | /*! | - | ||||||||||||
242 | Constructs a mouse event object. | - | ||||||||||||
243 | - | |||||||||||||
244 | The \a type parameter must be one of QEvent::MouseButtonPress, | - | ||||||||||||
245 | QEvent::MouseButtonRelease, QEvent::MouseButtonDblClick, | - | ||||||||||||
246 | or QEvent::MouseMove. | - | ||||||||||||
247 | - | |||||||||||||
248 | The \a localPos is the mouse cursor's position relative to the | - | ||||||||||||
249 | receiving widget or item. The window position is set to the same value | - | ||||||||||||
250 | as \a localPos. | - | ||||||||||||
251 | The \a button that caused the event is given as a value from | - | ||||||||||||
252 | the Qt::MouseButton enum. If the event \a type is | - | ||||||||||||
253 | \l MouseMove, the appropriate button for this event is Qt::NoButton. | - | ||||||||||||
254 | The mouse and keyboard states at the time of the event are specified by | - | ||||||||||||
255 | \a buttons and \a modifiers. | - | ||||||||||||
256 | - | |||||||||||||
257 | The screenPos() is initialized to QCursor::pos(), which may not | - | ||||||||||||
258 | be appropriate. Use the other constructor to specify the global | - | ||||||||||||
259 | position explicitly. | - | ||||||||||||
260 | */ | - | ||||||||||||
261 | QMouseEvent::QMouseEvent(Type type, const QPointF &localPos, Qt::MouseButton button, | - | ||||||||||||
262 | Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers) | - | ||||||||||||
263 | : QInputEvent(type, modifiers), l(localPos), w(localPos), b(button), mouseState(buttons), caps(0) | - | ||||||||||||
264 | { | - | ||||||||||||
265 | #ifndef QT_NO_CURSOR | - | ||||||||||||
266 | s = QCursor::pos(); | - | ||||||||||||
267 | #endif | - | ||||||||||||
268 | } never executed: end of block | 0 | ||||||||||||
269 | - | |||||||||||||
270 | - | |||||||||||||
271 | /*! | - | ||||||||||||
272 | Constructs a mouse event object. | - | ||||||||||||
273 | - | |||||||||||||
274 | The \a type parameter must be QEvent::MouseButtonPress, | - | ||||||||||||
275 | QEvent::MouseButtonRelease, QEvent::MouseButtonDblClick, | - | ||||||||||||
276 | or QEvent::MouseMove. | - | ||||||||||||
277 | - | |||||||||||||
278 | The \a localPos is the mouse cursor's position relative to the | - | ||||||||||||
279 | receiving widget or item. The cursor's position in screen coordinates is | - | ||||||||||||
280 | specified by \a screenPos. The window position is set to the same value | - | ||||||||||||
281 | as \a localPos. The \a button that caused the event is | - | ||||||||||||
282 | given as a value from the \l Qt::MouseButton enum. If the event \a | - | ||||||||||||
283 | type is \l MouseMove, the appropriate button for this event is | - | ||||||||||||
284 | Qt::NoButton. \a buttons is the state of all buttons at the | - | ||||||||||||
285 | time of the event, \a modifiers the state of all keyboard | - | ||||||||||||
286 | modifiers. | - | ||||||||||||
287 | - | |||||||||||||
288 | */ | - | ||||||||||||
289 | QMouseEvent::QMouseEvent(Type type, const QPointF &localPos, const QPointF &screenPos, | - | ||||||||||||
290 | Qt::MouseButton button, Qt::MouseButtons buttons, | - | ||||||||||||
291 | Qt::KeyboardModifiers modifiers) | - | ||||||||||||
292 | : QInputEvent(type, modifiers), l(localPos), w(localPos), s(screenPos), b(button), mouseState(buttons), caps(0) | - | ||||||||||||
293 | {} never executed: end of block | 0 | ||||||||||||
294 | - | |||||||||||||
295 | /*! | - | ||||||||||||
296 | Constructs a mouse event object. | - | ||||||||||||
297 | - | |||||||||||||
298 | The \a type parameter must be QEvent::MouseButtonPress, | - | ||||||||||||
299 | QEvent::MouseButtonRelease, QEvent::MouseButtonDblClick, | - | ||||||||||||
300 | or QEvent::MouseMove. | - | ||||||||||||
301 | - | |||||||||||||
302 | The points \a localPos, \a windowPos and \a screenPos specify the | - | ||||||||||||
303 | mouse cursor's position relative to the receiving widget or item, | - | ||||||||||||
304 | window, and screen, respectively. | - | ||||||||||||
305 | - | |||||||||||||
306 | The \a button that caused the event is | - | ||||||||||||
307 | given as a value from the \l Qt::MouseButton enum. If the event \a | - | ||||||||||||
308 | type is \l MouseMove, the appropriate button for this event is | - | ||||||||||||
309 | Qt::NoButton. \a buttons is the state of all buttons at the | - | ||||||||||||
310 | time of the event, \a modifiers the state of all keyboard | - | ||||||||||||
311 | modifiers. | - | ||||||||||||
312 | - | |||||||||||||
313 | */ | - | ||||||||||||
314 | QMouseEvent::QMouseEvent(Type type, const QPointF &localPos, const QPointF &windowPos, const QPointF &screenPos, | - | ||||||||||||
315 | Qt::MouseButton button, Qt::MouseButtons buttons, | - | ||||||||||||
316 | Qt::KeyboardModifiers modifiers) | - | ||||||||||||
317 | : QInputEvent(type, modifiers), l(localPos), w(windowPos), s(screenPos), b(button), mouseState(buttons), caps(0) | - | ||||||||||||
318 | {} never executed: end of block | 0 | ||||||||||||
319 | - | |||||||||||||
320 | /*! | - | ||||||||||||
321 | \since 5.6 | - | ||||||||||||
322 | - | |||||||||||||
323 | Constructs a mouse event object. | - | ||||||||||||
324 | - | |||||||||||||
325 | The \a type parameter must be QEvent::MouseButtonPress, | - | ||||||||||||
326 | QEvent::MouseButtonRelease, QEvent::MouseButtonDblClick, | - | ||||||||||||
327 | or QEvent::MouseMove. | - | ||||||||||||
328 | - | |||||||||||||
329 | The points \a localPos, \a windowPos and \a screenPos specify the | - | ||||||||||||
330 | mouse cursor's position relative to the receiving widget or item, | - | ||||||||||||
331 | window, and screen, respectively. | - | ||||||||||||
332 | - | |||||||||||||
333 | The \a button that caused the event is given as a value from the | - | ||||||||||||
334 | \l Qt::MouseButton enum. If the event \a type is \l MouseMove, | - | ||||||||||||
335 | the appropriate button for this event is Qt::NoButton. \a buttons | - | ||||||||||||
336 | is the state of all buttons at the time of the event, \a modifiers | - | ||||||||||||
337 | is the state of all keyboard modifiers. | - | ||||||||||||
338 | - | |||||||||||||
339 | The source of the event is specified by \a source. | - | ||||||||||||
340 | - | |||||||||||||
341 | */ | - | ||||||||||||
342 | QMouseEvent::QMouseEvent(QEvent::Type type, const QPointF &localPos, const QPointF &windowPos, const QPointF &screenPos, | - | ||||||||||||
343 | Qt::MouseButton button, Qt::MouseButtons buttons, | - | ||||||||||||
344 | Qt::KeyboardModifiers modifiers, Qt::MouseEventSource source) | - | ||||||||||||
345 | : QInputEvent(type, modifiers), l(localPos), w(windowPos), s(screenPos), b(button), mouseState(buttons), caps(0) | - | ||||||||||||
346 | { | - | ||||||||||||
347 | QGuiApplicationPrivate::setMouseEventSource(this, source); | - | ||||||||||||
348 | } never executed: end of block | 0 | ||||||||||||
349 | - | |||||||||||||
350 | /*! | - | ||||||||||||
351 | \internal | - | ||||||||||||
352 | */ | - | ||||||||||||
353 | QMouseEvent::~QMouseEvent() | - | ||||||||||||
354 | { | - | ||||||||||||
355 | } | - | ||||||||||||
356 | - | |||||||||||||
357 | /*! | - | ||||||||||||
358 | \since 5.3 | - | ||||||||||||
359 | - | |||||||||||||
360 | Returns information about the mouse event source. | - | ||||||||||||
361 | - | |||||||||||||
362 | The mouse event source can be used to distinguish between genuine | - | ||||||||||||
363 | and artificial mouse events. The latter are events that are | - | ||||||||||||
364 | synthesized from touch events by the operating system or Qt itself. | - | ||||||||||||
365 | - | |||||||||||||
366 | \note Many platforms provide no such information. On such platforms | - | ||||||||||||
367 | \l Qt::MouseEventNotSynthesized is returned always. | - | ||||||||||||
368 | - | |||||||||||||
369 | \sa Qt::MouseEventSource | - | ||||||||||||
370 | \sa QGraphicsSceneMouseEvent::source() | - | ||||||||||||
371 | */ | - | ||||||||||||
372 | Qt::MouseEventSource QMouseEvent::source() const | - | ||||||||||||
373 | { | - | ||||||||||||
374 | return QGuiApplicationPrivate::mouseEventSource(this); never executed: return QGuiApplicationPrivate::mouseEventSource(this); | 0 | ||||||||||||
375 | } | - | ||||||||||||
376 | - | |||||||||||||
377 | /*! | - | ||||||||||||
378 | \since 5.3 | - | ||||||||||||
379 | - | |||||||||||||
380 | Returns the mouse event flags. | - | ||||||||||||
381 | - | |||||||||||||
382 | The mouse event flags provide additional information about a mouse event. | - | ||||||||||||
383 | - | |||||||||||||
384 | \sa Qt::MouseEventFlag | - | ||||||||||||
385 | \sa QGraphicsSceneMouseEvent::flags() | - | ||||||||||||
386 | */ | - | ||||||||||||
387 | Qt::MouseEventFlags QMouseEvent::flags() const | - | ||||||||||||
388 | { | - | ||||||||||||
389 | return QGuiApplicationPrivate::mouseEventFlags(this); never executed: return QGuiApplicationPrivate::mouseEventFlags(this); | 0 | ||||||||||||
390 | } | - | ||||||||||||
391 | - | |||||||||||||
392 | /*! | - | ||||||||||||
393 | \fn QPointF QMouseEvent::localPos() const | - | ||||||||||||
394 | - | |||||||||||||
395 | \since 5.0 | - | ||||||||||||
396 | - | |||||||||||||
397 | Returns the position of the mouse cursor as a QPointF, relative to the | - | ||||||||||||
398 | widget or item that received the event. | - | ||||||||||||
399 | - | |||||||||||||
400 | If you move the widget as a result of the mouse event, use the | - | ||||||||||||
401 | screen position returned by screenPos() to avoid a shaking | - | ||||||||||||
402 | motion. | - | ||||||||||||
403 | - | |||||||||||||
404 | \sa x(), y(), windowPos(), screenPos() | - | ||||||||||||
405 | */ | - | ||||||||||||
406 | - | |||||||||||||
407 | /*! | - | ||||||||||||
408 | \fn QPointF QMouseEvent::windowPos() const | - | ||||||||||||
409 | - | |||||||||||||
410 | \since 5.0 | - | ||||||||||||
411 | - | |||||||||||||
412 | Returns the position of the mouse cursor as a QPointF, relative to the | - | ||||||||||||
413 | window that received the event. | - | ||||||||||||
414 | - | |||||||||||||
415 | If you move the widget as a result of the mouse event, use the | - | ||||||||||||
416 | global position returned by globalPos() to avoid a shaking | - | ||||||||||||
417 | motion. | - | ||||||||||||
418 | - | |||||||||||||
419 | \sa x(), y(), pos(), localPos(), screenPos() | - | ||||||||||||
420 | */ | - | ||||||||||||
421 | - | |||||||||||||
422 | /*! | - | ||||||||||||
423 | \fn QPointF QMouseEvent::screenPos() const | - | ||||||||||||
424 | - | |||||||||||||
425 | \since 5.0 | - | ||||||||||||
426 | - | |||||||||||||
427 | Returns the position of the mouse cursor as a QPointF, relative to the | - | ||||||||||||
428 | screen that received the event. | - | ||||||||||||
429 | - | |||||||||||||
430 | \sa x(), y(), pos(), localPos(), windowPos() | - | ||||||||||||
431 | */ | - | ||||||||||||
432 | - | |||||||||||||
433 | /*! | - | ||||||||||||
434 | \fn QPoint QMouseEvent::pos() const | - | ||||||||||||
435 | - | |||||||||||||
436 | Returns the position of the mouse cursor, relative to the widget | - | ||||||||||||
437 | that received the event. | - | ||||||||||||
438 | - | |||||||||||||
439 | If you move the widget as a result of the mouse event, use the | - | ||||||||||||
440 | global position returned by globalPos() to avoid a shaking | - | ||||||||||||
441 | motion. | - | ||||||||||||
442 | - | |||||||||||||
443 | \sa x(), y(), globalPos() | - | ||||||||||||
444 | */ | - | ||||||||||||
445 | - | |||||||||||||
446 | /*! | - | ||||||||||||
447 | \fn QPoint QMouseEvent::globalPos() const | - | ||||||||||||
448 | - | |||||||||||||
449 | Returns the global position of the mouse cursor \e{at the time | - | ||||||||||||
450 | of the event}. This is important on asynchronous window systems | - | ||||||||||||
451 | like X11. Whenever you move your widgets around in response to | - | ||||||||||||
452 | mouse events, globalPos() may differ a lot from the current | - | ||||||||||||
453 | pointer position QCursor::pos(), and from | - | ||||||||||||
454 | QWidget::mapToGlobal(pos()). | - | ||||||||||||
455 | - | |||||||||||||
456 | \sa globalX(), globalY() | - | ||||||||||||
457 | */ | - | ||||||||||||
458 | - | |||||||||||||
459 | /*! | - | ||||||||||||
460 | \fn int QMouseEvent::x() const | - | ||||||||||||
461 | - | |||||||||||||
462 | Returns the x position of the mouse cursor, relative to the | - | ||||||||||||
463 | widget that received the event. | - | ||||||||||||
464 | - | |||||||||||||
465 | \sa y(), pos() | - | ||||||||||||
466 | */ | - | ||||||||||||
467 | - | |||||||||||||
468 | /*! | - | ||||||||||||
469 | \fn int QMouseEvent::y() const | - | ||||||||||||
470 | - | |||||||||||||
471 | Returns the y position of the mouse cursor, relative to the | - | ||||||||||||
472 | widget that received the event. | - | ||||||||||||
473 | - | |||||||||||||
474 | \sa x(), pos() | - | ||||||||||||
475 | */ | - | ||||||||||||
476 | - | |||||||||||||
477 | /*! | - | ||||||||||||
478 | \fn int QMouseEvent::globalX() const | - | ||||||||||||
479 | - | |||||||||||||
480 | Returns the global x position of the mouse cursor at the time of | - | ||||||||||||
481 | the event. | - | ||||||||||||
482 | - | |||||||||||||
483 | \sa globalY(), globalPos() | - | ||||||||||||
484 | */ | - | ||||||||||||
485 | - | |||||||||||||
486 | /*! | - | ||||||||||||
487 | \fn int QMouseEvent::globalY() const | - | ||||||||||||
488 | - | |||||||||||||
489 | Returns the global y position of the mouse cursor at the time of | - | ||||||||||||
490 | the event. | - | ||||||||||||
491 | - | |||||||||||||
492 | \sa globalX(), globalPos() | - | ||||||||||||
493 | */ | - | ||||||||||||
494 | - | |||||||||||||
495 | /*! | - | ||||||||||||
496 | \fn Qt::MouseButton QMouseEvent::button() const | - | ||||||||||||
497 | - | |||||||||||||
498 | Returns the button that caused the event. | - | ||||||||||||
499 | - | |||||||||||||
500 | Note that the returned value is always Qt::NoButton for mouse | - | ||||||||||||
501 | move events. | - | ||||||||||||
502 | - | |||||||||||||
503 | \sa buttons(), Qt::MouseButton | - | ||||||||||||
504 | */ | - | ||||||||||||
505 | - | |||||||||||||
506 | /*! | - | ||||||||||||
507 | \fn Qt::MouseButton QMouseEvent::buttons() const | - | ||||||||||||
508 | - | |||||||||||||
509 | Returns the button state when the event was generated. The button | - | ||||||||||||
510 | state is a combination of Qt::LeftButton, Qt::RightButton, | - | ||||||||||||
511 | Qt::MidButton using the OR operator. For mouse move events, | - | ||||||||||||
512 | this is all buttons that are pressed down. For mouse press and | - | ||||||||||||
513 | double click events this includes the button that caused the | - | ||||||||||||
514 | event. For mouse release events this excludes the button that | - | ||||||||||||
515 | caused the event. | - | ||||||||||||
516 | - | |||||||||||||
517 | \sa button(), Qt::MouseButton | - | ||||||||||||
518 | */ | - | ||||||||||||
519 | - | |||||||||||||
520 | /*! | - | ||||||||||||
521 | \fn QPointF QMouseEvent::posF() const | - | ||||||||||||
522 | \obsolete | - | ||||||||||||
523 | - | |||||||||||||
524 | Use localPos() instead. | - | ||||||||||||
525 | */ | - | ||||||||||||
526 | - | |||||||||||||
527 | /*! | - | ||||||||||||
528 | \class QHoverEvent | - | ||||||||||||
529 | \ingroup events | - | ||||||||||||
530 | \inmodule QtGui | - | ||||||||||||
531 | - | |||||||||||||
532 | \brief The QHoverEvent class contains parameters that describe a mouse event. | - | ||||||||||||
533 | - | |||||||||||||
534 | Mouse events occur when a mouse cursor is moved into, out of, or within a | - | ||||||||||||
535 | widget, and if the widget has the Qt::WA_Hover attribute. | - | ||||||||||||
536 | - | |||||||||||||
537 | The function pos() gives the current cursor position, while oldPos() gives | - | ||||||||||||
538 | the old mouse position. | - | ||||||||||||
539 | - | |||||||||||||
540 | There are a few similarities between the events QEvent::HoverEnter | - | ||||||||||||
541 | and QEvent::HoverLeave, and the events QEvent::Enter and QEvent::Leave. | - | ||||||||||||
542 | However, they are slightly different because we do an update() in the event | - | ||||||||||||
543 | handler of HoverEnter and HoverLeave. | - | ||||||||||||
544 | - | |||||||||||||
545 | QEvent::HoverMove is also slightly different from QEvent::MouseMove. Let us | - | ||||||||||||
546 | consider a top-level window A containing a child B which in turn contains a | - | ||||||||||||
547 | child C (all with mouse tracking enabled): | - | ||||||||||||
548 | - | |||||||||||||
549 | \image hoverevents.png | - | ||||||||||||
550 | - | |||||||||||||
551 | Now, if you move the cursor from the top to the bottom in the middle of A, | - | ||||||||||||
552 | you will get the following QEvent::MouseMove events: | - | ||||||||||||
553 | - | |||||||||||||
554 | \list 1 | - | ||||||||||||
555 | \li A::MouseMove | - | ||||||||||||
556 | \li B::MouseMove | - | ||||||||||||
557 | \li C::MouseMove | - | ||||||||||||
558 | \endlist | - | ||||||||||||
559 | - | |||||||||||||
560 | You will get the same events for QEvent::HoverMove, except that the event | - | ||||||||||||
561 | always propagates to the top-level regardless whether the event is accepted | - | ||||||||||||
562 | or not. It will only stop propagating with the Qt::WA_NoMousePropagation | - | ||||||||||||
563 | attribute. | - | ||||||||||||
564 | - | |||||||||||||
565 | In this case the events will occur in the following way: | - | ||||||||||||
566 | - | |||||||||||||
567 | \list 1 | - | ||||||||||||
568 | \li A::HoverMove | - | ||||||||||||
569 | \li A::HoverMove, B::HoverMove | - | ||||||||||||
570 | \li A::HoverMove, B::HoverMove, C::HoverMove | - | ||||||||||||
571 | \endlist | - | ||||||||||||
572 | - | |||||||||||||
573 | */ | - | ||||||||||||
574 | - | |||||||||||||
575 | /*! | - | ||||||||||||
576 | \fn QPoint QHoverEvent::pos() const | - | ||||||||||||
577 | - | |||||||||||||
578 | Returns the position of the mouse cursor, relative to the widget | - | ||||||||||||
579 | that received the event. | - | ||||||||||||
580 | - | |||||||||||||
581 | On QEvent::HoverLeave events, this position will always be | - | ||||||||||||
582 | QPoint(-1, -1). | - | ||||||||||||
583 | - | |||||||||||||
584 | \sa oldPos() | - | ||||||||||||
585 | */ | - | ||||||||||||
586 | - | |||||||||||||
587 | /*! | - | ||||||||||||
588 | \fn QPoint QHoverEvent::oldPos() const | - | ||||||||||||
589 | - | |||||||||||||
590 | Returns the previous position of the mouse cursor, relative to the widget | - | ||||||||||||
591 | that received the event. If there is no previous position, oldPos() will | - | ||||||||||||
592 | return the same position as pos(). | - | ||||||||||||
593 | - | |||||||||||||
594 | On QEvent::HoverEnter events, this position will always be | - | ||||||||||||
595 | QPoint(-1, -1). | - | ||||||||||||
596 | - | |||||||||||||
597 | \sa pos() | - | ||||||||||||
598 | */ | - | ||||||||||||
599 | - | |||||||||||||
600 | /*! | - | ||||||||||||
601 | \fn const QPointF &QHoverEvent::posF() const | - | ||||||||||||
602 | - | |||||||||||||
603 | Returns the position of the mouse cursor, relative to the widget | - | ||||||||||||
604 | that received the event. | - | ||||||||||||
605 | - | |||||||||||||
606 | On QEvent::HoverLeave events, this position will always be | - | ||||||||||||
607 | QPointF(-1, -1). | - | ||||||||||||
608 | - | |||||||||||||
609 | \sa oldPosF() | - | ||||||||||||
610 | */ | - | ||||||||||||
611 | - | |||||||||||||
612 | /*! | - | ||||||||||||
613 | \fn const QPointF &QHoverEvent::oldPosF() const | - | ||||||||||||
614 | - | |||||||||||||
615 | Returns the previous position of the mouse cursor, relative to the widget | - | ||||||||||||
616 | that received the event. If there is no previous position, oldPosF() will | - | ||||||||||||
617 | return the same position as posF(). | - | ||||||||||||
618 | - | |||||||||||||
619 | On QEvent::HoverEnter events, this position will always be | - | ||||||||||||
620 | QPointF(-1, -1). | - | ||||||||||||
621 | - | |||||||||||||
622 | \sa posF() | - | ||||||||||||
623 | */ | - | ||||||||||||
624 | - | |||||||||||||
625 | /*! | - | ||||||||||||
626 | Constructs a hover event object. | - | ||||||||||||
627 | - | |||||||||||||
628 | The \a type parameter must be QEvent::HoverEnter, | - | ||||||||||||
629 | QEvent::HoverLeave, or QEvent::HoverMove. | - | ||||||||||||
630 | - | |||||||||||||
631 | The \a pos is the current mouse cursor's position relative to the | - | ||||||||||||
632 | receiving widget, while \a oldPos is its previous such position. | - | ||||||||||||
633 | \a modifiers hold the state of all keyboard modifiers at the time | - | ||||||||||||
634 | of the event. | - | ||||||||||||
635 | */ | - | ||||||||||||
636 | QHoverEvent::QHoverEvent(Type type, const QPointF &pos, const QPointF &oldPos, Qt::KeyboardModifiers modifiers) | - | ||||||||||||
637 | : QInputEvent(type, modifiers), p(pos), op(oldPos) | - | ||||||||||||
638 | { | - | ||||||||||||
639 | } never executed: end of block | 0 | ||||||||||||
640 | - | |||||||||||||
641 | /*! | - | ||||||||||||
642 | \internal | - | ||||||||||||
643 | */ | - | ||||||||||||
644 | QHoverEvent::~QHoverEvent() | - | ||||||||||||
645 | { | - | ||||||||||||
646 | } | - | ||||||||||||
647 | - | |||||||||||||
648 | - | |||||||||||||
649 | /*! | - | ||||||||||||
650 | \class QWheelEvent | - | ||||||||||||
651 | \brief The QWheelEvent class contains parameters that describe a wheel event. | - | ||||||||||||
652 | \inmodule QtGui | - | ||||||||||||
653 | - | |||||||||||||
654 | \ingroup events | - | ||||||||||||
655 | - | |||||||||||||
656 | Wheel events are sent to the widget under the mouse cursor, but | - | ||||||||||||
657 | if that widget does not handle the event they are sent to the | - | ||||||||||||
658 | focus widget. Wheel events are generated for both mouse wheels | - | ||||||||||||
659 | and trackpad scroll gestures. There are two ways to read the | - | ||||||||||||
660 | wheel event delta: angleDelta() returns the delta in wheel | - | ||||||||||||
661 | degrees. This value is always provided. pixelDelta() returns | - | ||||||||||||
662 | the delta in screen pixels and is available on platforms that | - | ||||||||||||
663 | have high-resolution trackpads, such as \macos. If that is the | - | ||||||||||||
664 | case, source() will return Qt::MouseEventSynthesizedBySystem. | - | ||||||||||||
665 | - | |||||||||||||
666 | The functions pos() and globalPos() return the mouse cursor's | - | ||||||||||||
667 | location at the time of the event. | - | ||||||||||||
668 | - | |||||||||||||
669 | A wheel event contains a special accept flag that indicates | - | ||||||||||||
670 | whether the receiver wants the event. You should call ignore() if | - | ||||||||||||
671 | you do not handle the wheel event; this ensures that it will be | - | ||||||||||||
672 | sent to the parent widget. | - | ||||||||||||
673 | - | |||||||||||||
674 | The QWidget::setEnabled() function can be used to enable or | - | ||||||||||||
675 | disable mouse and keyboard events for a widget. | - | ||||||||||||
676 | - | |||||||||||||
677 | The event handler QWidget::wheelEvent() receives wheel events. | - | ||||||||||||
678 | - | |||||||||||||
679 | \sa QMouseEvent, QWidget::grabMouse() | - | ||||||||||||
680 | */ | - | ||||||||||||
681 | - | |||||||||||||
682 | /*! | - | ||||||||||||
683 | \fn Qt::MouseButtons QWheelEvent::buttons() const | - | ||||||||||||
684 | - | |||||||||||||
685 | Returns the mouse state when the event occurred. | - | ||||||||||||
686 | */ | - | ||||||||||||
687 | - | |||||||||||||
688 | /*! | - | ||||||||||||
689 | \fn Qt::MouseEventSource QWheelEvent::source() const | - | ||||||||||||
690 | \since 5.5 | - | ||||||||||||
691 | - | |||||||||||||
692 | Returns information about the wheel event source. | - | ||||||||||||
693 | - | |||||||||||||
694 | The source can be used to distinguish between events that come from a mouse | - | ||||||||||||
695 | with a physical wheel and events that are generated by some other means, | - | ||||||||||||
696 | such as a flick gesture on a touchpad. | - | ||||||||||||
697 | - | |||||||||||||
698 | \note Many platforms provide no such information. On such platforms | - | ||||||||||||
699 | \l Qt::MouseEventNotSynthesized is returned always. | - | ||||||||||||
700 | - | |||||||||||||
701 | \sa Qt::MouseEventSource | - | ||||||||||||
702 | */ | - | ||||||||||||
703 | - | |||||||||||||
704 | /*! | - | ||||||||||||
705 | \fn bool QWheelEvent::inverted() const | - | ||||||||||||
706 | \since 5.7 | - | ||||||||||||
707 | - | |||||||||||||
708 | Returns whether the delta values delivered with the event are inverted. | - | ||||||||||||
709 | - | |||||||||||||
710 | Normally, a vertical wheel will produce a QWheelEvent with positive delta | - | ||||||||||||
711 | values if the top of the wheel is rotating away from the hand operating it. | - | ||||||||||||
712 | Similarly, a horizontal wheel movement will produce a QWheelEvent with | - | ||||||||||||
713 | positive delta values if the top of the wheel is moved to the left. | - | ||||||||||||
714 | - | |||||||||||||
715 | However, on some platforms this is configurable, so that the same | - | ||||||||||||
716 | operations described above will produce negative delta values (but with the | - | ||||||||||||
717 | same magnitude). With the inverted property a wheel event consumer can | - | ||||||||||||
718 | choose to always follow the direction of the wheel, regardless of the | - | ||||||||||||
719 | system settings, but only for specific widgets. (One such use case could be | - | ||||||||||||
720 | that the user is rotating the wheel in the same direction as a visual | - | ||||||||||||
721 | Tumbler rotates. Another usecase is to make a slider handle follow the | - | ||||||||||||
722 | direction of movement of fingers on a touchpad regardless of system | - | ||||||||||||
723 | configuration.) | - | ||||||||||||
724 | - | |||||||||||||
725 | \note Many platforms provide no such information. On such platforms | - | ||||||||||||
726 | \l inverted always returns false. | - | ||||||||||||
727 | */ | - | ||||||||||||
728 | - | |||||||||||||
729 | /*! | - | ||||||||||||
730 | \fn Qt::Orientation QWheelEvent::orientation() const | - | ||||||||||||
731 | \obsolete | - | ||||||||||||
732 | - | |||||||||||||
733 | Returns the wheel's orientation. | - | ||||||||||||
734 | - | |||||||||||||
735 | Use angleDelta() instead. | - | ||||||||||||
736 | */ | - | ||||||||||||
737 | - | |||||||||||||
738 | /*! | - | ||||||||||||
739 | \obsolete | - | ||||||||||||
740 | Constructs a wheel event object. | - | ||||||||||||
741 | - | |||||||||||||
742 | Use the constructor taking \e angleDelta and \e pixelDelta QPoints instead. | - | ||||||||||||
743 | - | |||||||||||||
744 | The position, \a pos, is the location of the mouse cursor within | - | ||||||||||||
745 | the widget. The globalPos() is initialized to QCursor::pos() | - | ||||||||||||
746 | which is usually, but not always, correct. | - | ||||||||||||
747 | Use the other constructor if you need to specify the global | - | ||||||||||||
748 | position explicitly. | - | ||||||||||||
749 | - | |||||||||||||
750 | The \a buttons describe the state of the mouse buttons at the time | - | ||||||||||||
751 | of the event, \a delta contains the rotation distance, | - | ||||||||||||
752 | \a modifiers holds the keyboard modifier flags at the time of the | - | ||||||||||||
753 | event, and \a orient holds the wheel's orientation. | - | ||||||||||||
754 | - | |||||||||||||
755 | \sa pos(), pixelDelta(), angleDelta() | - | ||||||||||||
756 | */ | - | ||||||||||||
757 | #ifndef QT_NO_WHEELEVENT | - | ||||||||||||
758 | QWheelEvent::QWheelEvent(const QPointF &pos, int delta, | - | ||||||||||||
759 | Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers, | - | ||||||||||||
760 | Qt::Orientation orient) | - | ||||||||||||
761 | : QInputEvent(Wheel, modifiers), p(pos), qt4D(delta), qt4O(orient), mouseState(buttons), | - | ||||||||||||
762 | ph(Qt::NoScrollPhase), src(Qt::MouseEventNotSynthesized), invertedScrolling(false) | - | ||||||||||||
763 | { | - | ||||||||||||
764 | g = QCursor::pos(); | - | ||||||||||||
765 | if (orient == Qt::Vertical)
| 0 | ||||||||||||
766 | angleD = QPoint(0, delta); never executed: angleD = QPoint(0, delta); | 0 | ||||||||||||
767 | else | - | ||||||||||||
768 | angleD = QPoint(delta, 0); never executed: angleD = QPoint(delta, 0); | 0 | ||||||||||||
769 | } | - | ||||||||||||
770 | - | |||||||||||||
771 | /*! | - | ||||||||||||
772 | \internal | - | ||||||||||||
773 | */ | - | ||||||||||||
774 | QWheelEvent::~QWheelEvent() | - | ||||||||||||
775 | { | - | ||||||||||||
776 | } | - | ||||||||||||
777 | - | |||||||||||||
778 | /*! | - | ||||||||||||
779 | \obsolete | - | ||||||||||||
780 | Constructs a wheel event object. | - | ||||||||||||
781 | - | |||||||||||||
782 | Use the constructor taking \e angleDelta and \e pixelDelta QPoints instead. | - | ||||||||||||
783 | - | |||||||||||||
784 | The \a pos provides the location of the mouse cursor | - | ||||||||||||
785 | within the widget. The position in global coordinates is specified | - | ||||||||||||
786 | by \a globalPos. \a delta contains the rotation distance, \a modifiers | - | ||||||||||||
787 | holds the keyboard modifier flags at the time of the event, and | - | ||||||||||||
788 | \a orient holds the wheel's orientation. | - | ||||||||||||
789 | - | |||||||||||||
790 | - | |||||||||||||
791 | \sa pos(), pixelDelta(), angleDelta() | - | ||||||||||||
792 | */ | - | ||||||||||||
793 | QWheelEvent::QWheelEvent(const QPointF &pos, const QPointF& globalPos, int delta, | - | ||||||||||||
794 | Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers, | - | ||||||||||||
795 | Qt::Orientation orient) | - | ||||||||||||
796 | : QInputEvent(Wheel, modifiers), p(pos), g(globalPos), qt4D(delta), qt4O(orient), mouseState(buttons), | - | ||||||||||||
797 | ph(Qt::NoScrollPhase), src(Qt::MouseEventNotSynthesized), invertedScrolling(false) | - | ||||||||||||
798 | { | - | ||||||||||||
799 | if (orient == Qt::Vertical)
| 0 | ||||||||||||
800 | angleD = QPoint(0, delta); never executed: angleD = QPoint(0, delta); | 0 | ||||||||||||
801 | else | - | ||||||||||||
802 | angleD = QPoint(delta, 0); never executed: angleD = QPoint(delta, 0); | 0 | ||||||||||||
803 | } | - | ||||||||||||
804 | - | |||||||||||||
805 | /*! | - | ||||||||||||
806 | Constructs a wheel event object. | - | ||||||||||||
807 | - | |||||||||||||
808 | The \a pos provides the location of the mouse cursor | - | ||||||||||||
809 | within the window. The position in global coordinates is specified | - | ||||||||||||
810 | by \a globalPos. | - | ||||||||||||
811 | - | |||||||||||||
812 | \a pixelDelta contains the scrolling distance in pixels on screen, while | - | ||||||||||||
813 | \a angleDelta contains the wheel rotation distance. \a pixelDelta is | - | ||||||||||||
814 | optional and can be null. | - | ||||||||||||
815 | - | |||||||||||||
816 | The mouse and keyboard states at the time of the event are specified by | - | ||||||||||||
817 | \a buttons and \a modifiers. | - | ||||||||||||
818 | - | |||||||||||||
819 | For backwards compatibility, the event can also hold monodirectional wheel | - | ||||||||||||
820 | event data: \a qt4Delta specifies the rotation, and \a qt4Orientation the | - | ||||||||||||
821 | direction. | - | ||||||||||||
822 | - | |||||||||||||
823 | The phase() is initialized to Qt::ScrollUpdate. Use the other constructor | - | ||||||||||||
824 | to specify the phase explicitly. | - | ||||||||||||
825 | - | |||||||||||||
826 | \sa posF(), globalPosF(), angleDelta(), pixelDelta() | - | ||||||||||||
827 | */ | - | ||||||||||||
828 | - | |||||||||||||
829 | QWheelEvent::QWheelEvent(const QPointF &pos, const QPointF& globalPos, | - | ||||||||||||
830 | QPoint pixelDelta, QPoint angleDelta, int qt4Delta, Qt::Orientation qt4Orientation, | - | ||||||||||||
831 | Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers) | - | ||||||||||||
832 | : QInputEvent(Wheel, modifiers), p(pos), g(globalPos), pixelD(pixelDelta), | - | ||||||||||||
833 | angleD(angleDelta), qt4D(qt4Delta), qt4O(qt4Orientation), mouseState(buttons), ph(Qt::NoScrollPhase), | - | ||||||||||||
834 | src(Qt::MouseEventNotSynthesized), invertedScrolling(false) | - | ||||||||||||
835 | {} never executed: end of block | 0 | ||||||||||||
836 | - | |||||||||||||
837 | /*! | - | ||||||||||||
838 | Constructs a wheel event object. | - | ||||||||||||
839 | - | |||||||||||||
840 | The \a pos provides the location of the mouse cursor | - | ||||||||||||
841 | within the window. The position in global coordinates is specified | - | ||||||||||||
842 | by \a globalPos. | - | ||||||||||||
843 | - | |||||||||||||
844 | \a pixelDelta contains the scrolling distance in pixels on screen, while | - | ||||||||||||
845 | \a angleDelta contains the wheel rotation distance. \a pixelDelta is | - | ||||||||||||
846 | optional and can be null. | - | ||||||||||||
847 | - | |||||||||||||
848 | The mouse and keyboard states at the time of the event are specified by | - | ||||||||||||
849 | \a buttons and \a modifiers. | - | ||||||||||||
850 | - | |||||||||||||
851 | For backwards compatibility, the event can also hold monodirectional wheel | - | ||||||||||||
852 | event data: \a qt4Delta specifies the rotation, and \a qt4Orientation the | - | ||||||||||||
853 | direction. | - | ||||||||||||
854 | - | |||||||||||||
855 | The scrolling phase of the event is specified by \a phase. | - | ||||||||||||
856 | - | |||||||||||||
857 | \sa posF(), globalPosF(), angleDelta(), pixelDelta(), phase() | - | ||||||||||||
858 | */ | - | ||||||||||||
859 | - | |||||||||||||
860 | QWheelEvent::QWheelEvent(const QPointF &pos, const QPointF& globalPos, | - | ||||||||||||
861 | QPoint pixelDelta, QPoint angleDelta, int qt4Delta, Qt::Orientation qt4Orientation, | - | ||||||||||||
862 | Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers, Qt::ScrollPhase phase) | - | ||||||||||||
863 | : QInputEvent(Wheel, modifiers), p(pos), g(globalPos), pixelD(pixelDelta), | - | ||||||||||||
864 | angleD(angleDelta), qt4D(qt4Delta), qt4O(qt4Orientation), mouseState(buttons), ph(phase), | - | ||||||||||||
865 | src(Qt::MouseEventNotSynthesized), invertedScrolling(false) | - | ||||||||||||
866 | {} never executed: end of block | 0 | ||||||||||||
867 | - | |||||||||||||
868 | /*! | - | ||||||||||||
869 | Constructs a wheel event object. | - | ||||||||||||
870 | - | |||||||||||||
871 | The \a pos provides the location of the mouse cursor within the window. The | - | ||||||||||||
872 | position in global coordinates is specified by \a globalPos. | - | ||||||||||||
873 | - | |||||||||||||
874 | \a pixelDelta contains the scrolling distance in pixels on screen, while | - | ||||||||||||
875 | \a angleDelta contains the wheel rotation distance. \a pixelDelta is | - | ||||||||||||
876 | optional and can be null. | - | ||||||||||||
877 | - | |||||||||||||
878 | The mouse and keyboard states at the time of the event are specified by | - | ||||||||||||
879 | \a buttons and \a modifiers. | - | ||||||||||||
880 | - | |||||||||||||
881 | For backwards compatibility, the event can also hold monodirectional wheel | - | ||||||||||||
882 | event data: \a qt4Delta specifies the rotation, and \a qt4Orientation the | - | ||||||||||||
883 | direction. | - | ||||||||||||
884 | - | |||||||||||||
885 | The scrolling phase of the event is specified by \a phase. | - | ||||||||||||
886 | - | |||||||||||||
887 | If the wheel event comes from a physical mouse wheel, \a source is set to | - | ||||||||||||
888 | Qt::MouseEventNotSynthesized. If it comes from a gesture detected by the | - | ||||||||||||
889 | operating system, or from a non-mouse hardware device, such that \a pixelDelta is | - | ||||||||||||
890 | directly related to finger movement, \a source is set to Qt::MouseEventSynthesizedBySystem. | - | ||||||||||||
891 | If it comes from Qt, source would be set to Qt::MouseEventSynthesizedByQt. | - | ||||||||||||
892 | - | |||||||||||||
893 | \sa posF(), globalPosF(), angleDelta(), pixelDelta(), phase() | - | ||||||||||||
894 | */ | - | ||||||||||||
895 | - | |||||||||||||
896 | QWheelEvent::QWheelEvent(const QPointF &pos, const QPointF& globalPos, | - | ||||||||||||
897 | QPoint pixelDelta, QPoint angleDelta, int qt4Delta, Qt::Orientation qt4Orientation, | - | ||||||||||||
898 | Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers, Qt::ScrollPhase phase, Qt::MouseEventSource source) | - | ||||||||||||
899 | : QInputEvent(Wheel, modifiers), p(pos), g(globalPos), pixelD(pixelDelta), | - | ||||||||||||
900 | angleD(angleDelta), qt4D(qt4Delta), qt4O(qt4Orientation), mouseState(buttons), ph(phase), src(source), | - | ||||||||||||
901 | invertedScrolling(false) | - | ||||||||||||
902 | {} never executed: end of block | 0 | ||||||||||||
903 | - | |||||||||||||
904 | /*! | - | ||||||||||||
905 | Constructs a wheel event object. | - | ||||||||||||
906 | - | |||||||||||||
907 | The \a pos provides the location of the mouse cursor | - | ||||||||||||
908 | within the window. The position in global coordinates is specified | - | ||||||||||||
909 | by \a globalPos. | - | ||||||||||||
910 | - | |||||||||||||
911 | \a pixelDelta contains the scrolling distance in pixels on screen, while | - | ||||||||||||
912 | \a angleDelta contains the wheel rotation distance. \a pixelDelta is | - | ||||||||||||
913 | optional and can be null. | - | ||||||||||||
914 | - | |||||||||||||
915 | The mouse and keyboard states at the time of the event are specified by | - | ||||||||||||
916 | \a buttons and \a modifiers. | - | ||||||||||||
917 | - | |||||||||||||
918 | For backwards compatibility, the event can also hold monodirectional wheel | - | ||||||||||||
919 | event data: \a qt4Delta specifies the rotation, and \a qt4Orientation the | - | ||||||||||||
920 | direction. | - | ||||||||||||
921 | - | |||||||||||||
922 | The scrolling phase of the event is specified by \a phase. | - | ||||||||||||
923 | - | |||||||||||||
924 | If the wheel event comes from a physical mouse wheel, \a source is set to | - | ||||||||||||
925 | Qt::MouseEventNotSynthesized. If it comes from a gesture detected by the | - | ||||||||||||
926 | operating system, or from a non-mouse hardware device, such that \a | - | ||||||||||||
927 | pixelDelta is directly related to finger movement, \a source is set to | - | ||||||||||||
928 | Qt::MouseEventSynthesizedBySystem. If it comes from Qt, source would be set | - | ||||||||||||
929 | to Qt::MouseEventSynthesizedByQt. | - | ||||||||||||
930 | - | |||||||||||||
931 | If the system is configured to invert the delta values delivered with the | - | ||||||||||||
932 | event (such as natural scrolling of the touchpad on OS X), \a inverted | - | ||||||||||||
933 | should be \c true. Otherwise, \a inverted is \c false | - | ||||||||||||
934 | - | |||||||||||||
935 | \sa posF(), globalPosF(), angleDelta(), pixelDelta(), phase() | - | ||||||||||||
936 | */ | - | ||||||||||||
937 | QWheelEvent::QWheelEvent(const QPointF &pos, const QPointF& globalPos, | - | ||||||||||||
938 | QPoint pixelDelta, QPoint angleDelta, int qt4Delta, Qt::Orientation qt4Orientation, | - | ||||||||||||
939 | Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers, Qt::ScrollPhase phase, Qt::MouseEventSource source, bool inverted) | - | ||||||||||||
940 | : QInputEvent(Wheel, modifiers), p(pos), g(globalPos), pixelD(pixelDelta), | - | ||||||||||||
941 | angleD(angleDelta), qt4D(qt4Delta), qt4O(qt4Orientation), mouseState(buttons), ph(phase), src(source), | - | ||||||||||||
942 | invertedScrolling(inverted) | - | ||||||||||||
943 | {} never executed: end of block | 0 | ||||||||||||
944 | - | |||||||||||||
945 | #endif // QT_NO_WHEELEVENT | - | ||||||||||||
946 | - | |||||||||||||
947 | /*! | - | ||||||||||||
948 | \fn QPoint QWheelEvent::pixelDelta() const | - | ||||||||||||
949 | - | |||||||||||||
950 | Returns the scrolling distance in pixels on screen. This value is | - | ||||||||||||
951 | provided on platforms that support high-resolution pixel-based | - | ||||||||||||
952 | delta values, such as \macos. The value should be used directly | - | ||||||||||||
953 | to scroll content on screen. | - | ||||||||||||
954 | - | |||||||||||||
955 | Example: | - | ||||||||||||
956 | - | |||||||||||||
957 | \snippet code/src_gui_kernel_qevent.cpp 0 | - | ||||||||||||
958 | - | |||||||||||||
959 | \note On platforms that support scrolling \l{phase()}{phases}, the delta may be null when: | - | ||||||||||||
960 | \list | - | ||||||||||||
961 | \li scrolling is about to begin, but the distance did not yet change (Qt::ScrollBegin), | - | ||||||||||||
962 | \li or scrolling has ended and the distance did not change anymore (Qt::ScrollEnd). | - | ||||||||||||
963 | \endlist | - | ||||||||||||
964 | */ | - | ||||||||||||
965 | - | |||||||||||||
966 | /*! | - | ||||||||||||
967 | \fn QPoint QWheelEvent::angleDelta() const | - | ||||||||||||
968 | - | |||||||||||||
969 | Returns the distance that the wheel is rotated, in eighths of a | - | ||||||||||||
970 | degree. A positive value indicates that the wheel was rotated | - | ||||||||||||
971 | forwards away from the user; a negative value indicates that the | - | ||||||||||||
972 | wheel was rotated backwards toward the user. | - | ||||||||||||
973 | - | |||||||||||||
974 | Most mouse types work in steps of 15 degrees, in which case the | - | ||||||||||||
975 | delta value is a multiple of 120; i.e., 120 units * 1/8 = 15 degrees. | - | ||||||||||||
976 | - | |||||||||||||
977 | However, some mice have finer-resolution wheels and send delta values | - | ||||||||||||
978 | that are less than 120 units (less than 15 degrees). To support this | - | ||||||||||||
979 | possibility, you can either cumulatively add the delta values from events | - | ||||||||||||
980 | until the value of 120 is reached, then scroll the widget, or you can | - | ||||||||||||
981 | partially scroll the widget in response to each wheel event. | - | ||||||||||||
982 | - | |||||||||||||
983 | Example: | - | ||||||||||||
984 | - | |||||||||||||
985 | \snippet code/src_gui_kernel_qevent.cpp 0 | - | ||||||||||||
986 | - | |||||||||||||
987 | \note On platforms that support scrolling \l{phase()}{phases}, the delta may be null when: | - | ||||||||||||
988 | \list | - | ||||||||||||
989 | \li scrolling is about to begin, but the distance did not yet change (Qt::ScrollBegin), | - | ||||||||||||
990 | \li or scrolling has ended and the distance did not change anymore (Qt::ScrollEnd). | - | ||||||||||||
991 | \endlist | - | ||||||||||||
992 | */ | - | ||||||||||||
993 | - | |||||||||||||
994 | /*! | - | ||||||||||||
995 | \fn int QWheelEvent::delta() const | - | ||||||||||||
996 | \obsolete | - | ||||||||||||
997 | - | |||||||||||||
998 | This function has been deprecated, use pixelDelta() or angleDelta() instead. | - | ||||||||||||
999 | */ | - | ||||||||||||
1000 | - | |||||||||||||
1001 | /*! | - | ||||||||||||
1002 | \fn QPoint QWheelEvent::pos() const | - | ||||||||||||
1003 | - | |||||||||||||
1004 | Returns the position of the mouse cursor relative to the widget | - | ||||||||||||
1005 | that received the event. | - | ||||||||||||
1006 | - | |||||||||||||
1007 | If you move your widgets around in response to mouse events, | - | ||||||||||||
1008 | use globalPos() instead of this function. | - | ||||||||||||
1009 | - | |||||||||||||
1010 | \sa x(), y(), globalPos() | - | ||||||||||||
1011 | */ | - | ||||||||||||
1012 | - | |||||||||||||
1013 | /*! | - | ||||||||||||
1014 | \fn int QWheelEvent::x() const | - | ||||||||||||
1015 | - | |||||||||||||
1016 | Returns the x position of the mouse cursor, relative to the | - | ||||||||||||
1017 | widget that received the event. | - | ||||||||||||
1018 | - | |||||||||||||
1019 | \sa y(), pos() | - | ||||||||||||
1020 | */ | - | ||||||||||||
1021 | - | |||||||||||||
1022 | /*! | - | ||||||||||||
1023 | \fn int QWheelEvent::y() const | - | ||||||||||||
1024 | - | |||||||||||||
1025 | Returns the y position of the mouse cursor, relative to the | - | ||||||||||||
1026 | widget that received the event. | - | ||||||||||||
1027 | - | |||||||||||||
1028 | \sa x(), pos() | - | ||||||||||||
1029 | */ | - | ||||||||||||
1030 | - | |||||||||||||
1031 | - | |||||||||||||
1032 | /*! | - | ||||||||||||
1033 | \fn QPoint QWheelEvent::globalPos() const | - | ||||||||||||
1034 | - | |||||||||||||
1035 | Returns the global position of the mouse pointer \e{at the time | - | ||||||||||||
1036 | of the event}. This is important on asynchronous window systems | - | ||||||||||||
1037 | such as X11; whenever you move your widgets around in response to | - | ||||||||||||
1038 | mouse events, globalPos() can differ a lot from the current | - | ||||||||||||
1039 | cursor position returned by QCursor::pos(). | - | ||||||||||||
1040 | - | |||||||||||||
1041 | \sa globalX(), globalY() | - | ||||||||||||
1042 | */ | - | ||||||||||||
1043 | - | |||||||||||||
1044 | /*! | - | ||||||||||||
1045 | \fn int QWheelEvent::globalX() const | - | ||||||||||||
1046 | - | |||||||||||||
1047 | Returns the global x position of the mouse cursor at the time of | - | ||||||||||||
1048 | the event. | - | ||||||||||||
1049 | - | |||||||||||||
1050 | \sa globalY(), globalPos() | - | ||||||||||||
1051 | */ | - | ||||||||||||
1052 | - | |||||||||||||
1053 | /*! | - | ||||||||||||
1054 | \fn int QWheelEvent::globalY() const | - | ||||||||||||
1055 | - | |||||||||||||
1056 | Returns the global y position of the mouse cursor at the time of | - | ||||||||||||
1057 | the event. | - | ||||||||||||
1058 | - | |||||||||||||
1059 | \sa globalX(), globalPos() | - | ||||||||||||
1060 | */ | - | ||||||||||||
1061 | - | |||||||||||||
1062 | /*! | - | ||||||||||||
1063 | \fn const QPointF &QWheelEvent::posF() const | - | ||||||||||||
1064 | - | |||||||||||||
1065 | Returns the position of the mouse cursor relative to the widget | - | ||||||||||||
1066 | that received the event. | - | ||||||||||||
1067 | - | |||||||||||||
1068 | If you move your widgets around in response to mouse events, | - | ||||||||||||
1069 | use globalPosF() instead of this function. | - | ||||||||||||
1070 | - | |||||||||||||
1071 | \sa globalPosF() | - | ||||||||||||
1072 | */ | - | ||||||||||||
1073 | - | |||||||||||||
1074 | /*! | - | ||||||||||||
1075 | \fn const QPointF &QWheelEvent::globalPosF() const | - | ||||||||||||
1076 | - | |||||||||||||
1077 | Returns the global position of the mouse pointer \e{at the time | - | ||||||||||||
1078 | of the event}. This is important on asynchronous window systems | - | ||||||||||||
1079 | such as X11; whenever you move your widgets around in response to | - | ||||||||||||
1080 | mouse events, globalPosF() can differ a lot from the current | - | ||||||||||||
1081 | cursor position returned by QCursor::pos(). | - | ||||||||||||
1082 | - | |||||||||||||
1083 | \sa posF() | - | ||||||||||||
1084 | */ | - | ||||||||||||
1085 | - | |||||||||||||
1086 | /*! | - | ||||||||||||
1087 | \fn Qt::ScrollPhase QWheelEvent::phase() const | - | ||||||||||||
1088 | \since 5.2 | - | ||||||||||||
1089 | - | |||||||||||||
1090 | Returns the scrolling phase of this wheel event. | - | ||||||||||||
1091 | - | |||||||||||||
1092 | \note The Qt::ScrollBegin and Qt::ScrollEnd phases are currently | - | ||||||||||||
1093 | supported only on \macos. | - | ||||||||||||
1094 | */ | - | ||||||||||||
1095 | - | |||||||||||||
1096 | - | |||||||||||||
1097 | /*! | - | ||||||||||||
1098 | \class QKeyEvent | - | ||||||||||||
1099 | \brief The QKeyEvent class describes a key event. | - | ||||||||||||
1100 | - | |||||||||||||
1101 | \ingroup events | - | ||||||||||||
1102 | \inmodule QtGui | - | ||||||||||||
1103 | - | |||||||||||||
1104 | Key events are sent to the widget with keyboard input focus | - | ||||||||||||
1105 | when keys are pressed or released. | - | ||||||||||||
1106 | - | |||||||||||||
1107 | A key event contains a special accept flag that indicates whether | - | ||||||||||||
1108 | the receiver will handle the key event. This flag is set by default | - | ||||||||||||
1109 | for QEvent::KeyPress and QEvent::KeyRelease, so there is no need to | - | ||||||||||||
1110 | call accept() when acting on a key event. For QEvent::ShortcutOverride | - | ||||||||||||
1111 | the receiver needs to explicitly accept the event to trigger the override. | - | ||||||||||||
1112 | Calling ignore() on a key event will propagate it to the parent widget. | - | ||||||||||||
1113 | The event is propagated up the parent widget chain until a widget | - | ||||||||||||
1114 | accepts it or an event filter consumes it. | - | ||||||||||||
1115 | - | |||||||||||||
1116 | The QWidget::setEnable() function can be used to enable or disable | - | ||||||||||||
1117 | mouse and keyboard events for a widget. | - | ||||||||||||
1118 | - | |||||||||||||
1119 | The event handlers QWidget::keyPressEvent(), QWidget::keyReleaseEvent(), | - | ||||||||||||
1120 | QGraphicsItem::keyPressEvent() and QGraphicsItem::keyReleaseEvent() | - | ||||||||||||
1121 | receive key events. | - | ||||||||||||
1122 | - | |||||||||||||
1123 | \sa QFocusEvent, QWidget::grabKeyboard() | - | ||||||||||||
1124 | */ | - | ||||||||||||
1125 | - | |||||||||||||
1126 | /*! | - | ||||||||||||
1127 | Constructs a key event object. | - | ||||||||||||
1128 | - | |||||||||||||
1129 | The \a type parameter must be QEvent::KeyPress, QEvent::KeyRelease, | - | ||||||||||||
1130 | or QEvent::ShortcutOverride. | - | ||||||||||||
1131 | - | |||||||||||||
1132 | Int \a key is the code for the Qt::Key that the event loop should listen | - | ||||||||||||
1133 | for. If \a key is 0, the event is not a result of a known key; for | - | ||||||||||||
1134 | example, it may be the result of a compose sequence or keyboard macro. | - | ||||||||||||
1135 | The \a modifiers holds the keyboard modifiers, and the given \a text | - | ||||||||||||
1136 | is the Unicode text that the key generated. If \a autorep is true, | - | ||||||||||||
1137 | isAutoRepeat() will be true. \a count is the number of keys involved | - | ||||||||||||
1138 | in the event. | - | ||||||||||||
1139 | */ | - | ||||||||||||
1140 | QKeyEvent::QKeyEvent(Type type, int key, Qt::KeyboardModifiers modifiers, const QString& text, | - | ||||||||||||
1141 | bool autorep, ushort count) | - | ||||||||||||
1142 | : QInputEvent(type, modifiers), txt(text), k(key), | - | ||||||||||||
1143 | nScanCode(0), nVirtualKey(0), nModifiers(0), | - | ||||||||||||
1144 | c(count), autor(autorep) | - | ||||||||||||
1145 | { | - | ||||||||||||
1146 | if (type == QEvent::ShortcutOverride)
| 0 | ||||||||||||
1147 | ignore(); never executed: ignore(); | 0 | ||||||||||||
1148 | } never executed: end of block | 0 | ||||||||||||
1149 | - | |||||||||||||
1150 | /*! | - | ||||||||||||
1151 | Constructs a key event object. | - | ||||||||||||
1152 | - | |||||||||||||
1153 | The \a type parameter must be QEvent::KeyPress, QEvent::KeyRelease, | - | ||||||||||||
1154 | or QEvent::ShortcutOverride. | - | ||||||||||||
1155 | - | |||||||||||||
1156 | Int \a key is the code for the Qt::Key that the event loop should listen | - | ||||||||||||
1157 | for. If \a key is 0, the event is not a result of a known key; for | - | ||||||||||||
1158 | example, it may be the result of a compose sequence or keyboard macro. | - | ||||||||||||
1159 | The \a modifiers holds the keyboard modifiers, and the given \a text | - | ||||||||||||
1160 | is the Unicode text that the key generated. If \a autorep is true, | - | ||||||||||||
1161 | isAutoRepeat() will be true. \a count is the number of keys involved | - | ||||||||||||
1162 | in the event. | - | ||||||||||||
1163 | - | |||||||||||||
1164 | In addition to the normal key event data, also contains \a nativeScanCode, | - | ||||||||||||
1165 | \a nativeVirtualKey and \a nativeModifiers. This extra data is used by the | - | ||||||||||||
1166 | shortcut system, to determine which shortcuts to trigger. | - | ||||||||||||
1167 | */ | - | ||||||||||||
1168 | QKeyEvent::QKeyEvent(Type type, int key, Qt::KeyboardModifiers modifiers, | - | ||||||||||||
1169 | quint32 nativeScanCode, quint32 nativeVirtualKey, quint32 nativeModifiers, | - | ||||||||||||
1170 | const QString &text, bool autorep, ushort count) | - | ||||||||||||
1171 | : QInputEvent(type, modifiers), txt(text), k(key), | - | ||||||||||||
1172 | nScanCode(nativeScanCode), nVirtualKey(nativeVirtualKey), nModifiers(nativeModifiers), | - | ||||||||||||
1173 | c(count), autor(autorep) | - | ||||||||||||
1174 | { | - | ||||||||||||
1175 | if (type == QEvent::ShortcutOverride)
| 0 | ||||||||||||
1176 | ignore(); never executed: ignore(); | 0 | ||||||||||||
1177 | } never executed: end of block | 0 | ||||||||||||
1178 | - | |||||||||||||
1179 | - | |||||||||||||
1180 | /*! | - | ||||||||||||
1181 | \internal | - | ||||||||||||
1182 | */ | - | ||||||||||||
1183 | QKeyEvent::~QKeyEvent() | - | ||||||||||||
1184 | { | - | ||||||||||||
1185 | } | - | ||||||||||||
1186 | - | |||||||||||||
1187 | /*! | - | ||||||||||||
1188 | \fn QKeyEvent *QKeyEvent::createExtendedKeyEvent(Type type, int key, Qt::KeyboardModifiers modifiers, quint32 nativeScanCode, quint32 nativeVirtualKey, quint32 nativeModifiers, const QString& text, bool autorep, ushort count) | - | ||||||||||||
1189 | \internal | - | ||||||||||||
1190 | */ | - | ||||||||||||
1191 | - | |||||||||||||
1192 | /*! | - | ||||||||||||
1193 | \fn bool QKeyEvent::hasExtendedInfo() const | - | ||||||||||||
1194 | \internal | - | ||||||||||||
1195 | */ | - | ||||||||||||
1196 | - | |||||||||||||
1197 | /*! | - | ||||||||||||
1198 | \fn quint32 QKeyEvent::nativeScanCode() const | - | ||||||||||||
1199 | \since 4.2 | - | ||||||||||||
1200 | - | |||||||||||||
1201 | Returns the native scan code of the key event. If the key event | - | ||||||||||||
1202 | does not contain this data 0 is returned. | - | ||||||||||||
1203 | - | |||||||||||||
1204 | Note: The native scan code may be 0, even if the key event contains | - | ||||||||||||
1205 | extended information. | - | ||||||||||||
1206 | - | |||||||||||||
1207 | Note: On Mac OS/X, this function is not useful, because there is no | - | ||||||||||||
1208 | way to get the scan code from Carbon or Cocoa. The function always | - | ||||||||||||
1209 | returns 1 (or 0 in the case explained above). | - | ||||||||||||
1210 | */ | - | ||||||||||||
1211 | - | |||||||||||||
1212 | /*! | - | ||||||||||||
1213 | \fn quint32 QKeyEvent::nativeVirtualKey() const | - | ||||||||||||
1214 | \since 4.2 | - | ||||||||||||
1215 | - | |||||||||||||
1216 | Returns the native virtual key, or key sym of the key event. | - | ||||||||||||
1217 | If the key event does not contain this data 0 is returned. | - | ||||||||||||
1218 | - | |||||||||||||
1219 | Note: The native virtual key may be 0, even if the key event contains extended information. | - | ||||||||||||
1220 | */ | - | ||||||||||||
1221 | - | |||||||||||||
1222 | /*! | - | ||||||||||||
1223 | \fn quint32 QKeyEvent::nativeModifiers() const | - | ||||||||||||
1224 | \since 4.2 | - | ||||||||||||
1225 | - | |||||||||||||
1226 | Returns the native modifiers of a key event. | - | ||||||||||||
1227 | If the key event does not contain this data 0 is returned. | - | ||||||||||||
1228 | - | |||||||||||||
1229 | Note: The native modifiers may be 0, even if the key event contains extended information. | - | ||||||||||||
1230 | */ | - | ||||||||||||
1231 | - | |||||||||||||
1232 | /*! | - | ||||||||||||
1233 | \fn int QKeyEvent::key() const | - | ||||||||||||
1234 | - | |||||||||||||
1235 | Returns the code of the key that was pressed or released. | - | ||||||||||||
1236 | - | |||||||||||||
1237 | See \l Qt::Key for the list of keyboard codes. These codes are | - | ||||||||||||
1238 | independent of the underlying window system. Note that this | - | ||||||||||||
1239 | function does not distinguish between capital and non-capital | - | ||||||||||||
1240 | letters, use the text() function (returning the Unicode text the | - | ||||||||||||
1241 | key generated) for this purpose. | - | ||||||||||||
1242 | - | |||||||||||||
1243 | A value of either 0 or Qt::Key_unknown means that the event is not | - | ||||||||||||
1244 | the result of a known key; for example, it may be the result of | - | ||||||||||||
1245 | a compose sequence, a keyboard macro, or due to key event | - | ||||||||||||
1246 | compression. | - | ||||||||||||
1247 | - | |||||||||||||
1248 | \sa Qt::WA_KeyCompression | - | ||||||||||||
1249 | */ | - | ||||||||||||
1250 | - | |||||||||||||
1251 | /*! | - | ||||||||||||
1252 | \fn QString QKeyEvent::text() const | - | ||||||||||||
1253 | - | |||||||||||||
1254 | Returns the Unicode text that this key generated. | - | ||||||||||||
1255 | - | |||||||||||||
1256 | Return values when modifier keys such as | - | ||||||||||||
1257 | Shift, Control, Alt, and Meta are pressed | - | ||||||||||||
1258 | differ among platforms and could return an empty string. | - | ||||||||||||
1259 | - | |||||||||||||
1260 | \note \l key() will always return a valid value, | - | ||||||||||||
1261 | independent of modifier keys. | - | ||||||||||||
1262 | - | |||||||||||||
1263 | \sa Qt::WA_KeyCompression | - | ||||||||||||
1264 | */ | - | ||||||||||||
1265 | - | |||||||||||||
1266 | /*! | - | ||||||||||||
1267 | Returns the keyboard modifier flags that existed immediately | - | ||||||||||||
1268 | after the event occurred. | - | ||||||||||||
1269 | - | |||||||||||||
1270 | \warning This function cannot always be trusted. The user can | - | ||||||||||||
1271 | confuse it by pressing both \uicontrol{Shift} keys simultaneously and | - | ||||||||||||
1272 | releasing one of them, for example. | - | ||||||||||||
1273 | - | |||||||||||||
1274 | \sa QGuiApplication::keyboardModifiers() | - | ||||||||||||
1275 | */ | - | ||||||||||||
1276 | - | |||||||||||||
1277 | Qt::KeyboardModifiers QKeyEvent::modifiers() const | - | ||||||||||||
1278 | { | - | ||||||||||||
1279 | if (key() == Qt::Key_Shift)
| 0 | ||||||||||||
1280 | return Qt::KeyboardModifiers(QInputEvent::modifiers()^Qt::ShiftModifier); never executed: return Qt::KeyboardModifiers(QInputEvent::modifiers()^Qt::ShiftModifier); | 0 | ||||||||||||
1281 | if (key() == Qt::Key_Control)
| 0 | ||||||||||||
1282 | return Qt::KeyboardModifiers(QInputEvent::modifiers()^Qt::ControlModifier); never executed: return Qt::KeyboardModifiers(QInputEvent::modifiers()^Qt::ControlModifier); | 0 | ||||||||||||
1283 | if (key() == Qt::Key_Alt)
| 0 | ||||||||||||
1284 | return Qt::KeyboardModifiers(QInputEvent::modifiers()^Qt::AltModifier); never executed: return Qt::KeyboardModifiers(QInputEvent::modifiers()^Qt::AltModifier); | 0 | ||||||||||||
1285 | if (key() == Qt::Key_Meta)
| 0 | ||||||||||||
1286 | return Qt::KeyboardModifiers(QInputEvent::modifiers()^Qt::MetaModifier); never executed: return Qt::KeyboardModifiers(QInputEvent::modifiers()^Qt::MetaModifier); | 0 | ||||||||||||
1287 | if (key() == Qt::Key_AltGr)
| 0 | ||||||||||||
1288 | return Qt::KeyboardModifiers(QInputEvent::modifiers()^Qt::GroupSwitchModifier); never executed: return Qt::KeyboardModifiers(QInputEvent::modifiers()^Qt::GroupSwitchModifier); | 0 | ||||||||||||
1289 | return QInputEvent::modifiers(); never executed: return QInputEvent::modifiers(); | 0 | ||||||||||||
1290 | } | - | ||||||||||||
1291 | - | |||||||||||||
1292 | #ifndef QT_NO_SHORTCUT | - | ||||||||||||
1293 | /*! | - | ||||||||||||
1294 | \fn bool QKeyEvent::matches(QKeySequence::StandardKey key) const | - | ||||||||||||
1295 | \since 4.2 | - | ||||||||||||
1296 | - | |||||||||||||
1297 | Returns \c true if the key event matches the given standard \a key; | - | ||||||||||||
1298 | otherwise returns \c false. | - | ||||||||||||
1299 | */ | - | ||||||||||||
1300 | bool QKeyEvent::matches(QKeySequence::StandardKey matchKey) const | - | ||||||||||||
1301 | { | - | ||||||||||||
1302 | //The keypad and group switch modifier should not make a difference | - | ||||||||||||
1303 | uint searchkey = (modifiers() | key()) & ~(Qt::KeypadModifier | Qt::GroupSwitchModifier); | - | ||||||||||||
1304 | - | |||||||||||||
1305 | const QList<QKeySequence> bindings = QKeySequence::keyBindings(matchKey); | - | ||||||||||||
1306 | return bindings.contains(QKeySequence(searchkey)); never executed: return bindings.contains(QKeySequence(searchkey)); | 0 | ||||||||||||
1307 | } | - | ||||||||||||
1308 | #endif // QT_NO_SHORTCUT | - | ||||||||||||
1309 | - | |||||||||||||
1310 | - | |||||||||||||
1311 | /*! | - | ||||||||||||
1312 | \fn bool QKeyEvent::isAutoRepeat() const | - | ||||||||||||
1313 | - | |||||||||||||
1314 | Returns \c true if this event comes from an auto-repeating key; | - | ||||||||||||
1315 | returns \c false if it comes from an initial key press. | - | ||||||||||||
1316 | - | |||||||||||||
1317 | Note that if the event is a multiple-key compressed event that is | - | ||||||||||||
1318 | partly due to auto-repeat, this function could return either true | - | ||||||||||||
1319 | or false indeterminately. | - | ||||||||||||
1320 | */ | - | ||||||||||||
1321 | - | |||||||||||||
1322 | /*! | - | ||||||||||||
1323 | \fn int QKeyEvent::count() const | - | ||||||||||||
1324 | - | |||||||||||||
1325 | Returns the number of keys involved in this event. If text() | - | ||||||||||||
1326 | is not empty, this is simply the length of the string. | - | ||||||||||||
1327 | - | |||||||||||||
1328 | \sa Qt::WA_KeyCompression | - | ||||||||||||
1329 | */ | - | ||||||||||||
1330 | - | |||||||||||||
1331 | /*! | - | ||||||||||||
1332 | \class QFocusEvent | - | ||||||||||||
1333 | \brief The QFocusEvent class contains event parameters for widget focus | - | ||||||||||||
1334 | events. | - | ||||||||||||
1335 | \inmodule QtGui | - | ||||||||||||
1336 | - | |||||||||||||
1337 | \ingroup events | - | ||||||||||||
1338 | - | |||||||||||||
1339 | Focus events are sent to widgets when the keyboard input focus | - | ||||||||||||
1340 | changes. Focus events occur due to mouse actions, key presses | - | ||||||||||||
1341 | (such as \uicontrol{Tab} or \uicontrol{Backtab}), the window system, popup | - | ||||||||||||
1342 | menus, keyboard shortcuts, or other application-specific reasons. | - | ||||||||||||
1343 | The reason for a particular focus event is returned by reason() | - | ||||||||||||
1344 | in the appropriate event handler. | - | ||||||||||||
1345 | - | |||||||||||||
1346 | The event handlers QWidget::focusInEvent(), | - | ||||||||||||
1347 | QWidget::focusOutEvent(), QGraphicsItem::focusInEvent and | - | ||||||||||||
1348 | QGraphicsItem::focusOutEvent() receive focus events. | - | ||||||||||||
1349 | - | |||||||||||||
1350 | \sa QWidget::setFocus(), QWidget::setFocusPolicy(), {Keyboard Focus in Widgets} | - | ||||||||||||
1351 | */ | - | ||||||||||||
1352 | - | |||||||||||||
1353 | /*! | - | ||||||||||||
1354 | Constructs a focus event object. | - | ||||||||||||
1355 | - | |||||||||||||
1356 | The \a type parameter must be either QEvent::FocusIn or | - | ||||||||||||
1357 | QEvent::FocusOut. The \a reason describes the cause of the change | - | ||||||||||||
1358 | in focus. | - | ||||||||||||
1359 | */ | - | ||||||||||||
1360 | QFocusEvent::QFocusEvent(Type type, Qt::FocusReason reason) | - | ||||||||||||
1361 | : QEvent(type), m_reason(reason) | - | ||||||||||||
1362 | {} never executed: end of block | 0 | ||||||||||||
1363 | - | |||||||||||||
1364 | /*! | - | ||||||||||||
1365 | \internal | - | ||||||||||||
1366 | */ | - | ||||||||||||
1367 | QFocusEvent::~QFocusEvent() | - | ||||||||||||
1368 | { | - | ||||||||||||
1369 | } | - | ||||||||||||
1370 | - | |||||||||||||
1371 | /*! | - | ||||||||||||
1372 | Returns the reason for this focus event. | - | ||||||||||||
1373 | */ | - | ||||||||||||
1374 | Qt::FocusReason QFocusEvent::reason() const | - | ||||||||||||
1375 | { | - | ||||||||||||
1376 | return m_reason; never executed: return m_reason; | 0 | ||||||||||||
1377 | } | - | ||||||||||||
1378 | - | |||||||||||||
1379 | /*! | - | ||||||||||||
1380 | \fn bool QFocusEvent::gotFocus() const | - | ||||||||||||
1381 | - | |||||||||||||
1382 | Returns \c true if type() is QEvent::FocusIn; otherwise returns | - | ||||||||||||
1383 | false. | - | ||||||||||||
1384 | */ | - | ||||||||||||
1385 | - | |||||||||||||
1386 | /*! | - | ||||||||||||
1387 | \fn bool QFocusEvent::lostFocus() const | - | ||||||||||||
1388 | - | |||||||||||||
1389 | Returns \c true if type() is QEvent::FocusOut; otherwise returns | - | ||||||||||||
1390 | false. | - | ||||||||||||
1391 | */ | - | ||||||||||||
1392 | - | |||||||||||||
1393 | - | |||||||||||||
1394 | /*! | - | ||||||||||||
1395 | \class QPaintEvent | - | ||||||||||||
1396 | \brief The QPaintEvent class contains event parameters for paint events. | - | ||||||||||||
1397 | \inmodule QtGui | - | ||||||||||||
1398 | - | |||||||||||||
1399 | \ingroup events | - | ||||||||||||
1400 | - | |||||||||||||
1401 | Paint events are sent to widgets that need to update themselves, | - | ||||||||||||
1402 | for instance when part of a widget is exposed because a covering | - | ||||||||||||
1403 | widget was moved. | - | ||||||||||||
1404 | - | |||||||||||||
1405 | The event contains a region() that needs to be updated, and a | - | ||||||||||||
1406 | rect() that is the bounding rectangle of that region. Both are | - | ||||||||||||
1407 | provided because many widgets cannot make much use of region(), | - | ||||||||||||
1408 | and rect() can be much faster than region().boundingRect(). | - | ||||||||||||
1409 | - | |||||||||||||
1410 | \section1 Automatic Clipping | - | ||||||||||||
1411 | - | |||||||||||||
1412 | Painting is clipped to region() during the processing of a paint | - | ||||||||||||
1413 | event. This clipping is performed by Qt's paint system and is | - | ||||||||||||
1414 | independent of any clipping that may be applied to a QPainter used to | - | ||||||||||||
1415 | draw on the paint device. | - | ||||||||||||
1416 | - | |||||||||||||
1417 | As a result, the value returned by QPainter::clipRegion() on | - | ||||||||||||
1418 | a newly-constructed QPainter will not reflect the clip region that is | - | ||||||||||||
1419 | used by the paint system. | - | ||||||||||||
1420 | - | |||||||||||||
1421 | \sa QPainter, QWidget::update(), QWidget::repaint(), | - | ||||||||||||
1422 | QWidget::paintEvent() | - | ||||||||||||
1423 | */ | - | ||||||||||||
1424 | - | |||||||||||||
1425 | /*! | - | ||||||||||||
1426 | Constructs a paint event object with the region that needs to | - | ||||||||||||
1427 | be updated. The region is specified by \a paintRegion. | - | ||||||||||||
1428 | */ | - | ||||||||||||
1429 | QPaintEvent::QPaintEvent(const QRegion& paintRegion) | - | ||||||||||||
1430 | : QEvent(Paint), m_rect(paintRegion.boundingRect()), m_region(paintRegion), m_erased(false) | - | ||||||||||||
1431 | {} never executed: end of block | 0 | ||||||||||||
1432 | - | |||||||||||||
1433 | /*! | - | ||||||||||||
1434 | Constructs a paint event object with the rectangle that needs | - | ||||||||||||
1435 | to be updated. The region is specified by \a paintRect. | - | ||||||||||||
1436 | */ | - | ||||||||||||
1437 | QPaintEvent::QPaintEvent(const QRect &paintRect) | - | ||||||||||||
1438 | : QEvent(Paint), m_rect(paintRect),m_region(paintRect), m_erased(false) | - | ||||||||||||
1439 | {} never executed: end of block | 0 | ||||||||||||
1440 | - | |||||||||||||
1441 | - | |||||||||||||
1442 | /*! | - | ||||||||||||
1443 | \internal | - | ||||||||||||
1444 | */ | - | ||||||||||||
1445 | QPaintEvent::~QPaintEvent() | - | ||||||||||||
1446 | { | - | ||||||||||||
1447 | } | - | ||||||||||||
1448 | - | |||||||||||||
1449 | /*! | - | ||||||||||||
1450 | \fn const QRect &QPaintEvent::rect() const | - | ||||||||||||
1451 | - | |||||||||||||
1452 | Returns the rectangle that needs to be updated. | - | ||||||||||||
1453 | - | |||||||||||||
1454 | \sa region(), QPainter::setClipRect() | - | ||||||||||||
1455 | */ | - | ||||||||||||
1456 | - | |||||||||||||
1457 | /*! | - | ||||||||||||
1458 | \fn const QRegion &QPaintEvent::region() const | - | ||||||||||||
1459 | - | |||||||||||||
1460 | Returns the region that needs to be updated. | - | ||||||||||||
1461 | - | |||||||||||||
1462 | \sa rect(), QPainter::setClipRegion() | - | ||||||||||||
1463 | */ | - | ||||||||||||
1464 | - | |||||||||||||
1465 | - | |||||||||||||
1466 | /*! | - | ||||||||||||
1467 | \class QMoveEvent | - | ||||||||||||
1468 | \brief The QMoveEvent class contains event parameters for move events. | - | ||||||||||||
1469 | \inmodule QtGui | - | ||||||||||||
1470 | - | |||||||||||||
1471 | \ingroup events | - | ||||||||||||
1472 | - | |||||||||||||
1473 | Move events are sent to widgets that have been moved to a new | - | ||||||||||||
1474 | position relative to their parent. | - | ||||||||||||
1475 | - | |||||||||||||
1476 | The event handler QWidget::moveEvent() receives move events. | - | ||||||||||||
1477 | - | |||||||||||||
1478 | \sa QWidget::move(), QWidget::setGeometry() | - | ||||||||||||
1479 | */ | - | ||||||||||||
1480 | - | |||||||||||||
1481 | /*! | - | ||||||||||||
1482 | Constructs a move event with the new and old widget positions, | - | ||||||||||||
1483 | \a pos and \a oldPos respectively. | - | ||||||||||||
1484 | */ | - | ||||||||||||
1485 | QMoveEvent::QMoveEvent(const QPoint &pos, const QPoint &oldPos) | - | ||||||||||||
1486 | : QEvent(Move), p(pos), oldp(oldPos) | - | ||||||||||||
1487 | {} never executed: end of block | 0 | ||||||||||||
1488 | - | |||||||||||||
1489 | /*! | - | ||||||||||||
1490 | \internal | - | ||||||||||||
1491 | */ | - | ||||||||||||
1492 | QMoveEvent::~QMoveEvent() | - | ||||||||||||
1493 | { | - | ||||||||||||
1494 | } | - | ||||||||||||
1495 | - | |||||||||||||
1496 | /*! | - | ||||||||||||
1497 | \fn const QPoint &QMoveEvent::pos() const | - | ||||||||||||
1498 | - | |||||||||||||
1499 | Returns the new position of the widget. This excludes the window | - | ||||||||||||
1500 | frame for top level widgets. | - | ||||||||||||
1501 | */ | - | ||||||||||||
1502 | - | |||||||||||||
1503 | /*! | - | ||||||||||||
1504 | \fn const QPoint &QMoveEvent::oldPos() const | - | ||||||||||||
1505 | - | |||||||||||||
1506 | Returns the old position of the widget. | - | ||||||||||||
1507 | */ | - | ||||||||||||
1508 | - | |||||||||||||
1509 | /*! | - | ||||||||||||
1510 | \class QExposeEvent | - | ||||||||||||
1511 | \since 5.0 | - | ||||||||||||
1512 | \brief The QExposeEvent class contains event parameters for expose events. | - | ||||||||||||
1513 | \inmodule QtGui | - | ||||||||||||
1514 | - | |||||||||||||
1515 | \ingroup events | - | ||||||||||||
1516 | - | |||||||||||||
1517 | Expose events are sent to windows when an area of the window is invalidated | - | ||||||||||||
1518 | or window visibility in the windowing system changes. | - | ||||||||||||
1519 | - | |||||||||||||
1520 | The event handler QWindow::exposeEvent() receives expose events. | - | ||||||||||||
1521 | */ | - | ||||||||||||
1522 | - | |||||||||||||
1523 | /*! | - | ||||||||||||
1524 | Constructs an expose event for the given \a exposeRegion which must be | - | ||||||||||||
1525 | in local coordinates. | - | ||||||||||||
1526 | */ | - | ||||||||||||
1527 | QExposeEvent::QExposeEvent(const QRegion &exposeRegion) | - | ||||||||||||
1528 | : QEvent(Expose) | - | ||||||||||||
1529 | , rgn(exposeRegion) | - | ||||||||||||
1530 | { | - | ||||||||||||
1531 | } never executed: end of block | 0 | ||||||||||||
1532 | - | |||||||||||||
1533 | /*! | - | ||||||||||||
1534 | \internal | - | ||||||||||||
1535 | */ | - | ||||||||||||
1536 | QExposeEvent::~QExposeEvent() | - | ||||||||||||
1537 | { | - | ||||||||||||
1538 | } | - | ||||||||||||
1539 | - | |||||||||||||
1540 | /*! | - | ||||||||||||
1541 | \class QPlatformSurfaceEvent | - | ||||||||||||
1542 | \since 5.5 | - | ||||||||||||
1543 | \brief The QPlatformSurfaceEvent class is used to notify about native platform surface events. | - | ||||||||||||
1544 | \inmodule QtGui | - | ||||||||||||
1545 | - | |||||||||||||
1546 | \ingroup events | - | ||||||||||||
1547 | - | |||||||||||||
1548 | Platform window events are synchronously sent to windows and offscreen surfaces when their | - | ||||||||||||
1549 | underlying native surfaces are created or are about to be destroyed. | - | ||||||||||||
1550 | - | |||||||||||||
1551 | Applications can respond to these events to know when the underlying platform | - | ||||||||||||
1552 | surface exists. | - | ||||||||||||
1553 | */ | - | ||||||||||||
1554 | - | |||||||||||||
1555 | /*! | - | ||||||||||||
1556 | \enum QPlatformSurfaceEvent::SurfaceEventType | - | ||||||||||||
1557 | - | |||||||||||||
1558 | This enum describes the type of platform surface event. The possible types are: | - | ||||||||||||
1559 | - | |||||||||||||
1560 | \value SurfaceCreated The underlying native surface has been created | - | ||||||||||||
1561 | \value SurfaceAboutToBeDestroyed The underlying native surface will be destroyed immediately after this event | - | ||||||||||||
1562 | - | |||||||||||||
1563 | The \c SurfaceAboutToBeDestroyed event type is useful as a means of stopping rendering to | - | ||||||||||||
1564 | a platform window before it is destroyed. | - | ||||||||||||
1565 | */ | - | ||||||||||||
1566 | - | |||||||||||||
1567 | /*! | - | ||||||||||||
1568 | \fn QPlatformSurfaceEvent::SurfaceEventType QPlatformSurfaceEvent::surfaceEventType() const | - | ||||||||||||
1569 | - | |||||||||||||
1570 | Returns the specific type of platform surface event. | - | ||||||||||||
1571 | */ | - | ||||||||||||
1572 | - | |||||||||||||
1573 | /*! | - | ||||||||||||
1574 | Constructs a platform surface event for the given \a surfaceEventType. | - | ||||||||||||
1575 | */ | - | ||||||||||||
1576 | QPlatformSurfaceEvent::QPlatformSurfaceEvent(SurfaceEventType surfaceEventType) | - | ||||||||||||
1577 | : QEvent(PlatformSurface) | - | ||||||||||||
1578 | , m_surfaceEventType(surfaceEventType) | - | ||||||||||||
1579 | { | - | ||||||||||||
1580 | } never executed: end of block | 0 | ||||||||||||
1581 | - | |||||||||||||
1582 | /*! | - | ||||||||||||
1583 | \internal | - | ||||||||||||
1584 | */ | - | ||||||||||||
1585 | QPlatformSurfaceEvent::~QPlatformSurfaceEvent() | - | ||||||||||||
1586 | { | - | ||||||||||||
1587 | } | - | ||||||||||||
1588 | - | |||||||||||||
1589 | /*! | - | ||||||||||||
1590 | \fn const QRegion &QExposeEvent::region() const | - | ||||||||||||
1591 | - | |||||||||||||
1592 | Returns the window area that has been exposed. The region is given in local coordinates. | - | ||||||||||||
1593 | */ | - | ||||||||||||
1594 | - | |||||||||||||
1595 | /*! | - | ||||||||||||
1596 | \class QResizeEvent | - | ||||||||||||
1597 | \brief The QResizeEvent class contains event parameters for resize events. | - | ||||||||||||
1598 | \inmodule QtGui | - | ||||||||||||
1599 | - | |||||||||||||
1600 | \ingroup events | - | ||||||||||||
1601 | - | |||||||||||||
1602 | Resize events are sent to widgets that have been resized. | - | ||||||||||||
1603 | - | |||||||||||||
1604 | The event handler QWidget::resizeEvent() receives resize events. | - | ||||||||||||
1605 | - | |||||||||||||
1606 | \sa QWidget::resize(), QWidget::setGeometry() | - | ||||||||||||
1607 | */ | - | ||||||||||||
1608 | - | |||||||||||||
1609 | /*! | - | ||||||||||||
1610 | Constructs a resize event with the new and old widget sizes, \a | - | ||||||||||||
1611 | size and \a oldSize respectively. | - | ||||||||||||
1612 | */ | - | ||||||||||||
1613 | QResizeEvent::QResizeEvent(const QSize &size, const QSize &oldSize) | - | ||||||||||||
1614 | : QEvent(Resize), s(size), olds(oldSize) | - | ||||||||||||
1615 | {} never executed: end of block | 0 | ||||||||||||
1616 | - | |||||||||||||
1617 | /*! | - | ||||||||||||
1618 | \internal | - | ||||||||||||
1619 | */ | - | ||||||||||||
1620 | QResizeEvent::~QResizeEvent() | - | ||||||||||||
1621 | { | - | ||||||||||||
1622 | } | - | ||||||||||||
1623 | - | |||||||||||||
1624 | /*! | - | ||||||||||||
1625 | \fn const QSize &QResizeEvent::size() const | - | ||||||||||||
1626 | - | |||||||||||||
1627 | Returns the new size of the widget. This is the same as | - | ||||||||||||
1628 | QWidget::size(). | - | ||||||||||||
1629 | */ | - | ||||||||||||
1630 | - | |||||||||||||
1631 | /*! | - | ||||||||||||
1632 | \fn const QSize &QResizeEvent::oldSize() const | - | ||||||||||||
1633 | - | |||||||||||||
1634 | Returns the old size of the widget. | - | ||||||||||||
1635 | */ | - | ||||||||||||
1636 | - | |||||||||||||
1637 | - | |||||||||||||
1638 | /*! | - | ||||||||||||
1639 | \class QCloseEvent | - | ||||||||||||
1640 | \brief The QCloseEvent class contains parameters that describe a close event. | - | ||||||||||||
1641 | - | |||||||||||||
1642 | \ingroup events | - | ||||||||||||
1643 | \inmodule QtGui | - | ||||||||||||
1644 | - | |||||||||||||
1645 | Close events are sent to widgets that the user wants to close, | - | ||||||||||||
1646 | usually by choosing "Close" from the window menu, or by clicking | - | ||||||||||||
1647 | the \uicontrol{X} title bar button. They are also sent when you call | - | ||||||||||||
1648 | QWidget::close() to close a widget programmatically. | - | ||||||||||||
1649 | - | |||||||||||||
1650 | Close events contain a flag that indicates whether the receiver | - | ||||||||||||
1651 | wants the widget to be closed or not. When a widget accepts the | - | ||||||||||||
1652 | close event, it is hidden (and destroyed if it was created with | - | ||||||||||||
1653 | the Qt::WA_DeleteOnClose flag). If it refuses to accept the close | - | ||||||||||||
1654 | event nothing happens. (Under X11 it is possible that the window | - | ||||||||||||
1655 | manager will forcibly close the window; but at the time of writing | - | ||||||||||||
1656 | we are not aware of any window manager that does this.) | - | ||||||||||||
1657 | - | |||||||||||||
1658 | The event handler QWidget::closeEvent() receives close events. The | - | ||||||||||||
1659 | default implementation of this event handler accepts the close | - | ||||||||||||
1660 | event. If you do not want your widget to be hidden, or want some | - | ||||||||||||
1661 | special handling, you should reimplement the event handler and | - | ||||||||||||
1662 | ignore() the event. | - | ||||||||||||
1663 | - | |||||||||||||
1664 | The \l{mainwindows/application#close event handler}{closeEvent() in the | - | ||||||||||||
1665 | Application example} shows a close event handler that | - | ||||||||||||
1666 | asks whether to save a document before closing. | - | ||||||||||||
1667 | - | |||||||||||||
1668 | If you want the widget to be deleted when it is closed, create it | - | ||||||||||||
1669 | with the Qt::WA_DeleteOnClose flag. This is very useful for | - | ||||||||||||
1670 | independent top-level windows in a multi-window application. | - | ||||||||||||
1671 | - | |||||||||||||
1672 | \l{QObject}s emits the \l{QObject::destroyed()}{destroyed()} | - | ||||||||||||
1673 | signal when they are deleted. | - | ||||||||||||
1674 | - | |||||||||||||
1675 | If the last top-level window is closed, the | - | ||||||||||||
1676 | QGuiApplication::lastWindowClosed() signal is emitted. | - | ||||||||||||
1677 | - | |||||||||||||
1678 | The isAccepted() function returns \c true if the event's receiver has | - | ||||||||||||
1679 | agreed to close the widget; call accept() to agree to close the | - | ||||||||||||
1680 | widget and call ignore() if the receiver of this event does not | - | ||||||||||||
1681 | want the widget to be closed. | - | ||||||||||||
1682 | - | |||||||||||||
1683 | \sa QWidget::close(), QWidget::hide(), QObject::destroyed(), | - | ||||||||||||
1684 | QCoreApplication::exec(), QCoreApplication::quit(), | - | ||||||||||||
1685 | QGuiApplication::lastWindowClosed() | - | ||||||||||||
1686 | */ | - | ||||||||||||
1687 | - | |||||||||||||
1688 | /*! | - | ||||||||||||
1689 | Constructs a close event object. | - | ||||||||||||
1690 | - | |||||||||||||
1691 | \sa accept() | - | ||||||||||||
1692 | */ | - | ||||||||||||
1693 | QCloseEvent::QCloseEvent() | - | ||||||||||||
1694 | : QEvent(Close) | - | ||||||||||||
1695 | {} never executed: end of block | 0 | ||||||||||||
1696 | - | |||||||||||||
1697 | /*! \internal | - | ||||||||||||
1698 | */ | - | ||||||||||||
1699 | QCloseEvent::~QCloseEvent() | - | ||||||||||||
1700 | { | - | ||||||||||||
1701 | } | - | ||||||||||||
1702 | - | |||||||||||||
1703 | /*! | - | ||||||||||||
1704 | \class QIconDragEvent | - | ||||||||||||
1705 | \brief The QIconDragEvent class indicates that a main icon drag has begun. | - | ||||||||||||
1706 | \inmodule QtGui | - | ||||||||||||
1707 | - | |||||||||||||
1708 | \ingroup events | - | ||||||||||||
1709 | - | |||||||||||||
1710 | Icon drag events are sent to widgets when the main icon of a window | - | ||||||||||||
1711 | has been dragged away. On \macos, this happens when the proxy | - | ||||||||||||
1712 | icon of a window is dragged off the title bar. | - | ||||||||||||
1713 | - | |||||||||||||
1714 | It is normal to begin using drag and drop in response to this | - | ||||||||||||
1715 | event. | - | ||||||||||||
1716 | - | |||||||||||||
1717 | \sa {Drag and Drop}, QMimeData, QDrag | - | ||||||||||||
1718 | */ | - | ||||||||||||
1719 | - | |||||||||||||
1720 | /*! | - | ||||||||||||
1721 | Constructs an icon drag event object with the accept flag set to | - | ||||||||||||
1722 | false. | - | ||||||||||||
1723 | - | |||||||||||||
1724 | \sa accept() | - | ||||||||||||
1725 | */ | - | ||||||||||||
1726 | QIconDragEvent::QIconDragEvent() | - | ||||||||||||
1727 | : QEvent(IconDrag) | - | ||||||||||||
1728 | { never executed: ignore(); }end of block never executed: end of block | 0 | ||||||||||||
1729 | - | |||||||||||||
1730 | /*! \internal */ | - | ||||||||||||
1731 | QIconDragEvent::~QIconDragEvent() | - | ||||||||||||
1732 | { | - | ||||||||||||
1733 | } | - | ||||||||||||
1734 | - | |||||||||||||
1735 | /*! | - | ||||||||||||
1736 | \class QContextMenuEvent | - | ||||||||||||
1737 | \brief The QContextMenuEvent class contains parameters that describe a context menu event. | - | ||||||||||||
1738 | \inmodule QtGui | - | ||||||||||||
1739 | - | |||||||||||||
1740 | \ingroup events | - | ||||||||||||
1741 | - | |||||||||||||
1742 | Context menu events are sent to widgets when a user performs | - | ||||||||||||
1743 | an action associated with opening a context menu. | - | ||||||||||||
1744 | The actions required to open context menus vary between platforms; | - | ||||||||||||
1745 | for example, on Windows, pressing the menu button or clicking the | - | ||||||||||||
1746 | right mouse button will cause this event to be sent. | - | ||||||||||||
1747 | - | |||||||||||||
1748 | When this event occurs it is customary to show a QMenu with a | - | ||||||||||||
1749 | context menu, if this is relevant to the context. | - | ||||||||||||
1750 | - | |||||||||||||
1751 | Context menu events contain a special accept flag that indicates | - | ||||||||||||
1752 | whether the receiver accepted the event. If the event handler does | - | ||||||||||||
1753 | not accept the event then, if possible, whatever triggered the event will be | - | ||||||||||||
1754 | handled as a regular input event. | - | ||||||||||||
1755 | */ | - | ||||||||||||
1756 | - | |||||||||||||
1757 | #ifndef QT_NO_CONTEXTMENU | - | ||||||||||||
1758 | /*! | - | ||||||||||||
1759 | Constructs a context menu event object with the accept parameter | - | ||||||||||||
1760 | flag set to false. | - | ||||||||||||
1761 | - | |||||||||||||
1762 | The \a reason parameter must be QContextMenuEvent::Mouse or | - | ||||||||||||
1763 | QContextMenuEvent::Keyboard. | - | ||||||||||||
1764 | - | |||||||||||||
1765 | The \a pos parameter specifies the mouse position relative to the | - | ||||||||||||
1766 | receiving widget. \a globalPos is the mouse position in absolute | - | ||||||||||||
1767 | coordinates. | - | ||||||||||||
1768 | */ | - | ||||||||||||
1769 | QContextMenuEvent::QContextMenuEvent(Reason reason, const QPoint &pos, const QPoint &globalPos) | - | ||||||||||||
1770 | : QInputEvent(ContextMenu), p(pos), gp(globalPos), reas(reason) | - | ||||||||||||
1771 | {} never executed: end of block | 0 | ||||||||||||
1772 | - | |||||||||||||
1773 | /*! | - | ||||||||||||
1774 | Constructs a context menu event object with the accept parameter | - | ||||||||||||
1775 | flag set to false. | - | ||||||||||||
1776 | - | |||||||||||||
1777 | The \a reason parameter must be QContextMenuEvent::Mouse or | - | ||||||||||||
1778 | QContextMenuEvent::Keyboard. | - | ||||||||||||
1779 | - | |||||||||||||
1780 | The \a pos parameter specifies the mouse position relative to the | - | ||||||||||||
1781 | receiving widget. \a globalPos is the mouse position in absolute | - | ||||||||||||
1782 | coordinates. The \a modifiers holds the keyboard modifiers. | - | ||||||||||||
1783 | */ | - | ||||||||||||
1784 | QContextMenuEvent::QContextMenuEvent(Reason reason, const QPoint &pos, const QPoint &globalPos, | - | ||||||||||||
1785 | Qt::KeyboardModifiers modifiers) | - | ||||||||||||
1786 | : QInputEvent(ContextMenu, modifiers), p(pos), gp(globalPos), reas(reason) | - | ||||||||||||
1787 | {} never executed: end of block | 0 | ||||||||||||
1788 | - | |||||||||||||
1789 | - | |||||||||||||
1790 | /*! \internal */ | - | ||||||||||||
1791 | QContextMenuEvent::~QContextMenuEvent() | - | ||||||||||||
1792 | { | - | ||||||||||||
1793 | } | - | ||||||||||||
1794 | /*! | - | ||||||||||||
1795 | Constructs a context menu event object with the accept parameter | - | ||||||||||||
1796 | flag set to false. | - | ||||||||||||
1797 | - | |||||||||||||
1798 | The \a reason parameter must be QContextMenuEvent::Mouse or | - | ||||||||||||
1799 | QContextMenuEvent::Keyboard. | - | ||||||||||||
1800 | - | |||||||||||||
1801 | The \a pos parameter specifies the mouse position relative to the | - | ||||||||||||
1802 | receiving widget. | - | ||||||||||||
1803 | - | |||||||||||||
1804 | The globalPos() is initialized to QCursor::pos(), which may not be | - | ||||||||||||
1805 | appropriate. Use the other constructor to specify the global | - | ||||||||||||
1806 | position explicitly. | - | ||||||||||||
1807 | */ | - | ||||||||||||
1808 | QContextMenuEvent::QContextMenuEvent(Reason reason, const QPoint &pos) | - | ||||||||||||
1809 | : QInputEvent(ContextMenu), p(pos), reas(reason) | - | ||||||||||||
1810 | { | - | ||||||||||||
1811 | #ifndef QT_NO_CURSOR | - | ||||||||||||
1812 | gp = QCursor::pos(); | - | ||||||||||||
1813 | #endif | - | ||||||||||||
1814 | } never executed: end of block | 0 | ||||||||||||
1815 | - | |||||||||||||
1816 | /*! | - | ||||||||||||
1817 | \fn const QPoint &QContextMenuEvent::pos() const | - | ||||||||||||
1818 | - | |||||||||||||
1819 | Returns the position of the mouse pointer relative to the widget | - | ||||||||||||
1820 | that received the event. | - | ||||||||||||
1821 | - | |||||||||||||
1822 | \sa x(), y(), globalPos() | - | ||||||||||||
1823 | */ | - | ||||||||||||
1824 | - | |||||||||||||
1825 | /*! | - | ||||||||||||
1826 | \fn int QContextMenuEvent::x() const | - | ||||||||||||
1827 | - | |||||||||||||
1828 | Returns the x position of the mouse pointer, relative to the | - | ||||||||||||
1829 | widget that received the event. | - | ||||||||||||
1830 | - | |||||||||||||
1831 | \sa y(), pos() | - | ||||||||||||
1832 | */ | - | ||||||||||||
1833 | - | |||||||||||||
1834 | /*! | - | ||||||||||||
1835 | \fn int QContextMenuEvent::y() const | - | ||||||||||||
1836 | - | |||||||||||||
1837 | Returns the y position of the mouse pointer, relative to the | - | ||||||||||||
1838 | widget that received the event. | - | ||||||||||||
1839 | - | |||||||||||||
1840 | \sa x(), pos() | - | ||||||||||||
1841 | */ | - | ||||||||||||
1842 | - | |||||||||||||
1843 | /*! | - | ||||||||||||
1844 | \fn const QPoint &QContextMenuEvent::globalPos() const | - | ||||||||||||
1845 | - | |||||||||||||
1846 | Returns the global position of the mouse pointer at the time of | - | ||||||||||||
1847 | the event. | - | ||||||||||||
1848 | - | |||||||||||||
1849 | \sa x(), y(), pos() | - | ||||||||||||
1850 | */ | - | ||||||||||||
1851 | - | |||||||||||||
1852 | /*! | - | ||||||||||||
1853 | \fn int QContextMenuEvent::globalX() const | - | ||||||||||||
1854 | - | |||||||||||||
1855 | Returns the global x position of the mouse pointer at the time of | - | ||||||||||||
1856 | the event. | - | ||||||||||||
1857 | - | |||||||||||||
1858 | \sa globalY(), globalPos() | - | ||||||||||||
1859 | */ | - | ||||||||||||
1860 | - | |||||||||||||
1861 | /*! | - | ||||||||||||
1862 | \fn int QContextMenuEvent::globalY() const | - | ||||||||||||
1863 | - | |||||||||||||
1864 | Returns the global y position of the mouse pointer at the time of | - | ||||||||||||
1865 | the event. | - | ||||||||||||
1866 | - | |||||||||||||
1867 | \sa globalX(), globalPos() | - | ||||||||||||
1868 | */ | - | ||||||||||||
1869 | #endif // QT_NO_CONTEXTMENU | - | ||||||||||||
1870 | - | |||||||||||||
1871 | /*! | - | ||||||||||||
1872 | \enum QContextMenuEvent::Reason | - | ||||||||||||
1873 | - | |||||||||||||
1874 | This enum describes the reason why the event was sent. | - | ||||||||||||
1875 | - | |||||||||||||
1876 | \value Mouse The mouse caused the event to be sent. Normally this | - | ||||||||||||
1877 | means the right mouse button was clicked, but this is platform | - | ||||||||||||
1878 | dependent. | - | ||||||||||||
1879 | - | |||||||||||||
1880 | \value Keyboard The keyboard caused this event to be sent. On | - | ||||||||||||
1881 | Windows, this means the menu button was pressed. | - | ||||||||||||
1882 | - | |||||||||||||
1883 | \value Other The event was sent by some other means (i.e. not by | - | ||||||||||||
1884 | the mouse or keyboard). | - | ||||||||||||
1885 | */ | - | ||||||||||||
1886 | - | |||||||||||||
1887 | - | |||||||||||||
1888 | /*! | - | ||||||||||||
1889 | \fn QContextMenuEvent::Reason QContextMenuEvent::reason() const | - | ||||||||||||
1890 | - | |||||||||||||
1891 | Returns the reason for this context event. | - | ||||||||||||
1892 | */ | - | ||||||||||||
1893 | - | |||||||||||||
1894 | - | |||||||||||||
1895 | /*! | - | ||||||||||||
1896 | \class QInputMethodEvent | - | ||||||||||||
1897 | \brief The QInputMethodEvent class provides parameters for input method events. | - | ||||||||||||
1898 | \inmodule QtGui | - | ||||||||||||
1899 | - | |||||||||||||
1900 | \ingroup events | - | ||||||||||||
1901 | - | |||||||||||||
1902 | Input method events are sent to widgets when an input method is | - | ||||||||||||
1903 | used to enter text into a widget. Input methods are widely used | - | ||||||||||||
1904 | to enter text for languages with non-Latin alphabets. | - | ||||||||||||
1905 | - | |||||||||||||
1906 | Note that when creating custom text editing widgets, the | - | ||||||||||||
1907 | Qt::WA_InputMethodEnabled window attribute must be set explicitly | - | ||||||||||||
1908 | (using the QWidget::setAttribute() function) in order to receive | - | ||||||||||||
1909 | input method events. | - | ||||||||||||
1910 | - | |||||||||||||
1911 | The events are of interest to authors of keyboard entry widgets | - | ||||||||||||
1912 | who want to be able to correctly handle languages with complex | - | ||||||||||||
1913 | character input. Text input in such languages is usually a three | - | ||||||||||||
1914 | step process: | - | ||||||||||||
1915 | - | |||||||||||||
1916 | \list 1 | - | ||||||||||||
1917 | \li \b{Starting to Compose} | - | ||||||||||||
1918 | - | |||||||||||||
1919 | When the user presses the first key on a keyboard, an input | - | ||||||||||||
1920 | context is created. This input context will contain a string | - | ||||||||||||
1921 | of the typed characters. | - | ||||||||||||
1922 | - | |||||||||||||
1923 | \li \b{Composing} | - | ||||||||||||
1924 | - | |||||||||||||
1925 | With every new key pressed, the input method will try to create a | - | ||||||||||||
1926 | matching string for the text typed so far called preedit | - | ||||||||||||
1927 | string. While the input context is active, the user can only move | - | ||||||||||||
1928 | the cursor inside the string belonging to this input context. | - | ||||||||||||
1929 | - | |||||||||||||
1930 | \li \b{Completing} | - | ||||||||||||
1931 | - | |||||||||||||
1932 | At some point, the user will activate a user interface component | - | ||||||||||||
1933 | (perhaps using a particular key) where they can choose from a | - | ||||||||||||
1934 | number of strings matching the text they have typed so far. The | - | ||||||||||||
1935 | user can either confirm their choice cancel the input; in either | - | ||||||||||||
1936 | case the input context will be closed. | - | ||||||||||||
1937 | \endlist | - | ||||||||||||
1938 | - | |||||||||||||
1939 | QInputMethodEvent models these three stages, and transfers the | - | ||||||||||||
1940 | information needed to correctly render the intermediate result. A | - | ||||||||||||
1941 | QInputMethodEvent has two main parameters: preeditString() and | - | ||||||||||||
1942 | commitString(). The preeditString() parameter gives the currently | - | ||||||||||||
1943 | active preedit string. The commitString() parameter gives a text | - | ||||||||||||
1944 | that should get added to (or replace parts of) the text of the | - | ||||||||||||
1945 | editor widget. It usually is a result of the input operations and | - | ||||||||||||
1946 | has to be inserted to the widgets text directly before the preedit | - | ||||||||||||
1947 | string. | - | ||||||||||||
1948 | - | |||||||||||||
1949 | If the commitString() should replace parts of the of the text in | - | ||||||||||||
1950 | the editor, replacementLength() will contain the number of | - | ||||||||||||
1951 | characters to be replaced. replacementStart() contains the position | - | ||||||||||||
1952 | at which characters are to be replaced relative from the start of | - | ||||||||||||
1953 | the preedit string. | - | ||||||||||||
1954 | - | |||||||||||||
1955 | A number of attributes control the visual appearance of the | - | ||||||||||||
1956 | preedit string (the visual appearance of text outside the preedit | - | ||||||||||||
1957 | string is controlled by the widget only). The AttributeType enum | - | ||||||||||||
1958 | describes the different attributes that can be set. | - | ||||||||||||
1959 | - | |||||||||||||
1960 | A class implementing QWidget::inputMethodEvent() or | - | ||||||||||||
1961 | QGraphicsItem::inputMethodEvent() should at least understand and | - | ||||||||||||
1962 | honor the \l TextFormat and \l Cursor attributes. | - | ||||||||||||
1963 | - | |||||||||||||
1964 | Since input methods need to be able to query certain properties | - | ||||||||||||
1965 | from the widget or graphics item, subclasses must also implement | - | ||||||||||||
1966 | QWidget::inputMethodQuery() and QGraphicsItem::inputMethodQuery(), | - | ||||||||||||
1967 | respectively. | - | ||||||||||||
1968 | - | |||||||||||||
1969 | When receiving an input method event, the text widget has to performs the | - | ||||||||||||
1970 | following steps: | - | ||||||||||||
1971 | - | |||||||||||||
1972 | \list 1 | - | ||||||||||||
1973 | \li If the widget has selected text, the selected text should get | - | ||||||||||||
1974 | removed. | - | ||||||||||||
1975 | - | |||||||||||||
1976 | \li Remove the text starting at replacementStart() with length | - | ||||||||||||
1977 | replacementLength() and replace it by the commitString(). If | - | ||||||||||||
1978 | replacementLength() is 0, replacementStart() gives the insertion | - | ||||||||||||
1979 | position for the commitString(). | - | ||||||||||||
1980 | - | |||||||||||||
1981 | When doing replacement the area of the preedit | - | ||||||||||||
1982 | string is ignored, thus a replacement starting at -1 with a length | - | ||||||||||||
1983 | of 2 will remove the last character before the preedit string and | - | ||||||||||||
1984 | the first character afterwards, and insert the commit string | - | ||||||||||||
1985 | directly before the preedit string. | - | ||||||||||||
1986 | - | |||||||||||||
1987 | If the widget implements undo/redo, this operation gets added to | - | ||||||||||||
1988 | the undo stack. | - | ||||||||||||
1989 | - | |||||||||||||
1990 | \li If there is no current preedit string, insert the | - | ||||||||||||
1991 | preeditString() at the current cursor position; otherwise replace | - | ||||||||||||
1992 | the previous preeditString with the one received from this event. | - | ||||||||||||
1993 | - | |||||||||||||
1994 | If the widget implements undo/redo, the preeditString() should not | - | ||||||||||||
1995 | influence the undo/redo stack in any way. | - | ||||||||||||
1996 | - | |||||||||||||
1997 | The widget should examine the list of attributes to apply to the | - | ||||||||||||
1998 | preedit string. It has to understand at least the TextFormat and | - | ||||||||||||
1999 | Cursor attributes and render them as specified. | - | ||||||||||||
2000 | \endlist | - | ||||||||||||
2001 | - | |||||||||||||
2002 | \sa QInputMethod | - | ||||||||||||
2003 | */ | - | ||||||||||||
2004 | - | |||||||||||||
2005 | /*! | - | ||||||||||||
2006 | \enum QInputMethodEvent::AttributeType | - | ||||||||||||
2007 | - | |||||||||||||
2008 | \value TextFormat | - | ||||||||||||
2009 | A QTextCharFormat for the part of the preedit string specified by | - | ||||||||||||
2010 | start and length. value contains a QVariant of type QTextFormat | - | ||||||||||||
2011 | specifying rendering of this part of the preedit string. There | - | ||||||||||||
2012 | should be at most one format for every part of the preedit | - | ||||||||||||
2013 | string. If several are specified for any character in the string the | - | ||||||||||||
2014 | behaviour is undefined. A conforming implementation has to at least | - | ||||||||||||
2015 | honor the backgroundColor, textColor and fontUnderline properties | - | ||||||||||||
2016 | of the format. | - | ||||||||||||
2017 | - | |||||||||||||
2018 | \value Cursor If set, a cursor should be shown inside the preedit | - | ||||||||||||
2019 | string at position start. The length variable determines whether | - | ||||||||||||
2020 | the cursor is visible or not. If the length is 0 the cursor is | - | ||||||||||||
2021 | invisible. If value is a QVariant of type QColor this color will | - | ||||||||||||
2022 | be used for rendering the cursor, otherwise the color of the | - | ||||||||||||
2023 | surrounding text will be used. There should be at most one Cursor | - | ||||||||||||
2024 | attribute per event. If several are specified the behaviour is | - | ||||||||||||
2025 | undefined. | - | ||||||||||||
2026 | - | |||||||||||||
2027 | \value Language | - | ||||||||||||
2028 | The variant contains a QLocale object specifying the language of a | - | ||||||||||||
2029 | certain part of the preedit string. There should be at most one | - | ||||||||||||
2030 | language set for every part of the preedit string. If several are | - | ||||||||||||
2031 | specified for any character in the string the behavior is undefined. | - | ||||||||||||
2032 | - | |||||||||||||
2033 | \value Ruby | - | ||||||||||||
2034 | The ruby text for a part of the preedit string. There should be at | - | ||||||||||||
2035 | most one ruby text set for every part of the preedit string. If | - | ||||||||||||
2036 | several are specified for any character in the string the behaviour | - | ||||||||||||
2037 | is undefined. | - | ||||||||||||
2038 | - | |||||||||||||
2039 | \value Selection | - | ||||||||||||
2040 | If set, the edit cursor should be moved to the specified position | - | ||||||||||||
2041 | in the editor text contents. In contrast with \c Cursor, this | - | ||||||||||||
2042 | attribute does not work on the preedit text, but on the surrounding | - | ||||||||||||
2043 | text. The cursor will be moved after the commit string has been | - | ||||||||||||
2044 | committed, and the preedit string will be located at the new edit | - | ||||||||||||
2045 | position. | - | ||||||||||||
2046 | The start position specifies the new position and the length | - | ||||||||||||
2047 | variable can be used to set a selection starting from that point. | - | ||||||||||||
2048 | The value is unused. | - | ||||||||||||
2049 | - | |||||||||||||
2050 | \sa Attribute | - | ||||||||||||
2051 | */ | - | ||||||||||||
2052 | - | |||||||||||||
2053 | /*! | - | ||||||||||||
2054 | \class QInputMethodEvent::Attribute | - | ||||||||||||
2055 | \inmodule QtGui | - | ||||||||||||
2056 | \brief The QInputMethodEvent::Attribute class stores an input method attribute. | - | ||||||||||||
2057 | */ | - | ||||||||||||
2058 | - | |||||||||||||
2059 | /*! | - | ||||||||||||
2060 | \fn QInputMethodEvent::Attribute::Attribute(AttributeType type, int start, int length, QVariant value) | - | ||||||||||||
2061 | - | |||||||||||||
2062 | Constructs an input method attribute. \a type specifies the type | - | ||||||||||||
2063 | of attribute, \a start and \a length the position of the | - | ||||||||||||
2064 | attribute, and \a value the value of the attribute. | - | ||||||||||||
2065 | */ | - | ||||||||||||
2066 | - | |||||||||||||
2067 | /*! | - | ||||||||||||
2068 | Constructs an event of type QEvent::InputMethod. The | - | ||||||||||||
2069 | attributes(), preeditString(), commitString(), replacementStart(), | - | ||||||||||||
2070 | and replacementLength() are initialized to default values. | - | ||||||||||||
2071 | - | |||||||||||||
2072 | \sa setCommitString() | - | ||||||||||||
2073 | */ | - | ||||||||||||
2074 | QInputMethodEvent::QInputMethodEvent() | - | ||||||||||||
2075 | : QEvent(QEvent::InputMethod), replace_from(0), replace_length(0) | - | ||||||||||||
2076 | { | - | ||||||||||||
2077 | } never executed: end of block | 0 | ||||||||||||
2078 | - | |||||||||||||
2079 | /*! | - | ||||||||||||
2080 | Constructs an event of type QEvent::InputMethod. The | - | ||||||||||||
2081 | preedit text is set to \a preeditText, the attributes to | - | ||||||||||||
2082 | \a attributes. | - | ||||||||||||
2083 | - | |||||||||||||
2084 | The commitString(), replacementStart(), and replacementLength() | - | ||||||||||||
2085 | values can be set using setCommitString(). | - | ||||||||||||
2086 | - | |||||||||||||
2087 | \sa preeditString(), attributes() | - | ||||||||||||
2088 | */ | - | ||||||||||||
2089 | QInputMethodEvent::QInputMethodEvent(const QString &preeditText, const QList<Attribute> &attributes) | - | ||||||||||||
2090 | : QEvent(QEvent::InputMethod), preedit(preeditText), attrs(attributes), | - | ||||||||||||
2091 | replace_from(0), replace_length(0) | - | ||||||||||||
2092 | { | - | ||||||||||||
2093 | } never executed: end of block | 0 | ||||||||||||
2094 | - | |||||||||||||
2095 | /*! | - | ||||||||||||
2096 | Constructs a copy of \a other. | - | ||||||||||||
2097 | */ | - | ||||||||||||
2098 | QInputMethodEvent::QInputMethodEvent(const QInputMethodEvent &other) | - | ||||||||||||
2099 | : QEvent(QEvent::InputMethod), preedit(other.preedit), attrs(other.attrs), | - | ||||||||||||
2100 | commit(other.commit), replace_from(other.replace_from), replace_length(other.replace_length) | - | ||||||||||||
2101 | { | - | ||||||||||||
2102 | } never executed: end of block | 0 | ||||||||||||
2103 | - | |||||||||||||
2104 | QInputMethodEvent::~QInputMethodEvent() | - | ||||||||||||
2105 | { | - | ||||||||||||
2106 | // must be empty until ### Qt 6 | - | ||||||||||||
2107 | } | - | ||||||||||||
2108 | - | |||||||||||||
2109 | /*! | - | ||||||||||||
2110 | Sets the commit string to \a commitString. | - | ||||||||||||
2111 | - | |||||||||||||
2112 | The commit string is the text that should get added to (or | - | ||||||||||||
2113 | replace parts of) the text of the editor widget. It usually is a | - | ||||||||||||
2114 | result of the input operations and has to be inserted to the | - | ||||||||||||
2115 | widgets text directly before the preedit string. | - | ||||||||||||
2116 | - | |||||||||||||
2117 | If the commit string should replace parts of the of the text in | - | ||||||||||||
2118 | the editor, \a replaceLength specifies the number of | - | ||||||||||||
2119 | characters to be replaced. \a replaceFrom specifies the position | - | ||||||||||||
2120 | at which characters are to be replaced relative from the start of | - | ||||||||||||
2121 | the preedit string. | - | ||||||||||||
2122 | - | |||||||||||||
2123 | \sa commitString(), replacementStart(), replacementLength() | - | ||||||||||||
2124 | */ | - | ||||||||||||
2125 | void QInputMethodEvent::setCommitString(const QString &commitString, int replaceFrom, int replaceLength) | - | ||||||||||||
2126 | { | - | ||||||||||||
2127 | commit = commitString; | - | ||||||||||||
2128 | replace_from = replaceFrom; | - | ||||||||||||
2129 | replace_length = replaceLength; | - | ||||||||||||
2130 | } never executed: end of block | 0 | ||||||||||||
2131 | - | |||||||||||||
2132 | /*! | - | ||||||||||||
2133 | \fn const QList<Attribute> &QInputMethodEvent::attributes() const | - | ||||||||||||
2134 | - | |||||||||||||
2135 | Returns the list of attributes passed to the QInputMethodEvent | - | ||||||||||||
2136 | constructor. The attributes control the visual appearance of the | - | ||||||||||||
2137 | preedit string (the visual appearance of text outside the preedit | - | ||||||||||||
2138 | string is controlled by the widget only). | - | ||||||||||||
2139 | - | |||||||||||||
2140 | \sa preeditString(), Attribute | - | ||||||||||||
2141 | */ | - | ||||||||||||
2142 | - | |||||||||||||
2143 | /*! | - | ||||||||||||
2144 | \fn const QString &QInputMethodEvent::preeditString() const | - | ||||||||||||
2145 | - | |||||||||||||
2146 | Returns the preedit text, i.e. the text before the user started | - | ||||||||||||
2147 | editing it. | - | ||||||||||||
2148 | - | |||||||||||||
2149 | \sa commitString(), attributes() | - | ||||||||||||
2150 | */ | - | ||||||||||||
2151 | - | |||||||||||||
2152 | /*! | - | ||||||||||||
2153 | \fn const QString &QInputMethodEvent::commitString() const | - | ||||||||||||
2154 | - | |||||||||||||
2155 | Returns the text that should get added to (or replace parts of) | - | ||||||||||||
2156 | the text of the editor widget. It usually is a result of the | - | ||||||||||||
2157 | input operations and has to be inserted to the widgets text | - | ||||||||||||
2158 | directly before the preedit string. | - | ||||||||||||
2159 | - | |||||||||||||
2160 | \sa setCommitString(), preeditString(), replacementStart(), replacementLength() | - | ||||||||||||
2161 | */ | - | ||||||||||||
2162 | - | |||||||||||||
2163 | /*! | - | ||||||||||||
2164 | \fn int QInputMethodEvent::replacementStart() const | - | ||||||||||||
2165 | - | |||||||||||||
2166 | Returns the position at which characters are to be replaced relative | - | ||||||||||||
2167 | from the start of the preedit string. | - | ||||||||||||
2168 | - | |||||||||||||
2169 | \sa replacementLength(), setCommitString() | - | ||||||||||||
2170 | */ | - | ||||||||||||
2171 | - | |||||||||||||
2172 | /*! | - | ||||||||||||
2173 | \fn int QInputMethodEvent::replacementLength() const | - | ||||||||||||
2174 | - | |||||||||||||
2175 | Returns the number of characters to be replaced in the preedit | - | ||||||||||||
2176 | string. | - | ||||||||||||
2177 | - | |||||||||||||
2178 | \sa replacementStart(), setCommitString() | - | ||||||||||||
2179 | */ | - | ||||||||||||
2180 | - | |||||||||||||
2181 | /*! | - | ||||||||||||
2182 | \class QInputMethodQueryEvent | - | ||||||||||||
2183 | \since 5.0 | - | ||||||||||||
2184 | \inmodule QtGui | - | ||||||||||||
2185 | - | |||||||||||||
2186 | \brief The QInputMethodQueryEvent class provides an event sent by the input context to input objects. | - | ||||||||||||
2187 | - | |||||||||||||
2188 | It is used by the | - | ||||||||||||
2189 | input method to query a set of properties of the object to be | - | ||||||||||||
2190 | able to support complex input method operations as support for | - | ||||||||||||
2191 | surrounding text and reconversions. | - | ||||||||||||
2192 | - | |||||||||||||
2193 | queries() specifies which properties are queried. | - | ||||||||||||
2194 | - | |||||||||||||
2195 | The object should call setValue() on the event to fill in the requested | - | ||||||||||||
2196 | data before calling accept(). | - | ||||||||||||
2197 | */ | - | ||||||||||||
2198 | - | |||||||||||||
2199 | /*! | - | ||||||||||||
2200 | \fn Qt::InputMethodQueries QInputMethodQueryEvent::queries() const | - | ||||||||||||
2201 | - | |||||||||||||
2202 | Returns the properties queried by the event. | - | ||||||||||||
2203 | */ | - | ||||||||||||
2204 | - | |||||||||||||
2205 | /*! | - | ||||||||||||
2206 | Constructs a query event for properties given by \a queries. | - | ||||||||||||
2207 | */ | - | ||||||||||||
2208 | QInputMethodQueryEvent::QInputMethodQueryEvent(Qt::InputMethodQueries queries) | - | ||||||||||||
2209 | : QEvent(InputMethodQuery), | - | ||||||||||||
2210 | m_queries(queries) | - | ||||||||||||
2211 | { | - | ||||||||||||
2212 | } never executed: end of block | 0 | ||||||||||||
2213 | - | |||||||||||||
2214 | /*! | - | ||||||||||||
2215 | \internal | - | ||||||||||||
2216 | */ | - | ||||||||||||
2217 | QInputMethodQueryEvent::~QInputMethodQueryEvent() | - | ||||||||||||
2218 | { | - | ||||||||||||
2219 | } | - | ||||||||||||
2220 | - | |||||||||||||
2221 | /*! | - | ||||||||||||
2222 | Sets property \a query to \a value. | - | ||||||||||||
2223 | */ | - | ||||||||||||
2224 | void QInputMethodQueryEvent::setValue(Qt::InputMethodQuery query, const QVariant &value) | - | ||||||||||||
2225 | { | - | ||||||||||||
2226 | for (int i = 0; i < m_values.size(); ++i) {
| 0 | ||||||||||||
2227 | if (m_values.at(i).query == query) {
| 0 | ||||||||||||
2228 | m_values[i].value = value; | - | ||||||||||||
2229 | return; never executed: return; | 0 | ||||||||||||
2230 | } | - | ||||||||||||
2231 | } never executed: end of block | 0 | ||||||||||||
2232 | QueryPair pair = { query, value }; | - | ||||||||||||
2233 | m_values.append(pair); | - | ||||||||||||
2234 | } never executed: end of block | 0 | ||||||||||||
2235 | - | |||||||||||||
2236 | /*! | - | ||||||||||||
2237 | Returns value of the property \a query. | - | ||||||||||||
2238 | */ | - | ||||||||||||
2239 | QVariant QInputMethodQueryEvent::value(Qt::InputMethodQuery query) const | - | ||||||||||||
2240 | { | - | ||||||||||||
2241 | for (int i = 0; i < m_values.size(); ++i)
| 0 | ||||||||||||
2242 | if (m_values.at(i).query == query)
| 0 | ||||||||||||
2243 | return m_values.at(i).value; never executed: return m_values.at(i).value; | 0 | ||||||||||||
2244 | return QVariant(); never executed: return QVariant(); | 0 | ||||||||||||
2245 | } | - | ||||||||||||
2246 | - | |||||||||||||
2247 | #ifndef QT_NO_TABLETEVENT | - | ||||||||||||
2248 | - | |||||||||||||
2249 | /*! | - | ||||||||||||
2250 | \class QTabletEvent | - | ||||||||||||
2251 | \brief The QTabletEvent class contains parameters that describe a Tablet event. | - | ||||||||||||
2252 | \inmodule QtGui | - | ||||||||||||
2253 | - | |||||||||||||
2254 | \ingroup events | - | ||||||||||||
2255 | - | |||||||||||||
2256 | \e{Tablet events} are generated from tablet peripherals such as Wacom | - | ||||||||||||
2257 | tablets and various other brands, and electromagnetic stylus devices | - | ||||||||||||
2258 | included with some types of tablet computers. (It is not the same as | - | ||||||||||||
2259 | \l QTouchEvent which a touchscreen generates, even when a passive stylus is | - | ||||||||||||
2260 | used on a touchscreen.) | - | ||||||||||||
2261 | - | |||||||||||||
2262 | Tablet events are similar to mouse events; for example, the \l x(), \l y(), | - | ||||||||||||
2263 | \l pos(), \l globalX(), \l globalY(), and \l globalPos() accessors provide | - | ||||||||||||
2264 | the cursor position, and you can see which \l buttons() are pressed | - | ||||||||||||
2265 | (pressing the stylus tip against the tablet surface is equivalent to a left | - | ||||||||||||
2266 | mouse button). But tablet events also pass through some extra information | - | ||||||||||||
2267 | that the tablet device driver provides; for example, you might want to do | - | ||||||||||||
2268 | subpixel rendering with higher resolution coordinates (\l hiResGlobalX() | - | ||||||||||||
2269 | and \l hiResGlobalY()), adjust color brightness based on the \l pressure() | - | ||||||||||||
2270 | of the tool against the tablet surface, use different brushes depending on | - | ||||||||||||
2271 | the type of tool in use (\l device()), modulate the brush shape in some way | - | ||||||||||||
2272 | according to the X-axis and Y-axis tilt of the tool with respect to the | - | ||||||||||||
2273 | tablet surface (\l xTilt() and \l yTilt()), and use a virtual eraser | - | ||||||||||||
2274 | instead of a brush if the user switches to the other end of a double-ended | - | ||||||||||||
2275 | stylus (\l pointerType()). | - | ||||||||||||
2276 | - | |||||||||||||
2277 | Every event contains an accept flag that indicates whether the receiver | - | ||||||||||||
2278 | wants the event. You should call QTabletEvent::accept() if you handle the | - | ||||||||||||
2279 | tablet event; otherwise it will be sent to the parent widget. The exception | - | ||||||||||||
2280 | are TabletEnterProximity and TabletLeaveProximity events: these are only | - | ||||||||||||
2281 | sent to QApplication and do not check whether or not they are accepted. | - | ||||||||||||
2282 | - | |||||||||||||
2283 | The QWidget::setEnabled() function can be used to enable or disable | - | ||||||||||||
2284 | mouse, tablet and keyboard events for a widget. | - | ||||||||||||
2285 | - | |||||||||||||
2286 | The event handler QWidget::tabletEvent() receives TabletPress, | - | ||||||||||||
2287 | TabletRelease and TabletMove events. Qt will first send a | - | ||||||||||||
2288 | tablet event, then if it is not accepted by any widget, it will send a | - | ||||||||||||
2289 | mouse event. This allows users of applications that are not designed for | - | ||||||||||||
2290 | tablets to use a tablet like a mouse. However high-resolution drawing | - | ||||||||||||
2291 | applications should handle the tablet events, because they can occur at a | - | ||||||||||||
2292 | higher frequency, which is a benefit for smooth and accurate drawing. | - | ||||||||||||
2293 | If the tablet events are rejected, the synthetic mouse events may be | - | ||||||||||||
2294 | compressed for efficiency. | - | ||||||||||||
2295 | - | |||||||||||||
2296 | New in Qt 5.4: QTabletEvent includes all information available from the | - | ||||||||||||
2297 | device, including \l QTabletEvent::buttons(). Previously it was not | - | ||||||||||||
2298 | possible to accept all tablet events and also know which stylus buttons | - | ||||||||||||
2299 | were pressed. | - | ||||||||||||
2300 | - | |||||||||||||
2301 | Note that pressing the stylus button while the stylus hovers over the | - | ||||||||||||
2302 | tablet will generate a button press on some types of tablets, while on | - | ||||||||||||
2303 | other types it will be necessary to press the stylus against the tablet | - | ||||||||||||
2304 | surface in order to register the simultaneous stylus button press. | - | ||||||||||||
2305 | - | |||||||||||||
2306 | \section1 Notes for X11 Users | - | ||||||||||||
2307 | - | |||||||||||||
2308 | If the tablet is configured in xorg.conf to use the Wacom driver, there | - | ||||||||||||
2309 | will be separate XInput "devices" for the stylus, eraser, and (optionally) | - | ||||||||||||
2310 | cursor and touchpad. Qt recognizes these by their names. Otherwise, if the | - | ||||||||||||
2311 | tablet is configured to use the evdev driver, there will be only one device | - | ||||||||||||
2312 | and applications may not be able to distinguish the stylus from the eraser. | - | ||||||||||||
2313 | */ | - | ||||||||||||
2314 | - | |||||||||||||
2315 | /*! | - | ||||||||||||
2316 | \enum QTabletEvent::TabletDevice | - | ||||||||||||
2317 | - | |||||||||||||
2318 | This enum defines what type of device is generating the event. | - | ||||||||||||
2319 | - | |||||||||||||
2320 | \value NoDevice No device, or an unknown device. | - | ||||||||||||
2321 | \value Puck A Puck (a device that is similar to a flat mouse with | - | ||||||||||||
2322 | a transparent circle with cross-hairs). | - | ||||||||||||
2323 | \value Stylus A Stylus. | - | ||||||||||||
2324 | \value Airbrush An airbrush | - | ||||||||||||
2325 | \value FourDMouse A 4D Mouse. | - | ||||||||||||
2326 | \value RotationStylus A special stylus that also knows about rotation | - | ||||||||||||
2327 | (a 6D stylus). \since 4.1 | - | ||||||||||||
2328 | \omitvalue XFreeEraser | - | ||||||||||||
2329 | */ | - | ||||||||||||
2330 | - | |||||||||||||
2331 | /*! | - | ||||||||||||
2332 | \enum QTabletEvent::PointerType | - | ||||||||||||
2333 | - | |||||||||||||
2334 | This enum defines what type of point is generating the event. | - | ||||||||||||
2335 | - | |||||||||||||
2336 | \value UnknownPointer An unknown device. | - | ||||||||||||
2337 | \value Pen Tip end of a stylus-like device (the narrow end of the pen). | - | ||||||||||||
2338 | \value Cursor Any puck-like device. | - | ||||||||||||
2339 | \value Eraser Eraser end of a stylus-like device (the broad end of the pen). | - | ||||||||||||
2340 | - | |||||||||||||
2341 | \sa pointerType() | - | ||||||||||||
2342 | */ | - | ||||||||||||
2343 | - | |||||||||||||
2344 | /*! | - | ||||||||||||
2345 | Construct a tablet event of the given \a type. | - | ||||||||||||
2346 | - | |||||||||||||
2347 | The \a pos parameter indicates where the event occurred in the | - | ||||||||||||
2348 | widget; \a globalPos is the corresponding position in absolute | - | ||||||||||||
2349 | coordinates. | - | ||||||||||||
2350 | - | |||||||||||||
2351 | \a pressure contains the pressure exerted on the \a device. | - | ||||||||||||
2352 | - | |||||||||||||
2353 | \a pointerType describes the type of pen that is being used. | - | ||||||||||||
2354 | - | |||||||||||||
2355 | \a xTilt and \a yTilt contain the device's degree of tilt from the | - | ||||||||||||
2356 | x and y axes respectively. | - | ||||||||||||
2357 | - | |||||||||||||
2358 | \a keyState specifies which keyboard modifiers are pressed (e.g., | - | ||||||||||||
2359 | \uicontrol{Ctrl}). | - | ||||||||||||
2360 | - | |||||||||||||
2361 | The \a uniqueID parameter contains the unique ID for the current device. | - | ||||||||||||
2362 | - | |||||||||||||
2363 | The \a z parameter contains the coordinate of the device on the tablet, this | - | ||||||||||||
2364 | is usually given by a wheel on 4D mouse. If the device does not support a | - | ||||||||||||
2365 | Z-axis, pass zero here. | - | ||||||||||||
2366 | - | |||||||||||||
2367 | The \a tangentialPressure parameter contins the tangential pressure of an air | - | ||||||||||||
2368 | brush. If the device does not support tangential pressure, pass 0 here. | - | ||||||||||||
2369 | - | |||||||||||||
2370 | \a rotation contains the device's rotation in degrees. 4D mice and the Wacom | - | ||||||||||||
2371 | Art Pen support rotation. If the device does not support rotation, pass 0 here. | - | ||||||||||||
2372 | - | |||||||||||||
2373 | The \a button that caused the event is given as a value from the | - | ||||||||||||
2374 | \l Qt::MouseButton enum. If the event \a type is not \l TabletPress or | - | ||||||||||||
2375 | \l TabletRelease, the appropriate button for this event is \l Qt::NoButton. | - | ||||||||||||
2376 | - | |||||||||||||
2377 | \a buttons is the state of all buttons at the time of the event. | - | ||||||||||||
2378 | - | |||||||||||||
2379 | \sa pos(), globalPos(), device(), pressure(), xTilt(), yTilt(), uniqueId(), rotation(), | - | ||||||||||||
2380 | tangentialPressure(), z() | - | ||||||||||||
2381 | */ | - | ||||||||||||
2382 | - | |||||||||||||
2383 | QTabletEvent::QTabletEvent(Type type, const QPointF &pos, const QPointF &globalPos, | - | ||||||||||||
2384 | int device, int pointerType, | - | ||||||||||||
2385 | qreal pressure, int xTilt, int yTilt, qreal tangentialPressure, | - | ||||||||||||
2386 | qreal rotation, int z, Qt::KeyboardModifiers keyState, qint64 uniqueID, | - | ||||||||||||
2387 | Qt::MouseButton button, Qt::MouseButtons buttons) | - | ||||||||||||
2388 | : QInputEvent(type, keyState), | - | ||||||||||||
2389 | mPos(pos), | - | ||||||||||||
2390 | mGPos(globalPos), | - | ||||||||||||
2391 | mDev(device), | - | ||||||||||||
2392 | mPointerType(pointerType), | - | ||||||||||||
2393 | mXT(xTilt), | - | ||||||||||||
2394 | mYT(yTilt), | - | ||||||||||||
2395 | mZ(z), | - | ||||||||||||
2396 | mPress(pressure), | - | ||||||||||||
2397 | mTangential(tangentialPressure), | - | ||||||||||||
2398 | mRot(rotation), | - | ||||||||||||
2399 | mUnique(uniqueID), | - | ||||||||||||
2400 | mExtra(new QTabletEventPrivate(button, buttons)) | - | ||||||||||||
2401 | { | - | ||||||||||||
2402 | } never executed: end of block | 0 | ||||||||||||
2403 | - | |||||||||||||
2404 | /*! | - | ||||||||||||
2405 | Construct a tablet event of the given \a type. | - | ||||||||||||
2406 | - | |||||||||||||
2407 | The \a pos parameter indicates where the event occurred in the | - | ||||||||||||
2408 | widget; \a globalPos is the corresponding position in absolute | - | ||||||||||||
2409 | coordinates. | - | ||||||||||||
2410 | - | |||||||||||||
2411 | \a pressure contains the pressure exerted on the \a device. | - | ||||||||||||
2412 | - | |||||||||||||
2413 | \a pointerType describes the type of pen that is being used. | - | ||||||||||||
2414 | - | |||||||||||||
2415 | \a xTilt and \a yTilt contain the device's degree of tilt from the | - | ||||||||||||
2416 | x and y axes respectively. | - | ||||||||||||
2417 | - | |||||||||||||
2418 | \a keyState specifies which keyboard modifiers are pressed (e.g., | - | ||||||||||||
2419 | \uicontrol{Ctrl}). | - | ||||||||||||
2420 | - | |||||||||||||
2421 | The \a uniqueID parameter contains the unique ID for the current device. | - | ||||||||||||
2422 | - | |||||||||||||
2423 | The \a z parameter contains the coordinate of the device on the tablet, this | - | ||||||||||||
2424 | is usually given by a wheel on 4D mouse. If the device does not support a | - | ||||||||||||
2425 | Z-axis, pass zero here. | - | ||||||||||||
2426 | - | |||||||||||||
2427 | The \a tangentialPressure parameter contins the tangential pressure of an air | - | ||||||||||||
2428 | brush. If the device does not support tangential pressure, pass 0 here. | - | ||||||||||||
2429 | - | |||||||||||||
2430 | \a rotation contains the device's rotation in degrees. 4D mice support | - | ||||||||||||
2431 | rotation. If the device does not support rotation, pass 0 here. | - | ||||||||||||
2432 | - | |||||||||||||
2433 | \sa pos(), globalPos(), device(), pressure(), xTilt(), yTilt(), uniqueId(), rotation(), | - | ||||||||||||
2434 | tangentialPressure(), z() | - | ||||||||||||
2435 | - | |||||||||||||
2436 | \deprecated in 5.4: use the constructor with MouseButton status | - | ||||||||||||
2437 | */ | - | ||||||||||||
2438 | - | |||||||||||||
2439 | QTabletEvent::QTabletEvent(Type type, const QPointF &pos, const QPointF &globalPos, | - | ||||||||||||
2440 | int device, int pointerType, | - | ||||||||||||
2441 | qreal pressure, int xTilt, int yTilt, qreal tangentialPressure, | - | ||||||||||||
2442 | qreal rotation, int z, Qt::KeyboardModifiers keyState, qint64 uniqueID) | - | ||||||||||||
2443 | : QInputEvent(type, keyState), | - | ||||||||||||
2444 | mPos(pos), | - | ||||||||||||
2445 | mGPos(globalPos), | - | ||||||||||||
2446 | mDev(device), | - | ||||||||||||
2447 | mPointerType(pointerType), | - | ||||||||||||
2448 | mXT(xTilt), | - | ||||||||||||
2449 | mYT(yTilt), | - | ||||||||||||
2450 | mZ(z), | - | ||||||||||||
2451 | mPress(pressure), | - | ||||||||||||
2452 | mTangential(tangentialPressure), | - | ||||||||||||
2453 | mRot(rotation), | - | ||||||||||||
2454 | mUnique(uniqueID), | - | ||||||||||||
2455 | mExtra(new QTabletEventPrivate(Qt::NoButton, Qt::NoButton)) | - | ||||||||||||
2456 | { | - | ||||||||||||
2457 | } never executed: end of block | 0 | ||||||||||||
2458 | - | |||||||||||||
2459 | /*! | - | ||||||||||||
2460 | \internal | - | ||||||||||||
2461 | */ | - | ||||||||||||
2462 | QTabletEvent::~QTabletEvent() | - | ||||||||||||
2463 | { | - | ||||||||||||
2464 | } | - | ||||||||||||
2465 | - | |||||||||||||
2466 | /*! | - | ||||||||||||
2467 | Returns the button that caused the event. | - | ||||||||||||
2468 | - | |||||||||||||
2469 | Note that the returned value is always Qt::NoButton for \l TabletMove, | - | ||||||||||||
2470 | \l TabletEnterProximity and \l TabletLeaveProximity events. | - | ||||||||||||
2471 | - | |||||||||||||
2472 | \sa buttons(), Qt::MouseButton | - | ||||||||||||
2473 | */ | - | ||||||||||||
2474 | Qt::MouseButton QTabletEvent::button() const | - | ||||||||||||
2475 | { | - | ||||||||||||
2476 | return static_cast<QTabletEventPrivate *>(mExtra)->b; never executed: return static_cast<QTabletEventPrivate *>(mExtra)->b; | 0 | ||||||||||||
2477 | } | - | ||||||||||||
2478 | - | |||||||||||||
2479 | /*! | - | ||||||||||||
2480 | Returns the button state when the event was generated. The button state is | - | ||||||||||||
2481 | a combination of buttons from the \l Qt::MouseButton enum using the OR | - | ||||||||||||
2482 | operator. For \l TabletMove events, this is all buttons that are pressed | - | ||||||||||||
2483 | down. For \l TabletPress events this includes the button that caused the | - | ||||||||||||
2484 | event. For \l TabletRelease events this excludes the button that caused the | - | ||||||||||||
2485 | event. | - | ||||||||||||
2486 | - | |||||||||||||
2487 | \sa button(), Qt::MouseButton | - | ||||||||||||
2488 | */ | - | ||||||||||||
2489 | Qt::MouseButtons QTabletEvent::buttons() const | - | ||||||||||||
2490 | { | - | ||||||||||||
2491 | return static_cast<QTabletEventPrivate *>(mExtra)->buttonState; never executed: return static_cast<QTabletEventPrivate *>(mExtra)->buttonState; | 0 | ||||||||||||
2492 | } | - | ||||||||||||
2493 | - | |||||||||||||
2494 | /*! | - | ||||||||||||
2495 | \fn TabletDevices QTabletEvent::device() const | - | ||||||||||||
2496 | - | |||||||||||||
2497 | Returns the type of device that generated the event. | - | ||||||||||||
2498 | - | |||||||||||||
2499 | \sa TabletDevice | - | ||||||||||||
2500 | */ | - | ||||||||||||
2501 | - | |||||||||||||
2502 | /*! | - | ||||||||||||
2503 | \fn PointerType QTabletEvent::pointerType() const | - | ||||||||||||
2504 | - | |||||||||||||
2505 | Returns the type of point that generated the event. | - | ||||||||||||
2506 | */ | - | ||||||||||||
2507 | - | |||||||||||||
2508 | /*! | - | ||||||||||||
2509 | \fn qreal QTabletEvent::tangentialPressure() const | - | ||||||||||||
2510 | - | |||||||||||||
2511 | Returns the tangential pressure for the device. This is typically given by a finger | - | ||||||||||||
2512 | wheel on an airbrush tool. The range is from -1.0 to 1.0. 0.0 indicates a | - | ||||||||||||
2513 | neutral position. Current airbrushes can only move in the positive | - | ||||||||||||
2514 | direction from the neutrual position. If the device does not support | - | ||||||||||||
2515 | tangential pressure, this value is always 0.0. | - | ||||||||||||
2516 | - | |||||||||||||
2517 | \sa pressure() | - | ||||||||||||
2518 | */ | - | ||||||||||||
2519 | - | |||||||||||||
2520 | /*! | - | ||||||||||||
2521 | \fn qreal QTabletEvent::rotation() const | - | ||||||||||||
2522 | - | |||||||||||||
2523 | Returns the rotation of the current device in degress. This is usually | - | ||||||||||||
2524 | given by a 4D Mouse. If the device does not support rotation this value is | - | ||||||||||||
2525 | always 0.0. | - | ||||||||||||
2526 | - | |||||||||||||
2527 | */ | - | ||||||||||||
2528 | - | |||||||||||||
2529 | /*! | - | ||||||||||||
2530 | \fn qreal QTabletEvent::pressure() const | - | ||||||||||||
2531 | - | |||||||||||||
2532 | Returns the pressure for the device. 0.0 indicates that the stylus is not | - | ||||||||||||
2533 | on the tablet, 1.0 indicates the maximum amount of pressure for the stylus. | - | ||||||||||||
2534 | - | |||||||||||||
2535 | \sa tangentialPressure() | - | ||||||||||||
2536 | */ | - | ||||||||||||
2537 | - | |||||||||||||
2538 | /*! | - | ||||||||||||
2539 | \fn int QTabletEvent::xTilt() const | - | ||||||||||||
2540 | - | |||||||||||||
2541 | Returns the angle between the device (a pen, for example) and the | - | ||||||||||||
2542 | perpendicular in the direction of the x axis. | - | ||||||||||||
2543 | Positive values are towards the tablet's physical right. The angle | - | ||||||||||||
2544 | is in the range -60 to +60 degrees. | - | ||||||||||||
2545 | - | |||||||||||||
2546 | \image qtabletevent-tilt.png | - | ||||||||||||
2547 | - | |||||||||||||
2548 | \sa yTilt() | - | ||||||||||||
2549 | */ | - | ||||||||||||
2550 | - | |||||||||||||
2551 | /*! | - | ||||||||||||
2552 | \fn int QTabletEvent::yTilt() const | - | ||||||||||||
2553 | - | |||||||||||||
2554 | Returns the angle between the device (a pen, for example) and the | - | ||||||||||||
2555 | perpendicular in the direction of the y axis. | - | ||||||||||||
2556 | Positive values are towards the bottom of the tablet. The angle is | - | ||||||||||||
2557 | within the range -60 to +60 degrees. | - | ||||||||||||
2558 | - | |||||||||||||
2559 | \sa xTilt() | - | ||||||||||||
2560 | */ | - | ||||||||||||
2561 | - | |||||||||||||
2562 | /*! | - | ||||||||||||
2563 | \fn QPoint QTabletEvent::pos() const | - | ||||||||||||
2564 | - | |||||||||||||
2565 | Returns the position of the device, relative to the widget that | - | ||||||||||||
2566 | received the event. | - | ||||||||||||
2567 | - | |||||||||||||
2568 | If you move widgets around in response to mouse events, use | - | ||||||||||||
2569 | globalPos() instead of this function. | - | ||||||||||||
2570 | - | |||||||||||||
2571 | \sa x(), y(), globalPos() | - | ||||||||||||
2572 | */ | - | ||||||||||||
2573 | - | |||||||||||||
2574 | /*! | - | ||||||||||||
2575 | \fn int QTabletEvent::x() const | - | ||||||||||||
2576 | - | |||||||||||||
2577 | Returns the x position of the device, relative to the widget that | - | ||||||||||||
2578 | received the event. | - | ||||||||||||
2579 | - | |||||||||||||
2580 | \sa y(), pos() | - | ||||||||||||
2581 | */ | - | ||||||||||||
2582 | - | |||||||||||||
2583 | /*! | - | ||||||||||||
2584 | \fn int QTabletEvent::y() const | - | ||||||||||||
2585 | - | |||||||||||||
2586 | Returns the y position of the device, relative to the widget that | - | ||||||||||||
2587 | received the event. | - | ||||||||||||
2588 | - | |||||||||||||
2589 | \sa x(), pos() | - | ||||||||||||
2590 | */ | - | ||||||||||||
2591 | - | |||||||||||||
2592 | /*! | - | ||||||||||||
2593 | \fn int QTabletEvent::z() const | - | ||||||||||||
2594 | - | |||||||||||||
2595 | Returns the z position of the device. Typically this is represented by a | - | ||||||||||||
2596 | wheel on a 4D Mouse. If the device does not support a Z-axis, this value is | - | ||||||||||||
2597 | always zero. This is \b not the same as pressure. | - | ||||||||||||
2598 | - | |||||||||||||
2599 | \sa pressure() | - | ||||||||||||
2600 | */ | - | ||||||||||||
2601 | - | |||||||||||||
2602 | /*! | - | ||||||||||||
2603 | \fn QPoint QTabletEvent::globalPos() const | - | ||||||||||||
2604 | - | |||||||||||||
2605 | Returns the global position of the device \e{at the time of the | - | ||||||||||||
2606 | event}. This is important on asynchronous windows systems like X11; | - | ||||||||||||
2607 | whenever you move your widgets around in response to mouse events, | - | ||||||||||||
2608 | globalPos() can differ significantly from the current position | - | ||||||||||||
2609 | QCursor::pos(). | - | ||||||||||||
2610 | - | |||||||||||||
2611 | \sa globalX(), globalY(), hiResGlobalPos() | - | ||||||||||||
2612 | */ | - | ||||||||||||
2613 | - | |||||||||||||
2614 | /*! | - | ||||||||||||
2615 | \fn int QTabletEvent::globalX() const | - | ||||||||||||
2616 | - | |||||||||||||
2617 | Returns the global x position of the mouse pointer at the time of | - | ||||||||||||
2618 | the event. | - | ||||||||||||
2619 | - | |||||||||||||
2620 | \sa globalY(), globalPos(), hiResGlobalX() | - | ||||||||||||
2621 | */ | - | ||||||||||||
2622 | - | |||||||||||||
2623 | /*! | - | ||||||||||||
2624 | \fn int QTabletEvent::globalY() const | - | ||||||||||||
2625 | - | |||||||||||||
2626 | Returns the global y position of the tablet device at the time of | - | ||||||||||||
2627 | the event. | - | ||||||||||||
2628 | - | |||||||||||||
2629 | \sa globalX(), globalPos(), hiResGlobalY() | - | ||||||||||||
2630 | */ | - | ||||||||||||
2631 | - | |||||||||||||
2632 | /*! | - | ||||||||||||
2633 | \fn qint64 QTabletEvent::uniqueId() const | - | ||||||||||||
2634 | - | |||||||||||||
2635 | Returns a unique ID for the current device, making it possible | - | ||||||||||||
2636 | to differentiate between multiple devices being used at the same | - | ||||||||||||
2637 | time on the tablet. | - | ||||||||||||
2638 | - | |||||||||||||
2639 | Support of this feature is dependent on the tablet. | - | ||||||||||||
2640 | - | |||||||||||||
2641 | Values for the same device may vary from OS to OS. | - | ||||||||||||
2642 | - | |||||||||||||
2643 | Later versions of the Wacom driver for Linux will now report | - | ||||||||||||
2644 | the ID information. If you have a tablet that supports unique ID | - | ||||||||||||
2645 | and are not getting the information on Linux, consider upgrading | - | ||||||||||||
2646 | your driver. | - | ||||||||||||
2647 | - | |||||||||||||
2648 | As of Qt 4.2, the unique ID is the same regardless of the orientation | - | ||||||||||||
2649 | of the pen. Earlier versions would report a different value when using | - | ||||||||||||
2650 | the eraser-end versus the pen-end of the stylus on some OS's. | - | ||||||||||||
2651 | - | |||||||||||||
2652 | \sa pointerType() | - | ||||||||||||
2653 | */ | - | ||||||||||||
2654 | - | |||||||||||||
2655 | /*! | - | ||||||||||||
2656 | \fn const QPointF &QTabletEvent::hiResGlobalPos() const | - | ||||||||||||
2657 | - | |||||||||||||
2658 | The high precision coordinates delivered from the tablet expressed. | - | ||||||||||||
2659 | Sub pixeling information is in the fractional part of the QPointF. | - | ||||||||||||
2660 | - | |||||||||||||
2661 | \sa globalPos(), hiResGlobalX(), hiResGlobalY() | - | ||||||||||||
2662 | */ | - | ||||||||||||
2663 | - | |||||||||||||
2664 | /*! | - | ||||||||||||
2665 | \fn qreal &QTabletEvent::hiResGlobalX() const | - | ||||||||||||
2666 | - | |||||||||||||
2667 | The high precision x position of the tablet device. | - | ||||||||||||
2668 | */ | - | ||||||||||||
2669 | - | |||||||||||||
2670 | /*! | - | ||||||||||||
2671 | \fn qreal &QTabletEvent::hiResGlobalY() const | - | ||||||||||||
2672 | - | |||||||||||||
2673 | The high precision y position of the tablet device. | - | ||||||||||||
2674 | */ | - | ||||||||||||
2675 | - | |||||||||||||
2676 | /*! | - | ||||||||||||
2677 | \fn const QPointF &QTabletEvent::posF() const | - | ||||||||||||
2678 | - | |||||||||||||
2679 | Returns the position of the device, relative to the widget that | - | ||||||||||||
2680 | received the event. | - | ||||||||||||
2681 | - | |||||||||||||
2682 | If you move widgets around in response to mouse events, use | - | ||||||||||||
2683 | globalPosF() instead of this function. | - | ||||||||||||
2684 | - | |||||||||||||
2685 | \sa globalPosF() | - | ||||||||||||
2686 | */ | - | ||||||||||||
2687 | - | |||||||||||||
2688 | /*! | - | ||||||||||||
2689 | \fn const QPointF &QTabletEvent::globalPosF() const | - | ||||||||||||
2690 | - | |||||||||||||
2691 | Returns the global position of the device \e{at the time of the | - | ||||||||||||
2692 | event}. This is important on asynchronous windows systems like X11; | - | ||||||||||||
2693 | whenever you move your widgets around in response to mouse events, | - | ||||||||||||
2694 | globalPosF() can differ significantly from the current position | - | ||||||||||||
2695 | QCursor::pos(). | - | ||||||||||||
2696 | - | |||||||||||||
2697 | \sa posF() | - | ||||||||||||
2698 | */ | - | ||||||||||||
2699 | - | |||||||||||||
2700 | #endif // QT_NO_TABLETEVENT | - | ||||||||||||
2701 | - | |||||||||||||
2702 | #ifndef QT_NO_GESTURES | - | ||||||||||||
2703 | /*! | - | ||||||||||||
2704 | \class QNativeGestureEvent | - | ||||||||||||
2705 | \since 5.2 | - | ||||||||||||
2706 | \brief The QNativeGestureEvent class contains parameters that describe a gesture event. | - | ||||||||||||
2707 | \inmodule QtGui | - | ||||||||||||
2708 | \ingroup events | - | ||||||||||||
2709 | - | |||||||||||||
2710 | Native gesture events are generated by the operating system, typically by | - | ||||||||||||
2711 | interpreting touch events. Gesture events are high-level events such | - | ||||||||||||
2712 | as zoom or rotate. | - | ||||||||||||
2713 | - | |||||||||||||
2714 | \table | - | ||||||||||||
2715 | \header | - | ||||||||||||
2716 | \li Event Type | - | ||||||||||||
2717 | \li Description | - | ||||||||||||
2718 | \li Touch equence | - | ||||||||||||
2719 | \row | - | ||||||||||||
2720 | \li Qt::ZoomNativeGesture | - | ||||||||||||
2721 | \li Magnification delta in percent. | - | ||||||||||||
2722 | \li \macos: Two-finger pinch. | - | ||||||||||||
2723 | \row | - | ||||||||||||
2724 | \li Qt::SmartZoomNativeGesture | - | ||||||||||||
2725 | \li Boolean magnification state. | - | ||||||||||||
2726 | \li \macos: Two-finger douple tap (trackpad) / One-finger douple tap (magic mouse). | - | ||||||||||||
2727 | \row | - | ||||||||||||
2728 | \li Qt::RotateNativeGesture | - | ||||||||||||
2729 | \li Rotation delta in degrees. | - | ||||||||||||
2730 | \li \macos: Two-finger rotate. | - | ||||||||||||
2731 | \endtable | - | ||||||||||||
2732 | - | |||||||||||||
2733 | - | |||||||||||||
2734 | In addition, BeginNativeGesture and EndNativeGesture are sent before and after | - | ||||||||||||
2735 | gesture event streams: | - | ||||||||||||
2736 | - | |||||||||||||
2737 | BeginNativeGesture | - | ||||||||||||
2738 | ZoomNativeGesture | - | ||||||||||||
2739 | ZoomNativeGesture | - | ||||||||||||
2740 | ZoomNativeGesture | - | ||||||||||||
2741 | EndNativeGesture | - | ||||||||||||
2742 | - | |||||||||||||
2743 | \sa Qt::NativeGestureType, QGestureEvent | - | ||||||||||||
2744 | */ | - | ||||||||||||
2745 | - | |||||||||||||
2746 | /*! | - | ||||||||||||
2747 | Constructs a native gesture event of type \a type. | - | ||||||||||||
2748 | - | |||||||||||||
2749 | The points \a localPos, \a windowPos and \a screenPos specify the | - | ||||||||||||
2750 | gesture position relative to the receiving widget or item, | - | ||||||||||||
2751 | window, and screen, respectively. | - | ||||||||||||
2752 | - | |||||||||||||
2753 | \a realValue is the \macos event parameter, \a sequenceId and \a intValue are the Windows event parameters. | - | ||||||||||||
2754 | */ | - | ||||||||||||
2755 | QNativeGestureEvent::QNativeGestureEvent(Qt::NativeGestureType type, const QPointF &localPos, const QPointF &windowPos, | - | ||||||||||||
2756 | const QPointF &screenPos, qreal realValue, ulong sequenceId, quint64 intValue) | - | ||||||||||||
2757 | : QInputEvent(QEvent::NativeGesture), mGestureType(type), | - | ||||||||||||
2758 | mLocalPos(localPos), mWindowPos(windowPos), mScreenPos(screenPos), mRealValue(realValue), | - | ||||||||||||
2759 | mSequenceId(sequenceId), mIntValue(intValue) | - | ||||||||||||
2760 | { never executed: }end of block never executed: end of block | 0 | ||||||||||||
2761 | - | |||||||||||||
2762 | /*! | - | ||||||||||||
2763 | \fn QNativeGestureEvent::gestureType() const | - | ||||||||||||
2764 | \since 5.2 | - | ||||||||||||
2765 | - | |||||||||||||
2766 | Returns the gesture type. | - | ||||||||||||
2767 | */ | - | ||||||||||||
2768 | - | |||||||||||||
2769 | /*! | - | ||||||||||||
2770 | \fn QNativeGestureEvent::value() const | - | ||||||||||||
2771 | \since 5.2 | - | ||||||||||||
2772 | - | |||||||||||||
2773 | Returns the gesture value. The value should be interpreted based on the | - | ||||||||||||
2774 | gesture type. For example, a Zoom gesture provides a scale factor while a Rotate | - | ||||||||||||
2775 | gesture provides a rotation delta. | - | ||||||||||||
2776 | - | |||||||||||||
2777 | \sa QNativeGestureEvent, gestureType() | - | ||||||||||||
2778 | */ | - | ||||||||||||
2779 | - | |||||||||||||
2780 | /*! | - | ||||||||||||
2781 | \fn QPoint QNativeGestureEvent::globalPos() const | - | ||||||||||||
2782 | \since 5.2 | - | ||||||||||||
2783 | - | |||||||||||||
2784 | Returns the position of the gesture as a QPointF in screen coordinates | - | ||||||||||||
2785 | */ | - | ||||||||||||
2786 | - | |||||||||||||
2787 | /*! | - | ||||||||||||
2788 | \fn QPoint QNativeGestureEvent::pos() const | - | ||||||||||||
2789 | \since 5.2 | - | ||||||||||||
2790 | - | |||||||||||||
2791 | Returns the position of the mouse cursor, relative to the widget | - | ||||||||||||
2792 | or item that received the event. | - | ||||||||||||
2793 | */ | - | ||||||||||||
2794 | - | |||||||||||||
2795 | /*! | - | ||||||||||||
2796 | \fn QPointF QNativeGestureEvent::localPos() const | - | ||||||||||||
2797 | \since 5.2 | - | ||||||||||||
2798 | - | |||||||||||||
2799 | Returns the position of the gesture as a QPointF, relative to the | - | ||||||||||||
2800 | widget or item that received the event. | - | ||||||||||||
2801 | */ | - | ||||||||||||
2802 | - | |||||||||||||
2803 | /*! | - | ||||||||||||
2804 | \fn QPointF QNativeGestureEvent::screenPos() const | - | ||||||||||||
2805 | \since 5.2 | - | ||||||||||||
2806 | - | |||||||||||||
2807 | Returns the position of the gesture as a QPointF in screen coordinates. | - | ||||||||||||
2808 | */ | - | ||||||||||||
2809 | - | |||||||||||||
2810 | /*! | - | ||||||||||||
2811 | \fn QPointF QNativeGestureEvent::windowPos() const | - | ||||||||||||
2812 | \since 5.2 | - | ||||||||||||
2813 | - | |||||||||||||
2814 | Returns the position of the gesture as a QPointF, relative to the | - | ||||||||||||
2815 | window that received the event. | - | ||||||||||||
2816 | */ | - | ||||||||||||
2817 | #endif // QT_NO_GESTURES | - | ||||||||||||
2818 | - | |||||||||||||
2819 | #ifndef QT_NO_DRAGANDDROP | - | ||||||||||||
2820 | /*! | - | ||||||||||||
2821 | Creates a QDragMoveEvent of the required \a type indicating | - | ||||||||||||
2822 | that the mouse is at position \a pos given within a widget. | - | ||||||||||||
2823 | - | |||||||||||||
2824 | The mouse and keyboard states are specified by \a buttons and | - | ||||||||||||
2825 | \a modifiers, and the \a actions describe the types of drag | - | ||||||||||||
2826 | and drop operation that are possible. | - | ||||||||||||
2827 | The drag data is passed as MIME-encoded information in \a data. | - | ||||||||||||
2828 | - | |||||||||||||
2829 | \warning Do not attempt to create a QDragMoveEvent yourself. | - | ||||||||||||
2830 | These objects rely on Qt's internal state. | - | ||||||||||||
2831 | */ | - | ||||||||||||
2832 | QDragMoveEvent::QDragMoveEvent(const QPoint& pos, Qt::DropActions actions, const QMimeData *data, | - | ||||||||||||
2833 | Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers, Type type) | - | ||||||||||||
2834 | : QDropEvent(pos, actions, data, buttons, modifiers, type) | - | ||||||||||||
2835 | , rect(pos, QSize(1, 1)) | - | ||||||||||||
2836 | {} never executed: end of block | 0 | ||||||||||||
2837 | - | |||||||||||||
2838 | /*! | - | ||||||||||||
2839 | Destroys the event. | - | ||||||||||||
2840 | */ | - | ||||||||||||
2841 | QDragMoveEvent::~QDragMoveEvent() | - | ||||||||||||
2842 | { | - | ||||||||||||
2843 | } | - | ||||||||||||
2844 | - | |||||||||||||
2845 | /*! | - | ||||||||||||
2846 | \fn void QDragMoveEvent::accept(const QRect &rectangle) | - | ||||||||||||
2847 | - | |||||||||||||
2848 | The same as accept(), but also notifies that future moves will | - | ||||||||||||
2849 | also be acceptable if they remain within the \a rectangle | - | ||||||||||||
2850 | given on the widget. This can improve performance, but may | - | ||||||||||||
2851 | also be ignored by the underlying system. | - | ||||||||||||
2852 | - | |||||||||||||
2853 | If the rectangle is empty, drag move events will be sent | - | ||||||||||||
2854 | continuously. This is useful if the source is scrolling in a | - | ||||||||||||
2855 | timer event. | - | ||||||||||||
2856 | */ | - | ||||||||||||
2857 | - | |||||||||||||
2858 | /*! | - | ||||||||||||
2859 | \fn void QDragMoveEvent::accept() | - | ||||||||||||
2860 | - | |||||||||||||
2861 | \overload | - | ||||||||||||
2862 | - | |||||||||||||
2863 | Calls QDropEvent::accept(). | - | ||||||||||||
2864 | */ | - | ||||||||||||
2865 | - | |||||||||||||
2866 | /*! | - | ||||||||||||
2867 | \fn void QDragMoveEvent::ignore() | - | ||||||||||||
2868 | - | |||||||||||||
2869 | \overload | - | ||||||||||||
2870 | - | |||||||||||||
2871 | Calls QDropEvent::ignore(). | - | ||||||||||||
2872 | */ | - | ||||||||||||
2873 | - | |||||||||||||
2874 | /*! | - | ||||||||||||
2875 | \fn void QDragMoveEvent::ignore(const QRect &rectangle) | - | ||||||||||||
2876 | - | |||||||||||||
2877 | The opposite of the accept(const QRect&) function. | - | ||||||||||||
2878 | Moves within the \a rectangle are not acceptable, and will be | - | ||||||||||||
2879 | ignored. | - | ||||||||||||
2880 | */ | - | ||||||||||||
2881 | - | |||||||||||||
2882 | /*! | - | ||||||||||||
2883 | \fn QRect QDragMoveEvent::answerRect() const | - | ||||||||||||
2884 | - | |||||||||||||
2885 | Returns the rectangle in the widget where the drop will occur if accepted. | - | ||||||||||||
2886 | You can use this information to restrict drops to certain places on the | - | ||||||||||||
2887 | widget. | - | ||||||||||||
2888 | */ | - | ||||||||||||
2889 | - | |||||||||||||
2890 | - | |||||||||||||
2891 | /*! | - | ||||||||||||
2892 | \class QDropEvent | - | ||||||||||||
2893 | \ingroup events | - | ||||||||||||
2894 | \ingroup draganddrop | - | ||||||||||||
2895 | \inmodule QtGui | - | ||||||||||||
2896 | - | |||||||||||||
2897 | \brief The QDropEvent class provides an event which is sent when a | - | ||||||||||||
2898 | drag and drop action is completed. | - | ||||||||||||
2899 | - | |||||||||||||
2900 | When a widget \l{QWidget::setAcceptDrops()}{accepts drop events}, it will | - | ||||||||||||
2901 | receive this event if it has accepted the most recent QDragEnterEvent or | - | ||||||||||||
2902 | QDragMoveEvent sent to it. | - | ||||||||||||
2903 | - | |||||||||||||
2904 | The drop event contains a proposed action, available from proposedAction(), for | - | ||||||||||||
2905 | the widget to either accept or ignore. If the action can be handled by the | - | ||||||||||||
2906 | widget, you should call the acceptProposedAction() function. Since the | - | ||||||||||||
2907 | proposed action can be a combination of \l Qt::DropAction values, it may be | - | ||||||||||||
2908 | useful to either select one of these values as a default action or ask | - | ||||||||||||
2909 | the user to select their preferred action. | - | ||||||||||||
2910 | - | |||||||||||||
2911 | If the proposed drop action is not suitable, perhaps because your custom | - | ||||||||||||
2912 | widget does not support that action, you can replace it with any of the | - | ||||||||||||
2913 | \l{possibleActions()}{possible drop actions} by calling setDropAction() | - | ||||||||||||
2914 | with your preferred action. If you set a value that is not present in the | - | ||||||||||||
2915 | bitwise OR combination of values returned by possibleActions(), the default | - | ||||||||||||
2916 | copy action will be used. Once a replacement drop action has been set, call | - | ||||||||||||
2917 | accept() instead of acceptProposedAction() to complete the drop operation. | - | ||||||||||||
2918 | - | |||||||||||||
2919 | The mimeData() function provides the data dropped on the widget in a QMimeData | - | ||||||||||||
2920 | object. This contains information about the MIME type of the data in addition to | - | ||||||||||||
2921 | the data itself. | - | ||||||||||||
2922 | - | |||||||||||||
2923 | \sa QMimeData, QDrag, {Drag and Drop} | - | ||||||||||||
2924 | */ | - | ||||||||||||
2925 | - | |||||||||||||
2926 | /*! | - | ||||||||||||
2927 | \fn const QMimeData *QDropEvent::mimeData() const | - | ||||||||||||
2928 | - | |||||||||||||
2929 | Returns the data that was dropped on the widget and its associated MIME | - | ||||||||||||
2930 | type information. | - | ||||||||||||
2931 | */ | - | ||||||||||||
2932 | - | |||||||||||||
2933 | /*! | - | ||||||||||||
2934 | Constructs a drop event of a certain \a type corresponding to a | - | ||||||||||||
2935 | drop at the point specified by \a pos in the destination widget's | - | ||||||||||||
2936 | coordinate system. | - | ||||||||||||
2937 | - | |||||||||||||
2938 | The \a actions indicate which types of drag and drop operation can | - | ||||||||||||
2939 | be performed, and the drag data is stored as MIME-encoded data in \a data. | - | ||||||||||||
2940 | - | |||||||||||||
2941 | The states of the mouse buttons and keyboard modifiers at the time of | - | ||||||||||||
2942 | the drop are specified by \a buttons and \a modifiers. | - | ||||||||||||
2943 | */ // ### pos is in which coordinate system? | - | ||||||||||||
2944 | QDropEvent::QDropEvent(const QPointF& pos, Qt::DropActions actions, const QMimeData *data, | - | ||||||||||||
2945 | Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers, Type type) | - | ||||||||||||
2946 | : QEvent(type), p(pos), mouseState(buttons), | - | ||||||||||||
2947 | modState(modifiers), act(actions), | - | ||||||||||||
2948 | mdata(data) | - | ||||||||||||
2949 | { | - | ||||||||||||
2950 | default_action = QGuiApplicationPrivate::platformIntegration()->drag()->defaultAction(act, modifiers); | - | ||||||||||||
2951 | drop_action = default_action; | - | ||||||||||||
2952 | ignore(); | - | ||||||||||||
2953 | } never executed: end of block | 0 | ||||||||||||
2954 | - | |||||||||||||
2955 | /*! \internal */ | - | ||||||||||||
2956 | QDropEvent::~QDropEvent() | - | ||||||||||||
2957 | { | - | ||||||||||||
2958 | } | - | ||||||||||||
2959 | - | |||||||||||||
2960 | - | |||||||||||||
2961 | /*! | - | ||||||||||||
2962 | If the source of the drag operation is a widget in this | - | ||||||||||||
2963 | application, this function returns that source; otherwise it | - | ||||||||||||
2964 | returns 0. The source of the operation is the first parameter to | - | ||||||||||||
2965 | the QDrag object used instantiate the drag. | - | ||||||||||||
2966 | - | |||||||||||||
2967 | This is useful if your widget needs special behavior when dragging | - | ||||||||||||
2968 | to itself. | - | ||||||||||||
2969 | - | |||||||||||||
2970 | \sa QDrag::QDrag() | - | ||||||||||||
2971 | */ | - | ||||||||||||
2972 | QObject* QDropEvent::source() const | - | ||||||||||||
2973 | { | - | ||||||||||||
2974 | if (const QDragManager *manager = QDragManager::self())
| 0 | ||||||||||||
2975 | return manager->source(); never executed: return manager->source(); | 0 | ||||||||||||
2976 | return 0; never executed: return 0; | 0 | ||||||||||||
2977 | } | - | ||||||||||||
2978 | - | |||||||||||||
2979 | - | |||||||||||||
2980 | void QDropEvent::setDropAction(Qt::DropAction action) | - | ||||||||||||
2981 | { | - | ||||||||||||
2982 | if (!(action & act) && action != Qt::IgnoreAction)
| 0 | ||||||||||||
2983 | action = default_action; never executed: action = default_action; | 0 | ||||||||||||
2984 | drop_action = action; | - | ||||||||||||
2985 | } never executed: end of block | 0 | ||||||||||||
2986 | - | |||||||||||||
2987 | /*! | - | ||||||||||||
2988 | \fn QPoint QDropEvent::pos() const | - | ||||||||||||
2989 | - | |||||||||||||
2990 | Returns the position where the drop was made. | - | ||||||||||||
2991 | */ | - | ||||||||||||
2992 | - | |||||||||||||
2993 | /*! | - | ||||||||||||
2994 | \fn const QPointF& QDropEvent::posF() const | - | ||||||||||||
2995 | - | |||||||||||||
2996 | Returns the position where the drop was made. | - | ||||||||||||
2997 | */ | - | ||||||||||||
2998 | - | |||||||||||||
2999 | /*! | - | ||||||||||||
3000 | \fn Qt::MouseButtons QDropEvent::mouseButtons() const | - | ||||||||||||
3001 | - | |||||||||||||
3002 | Returns the mouse buttons that are pressed.. | - | ||||||||||||
3003 | */ | - | ||||||||||||
3004 | - | |||||||||||||
3005 | /*! | - | ||||||||||||
3006 | \fn Qt::KeyboardModifiers QDropEvent::keyboardModifiers() const | - | ||||||||||||
3007 | - | |||||||||||||
3008 | Returns the modifier keys that are pressed. | - | ||||||||||||
3009 | */ | - | ||||||||||||
3010 | - | |||||||||||||
3011 | /*! | - | ||||||||||||
3012 | \fn void QDropEvent::setDropAction(Qt::DropAction action) | - | ||||||||||||
3013 | - | |||||||||||||
3014 | Sets the \a action to be performed on the data by the target. | - | ||||||||||||
3015 | Use this to override the \l{proposedAction()}{proposed action} | - | ||||||||||||
3016 | with one of the \l{possibleActions()}{possible actions}. | - | ||||||||||||
3017 | - | |||||||||||||
3018 | If you set a drop action that is not one of the possible actions, the | - | ||||||||||||
3019 | drag and drop operation will default to a copy operation. | - | ||||||||||||
3020 | - | |||||||||||||
3021 | Once you have supplied a replacement drop action, call accept() | - | ||||||||||||
3022 | instead of acceptProposedAction(). | - | ||||||||||||
3023 | - | |||||||||||||
3024 | \sa dropAction() | - | ||||||||||||
3025 | */ | - | ||||||||||||
3026 | - | |||||||||||||
3027 | /*! | - | ||||||||||||
3028 | \fn Qt::DropAction QDropEvent::dropAction() const | - | ||||||||||||
3029 | - | |||||||||||||
3030 | Returns the action to be performed on the data by the target. This may be | - | ||||||||||||
3031 | different from the action supplied in proposedAction() if you have called | - | ||||||||||||
3032 | setDropAction() to explicitly choose a drop action. | - | ||||||||||||
3033 | - | |||||||||||||
3034 | \sa setDropAction() | - | ||||||||||||
3035 | */ | - | ||||||||||||
3036 | - | |||||||||||||
3037 | /*! | - | ||||||||||||
3038 | \fn Qt::DropActions QDropEvent::possibleActions() const | - | ||||||||||||
3039 | - | |||||||||||||
3040 | Returns an OR-combination of possible drop actions. | - | ||||||||||||
3041 | - | |||||||||||||
3042 | \sa dropAction() | - | ||||||||||||
3043 | */ | - | ||||||||||||
3044 | - | |||||||||||||
3045 | /*! | - | ||||||||||||
3046 | \fn Qt::DropAction QDropEvent::proposedAction() const | - | ||||||||||||
3047 | - | |||||||||||||
3048 | Returns the proposed drop action. | - | ||||||||||||
3049 | - | |||||||||||||
3050 | \sa dropAction() | - | ||||||||||||
3051 | */ | - | ||||||||||||
3052 | - | |||||||||||||
3053 | /*! | - | ||||||||||||
3054 | \fn void QDropEvent::acceptProposedAction() | - | ||||||||||||
3055 | - | |||||||||||||
3056 | Sets the drop action to be the proposed action. | - | ||||||||||||
3057 | - | |||||||||||||
3058 | \sa setDropAction(), proposedAction(), {QEvent::accept()}{accept()} | - | ||||||||||||
3059 | */ | - | ||||||||||||
3060 | - | |||||||||||||
3061 | /*! | - | ||||||||||||
3062 | \class QDragEnterEvent | - | ||||||||||||
3063 | \brief The QDragEnterEvent class provides an event which is sent | - | ||||||||||||
3064 | to a widget when a drag and drop action enters it. | - | ||||||||||||
3065 | - | |||||||||||||
3066 | \ingroup events | - | ||||||||||||
3067 | \ingroup draganddrop | - | ||||||||||||
3068 | \inmodule QtGui | - | ||||||||||||
3069 | - | |||||||||||||
3070 | A widget must accept this event in order to receive the \l | - | ||||||||||||
3071 | {QDragMoveEvent}{drag move events} that are sent while the drag | - | ||||||||||||
3072 | and drop action is in progress. The drag enter event is always | - | ||||||||||||
3073 | immediately followed by a drag move event. | - | ||||||||||||
3074 | - | |||||||||||||
3075 | QDragEnterEvent inherits most of its functionality from | - | ||||||||||||
3076 | QDragMoveEvent, which in turn inherits most of its functionality | - | ||||||||||||
3077 | from QDropEvent. | - | ||||||||||||
3078 | - | |||||||||||||
3079 | \sa QDragLeaveEvent, QDragMoveEvent, QDropEvent | - | ||||||||||||
3080 | */ | - | ||||||||||||
3081 | - | |||||||||||||
3082 | /*! | - | ||||||||||||
3083 | Constructs a QDragEnterEvent that represents a drag entering a | - | ||||||||||||
3084 | widget at the given \a point with mouse and keyboard states specified by | - | ||||||||||||
3085 | \a buttons and \a modifiers. | - | ||||||||||||
3086 | - | |||||||||||||
3087 | The drag data is passed as MIME-encoded information in \a data, and the | - | ||||||||||||
3088 | specified \a actions describe the possible types of drag and drop | - | ||||||||||||
3089 | operation that can be performed. | - | ||||||||||||
3090 | - | |||||||||||||
3091 | \warning Do not create a QDragEnterEvent yourself since these | - | ||||||||||||
3092 | objects rely on Qt's internal state. | - | ||||||||||||
3093 | */ | - | ||||||||||||
3094 | QDragEnterEvent::QDragEnterEvent(const QPoint& point, Qt::DropActions actions, const QMimeData *data, | - | ||||||||||||
3095 | Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers) | - | ||||||||||||
3096 | : QDragMoveEvent(point, actions, data, buttons, modifiers, DragEnter) | - | ||||||||||||
3097 | {} never executed: end of block | 0 | ||||||||||||
3098 | - | |||||||||||||
3099 | /*! \internal | - | ||||||||||||
3100 | */ | - | ||||||||||||
3101 | QDragEnterEvent::~QDragEnterEvent() | - | ||||||||||||
3102 | { | - | ||||||||||||
3103 | } | - | ||||||||||||
3104 | - | |||||||||||||
3105 | /*! | - | ||||||||||||
3106 | \class QDragMoveEvent | - | ||||||||||||
3107 | \brief The QDragMoveEvent class provides an event which is sent while a drag and drop action is in progress. | - | ||||||||||||
3108 | - | |||||||||||||
3109 | \ingroup events | - | ||||||||||||
3110 | \ingroup draganddrop | - | ||||||||||||
3111 | \inmodule QtGui | - | ||||||||||||
3112 | - | |||||||||||||
3113 | A widget will receive drag move events repeatedly while the drag | - | ||||||||||||
3114 | is within its boundaries, if it accepts | - | ||||||||||||
3115 | \l{QWidget::setAcceptDrops()}{drop events} and \l | - | ||||||||||||
3116 | {QWidget::dragEnterEvent()}{enter events}. The widget should | - | ||||||||||||
3117 | examine the event to see what kind of \l{mimeData()}{data} it | - | ||||||||||||
3118 | provides, and call the accept() function to accept the drop if appropriate. | - | ||||||||||||
3119 | - | |||||||||||||
3120 | The rectangle supplied by the answerRect() function can be used to restrict | - | ||||||||||||
3121 | drops to certain parts of the widget. For example, we can check whether the | - | ||||||||||||
3122 | rectangle intersects with the geometry of a certain child widget and only | - | ||||||||||||
3123 | call \l{QDropEvent::acceptProposedAction()}{acceptProposedAction()} if that | - | ||||||||||||
3124 | is the case. | - | ||||||||||||
3125 | - | |||||||||||||
3126 | Note that this class inherits most of its functionality from | - | ||||||||||||
3127 | QDropEvent. | - | ||||||||||||
3128 | - | |||||||||||||
3129 | \sa QDragEnterEvent, QDragLeaveEvent, QDropEvent | - | ||||||||||||
3130 | */ | - | ||||||||||||
3131 | - | |||||||||||||
3132 | /*! | - | ||||||||||||
3133 | \class QDragLeaveEvent | - | ||||||||||||
3134 | \brief The QDragLeaveEvent class provides an event that is sent to a widget when a drag and drop action leaves it. | - | ||||||||||||
3135 | - | |||||||||||||
3136 | \ingroup events | - | ||||||||||||
3137 | \ingroup draganddrop | - | ||||||||||||
3138 | \inmodule QtGui | - | ||||||||||||
3139 | - | |||||||||||||
3140 | This event is always preceded by a QDragEnterEvent and a series | - | ||||||||||||
3141 | of \l{QDragMoveEvent}s. It is not sent if a QDropEvent is sent | - | ||||||||||||
3142 | instead. | - | ||||||||||||
3143 | - | |||||||||||||
3144 | \sa QDragEnterEvent, QDragMoveEvent, QDropEvent | - | ||||||||||||
3145 | */ | - | ||||||||||||
3146 | - | |||||||||||||
3147 | /*! | - | ||||||||||||
3148 | Constructs a QDragLeaveEvent. | - | ||||||||||||
3149 | - | |||||||||||||
3150 | \warning Do not create a QDragLeaveEvent yourself since these | - | ||||||||||||
3151 | objects rely on Qt's internal state. | - | ||||||||||||
3152 | */ | - | ||||||||||||
3153 | QDragLeaveEvent::QDragLeaveEvent() | - | ||||||||||||
3154 | : QEvent(DragLeave) | - | ||||||||||||
3155 | {} never executed: end of block | 0 | ||||||||||||
3156 | - | |||||||||||||
3157 | /*! \internal | - | ||||||||||||
3158 | */ | - | ||||||||||||
3159 | QDragLeaveEvent::~QDragLeaveEvent() | - | ||||||||||||
3160 | { | - | ||||||||||||
3161 | } | - | ||||||||||||
3162 | #endif // QT_NO_DRAGANDDROP | - | ||||||||||||
3163 | - | |||||||||||||
3164 | /*! | - | ||||||||||||
3165 | \class QHelpEvent | - | ||||||||||||
3166 | \brief The QHelpEvent class provides an event that is used to request helpful information | - | ||||||||||||
3167 | about a particular point in a widget. | - | ||||||||||||
3168 | - | |||||||||||||
3169 | \ingroup events | - | ||||||||||||
3170 | \ingroup helpsystem | - | ||||||||||||
3171 | \inmodule QtGui | - | ||||||||||||
3172 | - | |||||||||||||
3173 | This event can be intercepted in applications to provide tooltips | - | ||||||||||||
3174 | or "What's This?" help for custom widgets. The type() can be | - | ||||||||||||
3175 | either QEvent::ToolTip or QEvent::WhatsThis. | - | ||||||||||||
3176 | - | |||||||||||||
3177 | \sa QToolTip, QWhatsThis, QStatusTipEvent, QWhatsThisClickedEvent | - | ||||||||||||
3178 | */ | - | ||||||||||||
3179 | - | |||||||||||||
3180 | /*! | - | ||||||||||||
3181 | Constructs a help event with the given \a type corresponding to the | - | ||||||||||||
3182 | widget-relative position specified by \a pos and the global position | - | ||||||||||||
3183 | specified by \a globalPos. | - | ||||||||||||
3184 | - | |||||||||||||
3185 | \a type must be either QEvent::ToolTip or QEvent::WhatsThis. | - | ||||||||||||
3186 | - | |||||||||||||
3187 | \sa pos(), globalPos() | - | ||||||||||||
3188 | */ | - | ||||||||||||
3189 | QHelpEvent::QHelpEvent(Type type, const QPoint &pos, const QPoint &globalPos) | - | ||||||||||||
3190 | : QEvent(type), p(pos), gp(globalPos) | - | ||||||||||||
3191 | {} never executed: end of block | 0 | ||||||||||||
3192 | - | |||||||||||||
3193 | /*! | - | ||||||||||||
3194 | \fn int QHelpEvent::x() const | - | ||||||||||||
3195 | - | |||||||||||||
3196 | Same as pos().x(). | - | ||||||||||||
3197 | - | |||||||||||||
3198 | \sa y(), pos(), globalPos() | - | ||||||||||||
3199 | */ | - | ||||||||||||
3200 | - | |||||||||||||
3201 | /*! | - | ||||||||||||
3202 | \fn int QHelpEvent::y() const | - | ||||||||||||
3203 | - | |||||||||||||
3204 | Same as pos().y(). | - | ||||||||||||
3205 | - | |||||||||||||
3206 | \sa x(), pos(), globalPos() | - | ||||||||||||
3207 | */ | - | ||||||||||||
3208 | - | |||||||||||||
3209 | /*! | - | ||||||||||||
3210 | \fn int QHelpEvent::globalX() const | - | ||||||||||||
3211 | - | |||||||||||||
3212 | Same as globalPos().x(). | - | ||||||||||||
3213 | - | |||||||||||||
3214 | \sa x(), globalY(), globalPos() | - | ||||||||||||
3215 | */ | - | ||||||||||||
3216 | - | |||||||||||||
3217 | /*! | - | ||||||||||||
3218 | \fn int QHelpEvent::globalY() const | - | ||||||||||||
3219 | - | |||||||||||||
3220 | Same as globalPos().y(). | - | ||||||||||||
3221 | - | |||||||||||||
3222 | \sa y(), globalX(), globalPos() | - | ||||||||||||
3223 | */ | - | ||||||||||||
3224 | - | |||||||||||||
3225 | /*! | - | ||||||||||||
3226 | \fn const QPoint &QHelpEvent::pos() const | - | ||||||||||||
3227 | - | |||||||||||||
3228 | Returns the mouse cursor position when the event was generated, | - | ||||||||||||
3229 | relative to the widget to which the event is dispatched. | - | ||||||||||||
3230 | - | |||||||||||||
3231 | \sa globalPos(), x(), y() | - | ||||||||||||
3232 | */ | - | ||||||||||||
3233 | - | |||||||||||||
3234 | /*! | - | ||||||||||||
3235 | \fn const QPoint &QHelpEvent::globalPos() const | - | ||||||||||||
3236 | - | |||||||||||||
3237 | Returns the mouse cursor position when the event was generated | - | ||||||||||||
3238 | in global coordinates. | - | ||||||||||||
3239 | - | |||||||||||||
3240 | \sa pos(), globalX(), globalY() | - | ||||||||||||
3241 | */ | - | ||||||||||||
3242 | - | |||||||||||||
3243 | /*! \internal | - | ||||||||||||
3244 | */ | - | ||||||||||||
3245 | QHelpEvent::~QHelpEvent() | - | ||||||||||||
3246 | { | - | ||||||||||||
3247 | } | - | ||||||||||||
3248 | - | |||||||||||||
3249 | #ifndef QT_NO_STATUSTIP | - | ||||||||||||
3250 | - | |||||||||||||
3251 | /*! | - | ||||||||||||
3252 | \class QStatusTipEvent | - | ||||||||||||
3253 | \brief The QStatusTipEvent class provides an event that is used to show messages in a status bar. | - | ||||||||||||
3254 | - | |||||||||||||
3255 | \ingroup events | - | ||||||||||||
3256 | \ingroup helpsystem | - | ||||||||||||
3257 | \inmodule QtGui | - | ||||||||||||
3258 | - | |||||||||||||
3259 | Status tips can be set on a widget using the | - | ||||||||||||
3260 | QWidget::setStatusTip() function. They are shown in the status | - | ||||||||||||
3261 | bar when the mouse cursor enters the widget. For example: | - | ||||||||||||
3262 | - | |||||||||||||
3263 | \table 100% | - | ||||||||||||
3264 | \row | - | ||||||||||||
3265 | \li | - | ||||||||||||
3266 | \snippet qstatustipevent/main.cpp 1 | - | ||||||||||||
3267 | \dots | - | ||||||||||||
3268 | \snippet qstatustipevent/main.cpp 3 | - | ||||||||||||
3269 | \li | - | ||||||||||||
3270 | \image qstatustipevent-widget.png Widget with status tip. | - | ||||||||||||
3271 | \endtable | - | ||||||||||||
3272 | - | |||||||||||||
3273 | Status tips can also be set on actions using the | - | ||||||||||||
3274 | QAction::setStatusTip() function: | - | ||||||||||||
3275 | - | |||||||||||||
3276 | \table 100% | - | ||||||||||||
3277 | \row | - | ||||||||||||
3278 | \li | - | ||||||||||||
3279 | \snippet qstatustipevent/main.cpp 0 | - | ||||||||||||
3280 | \snippet qstatustipevent/main.cpp 2 | - | ||||||||||||
3281 | \dots | - | ||||||||||||
3282 | \snippet qstatustipevent/main.cpp 3 | - | ||||||||||||
3283 | \li | - | ||||||||||||
3284 | \image qstatustipevent-action.png Action with status tip. | - | ||||||||||||
3285 | \endtable | - | ||||||||||||
3286 | - | |||||||||||||
3287 | Finally, status tips are supported for the item view classes | - | ||||||||||||
3288 | through the Qt::StatusTipRole enum value. | - | ||||||||||||
3289 | - | |||||||||||||
3290 | \sa QStatusBar, QHelpEvent, QWhatsThisClickedEvent | - | ||||||||||||
3291 | */ | - | ||||||||||||
3292 | - | |||||||||||||
3293 | /*! | - | ||||||||||||
3294 | Constructs a status tip event with the text specified by \a tip. | - | ||||||||||||
3295 | - | |||||||||||||
3296 | \sa tip() | - | ||||||||||||
3297 | */ | - | ||||||||||||
3298 | QStatusTipEvent::QStatusTipEvent(const QString &tip) | - | ||||||||||||
3299 | : QEvent(StatusTip), s(tip) | - | ||||||||||||
3300 | {} never executed: end of block | 0 | ||||||||||||
3301 | - | |||||||||||||
3302 | /*! \internal | - | ||||||||||||
3303 | */ | - | ||||||||||||
3304 | QStatusTipEvent::~QStatusTipEvent() | - | ||||||||||||
3305 | { | - | ||||||||||||
3306 | } | - | ||||||||||||
3307 | - | |||||||||||||
3308 | /*! | - | ||||||||||||
3309 | \fn QString QStatusTipEvent::tip() const | - | ||||||||||||
3310 | - | |||||||||||||
3311 | Returns the message to show in the status bar. | - | ||||||||||||
3312 | - | |||||||||||||
3313 | \sa QStatusBar::showMessage() | - | ||||||||||||
3314 | */ | - | ||||||||||||
3315 | - | |||||||||||||
3316 | #endif // QT_NO_STATUSTIP | - | ||||||||||||
3317 | - | |||||||||||||
3318 | #ifndef QT_NO_WHATSTHIS | - | ||||||||||||
3319 | - | |||||||||||||
3320 | /*! | - | ||||||||||||
3321 | \class QWhatsThisClickedEvent | - | ||||||||||||
3322 | \brief The QWhatsThisClickedEvent class provides an event that | - | ||||||||||||
3323 | can be used to handle hyperlinks in a "What's This?" text. | - | ||||||||||||
3324 | - | |||||||||||||
3325 | \ingroup events | - | ||||||||||||
3326 | \ingroup helpsystem | - | ||||||||||||
3327 | \inmodule QtGui | - | ||||||||||||
3328 | - | |||||||||||||
3329 | \sa QWhatsThis, QHelpEvent, QStatusTipEvent | - | ||||||||||||
3330 | */ | - | ||||||||||||
3331 | - | |||||||||||||
3332 | /*! | - | ||||||||||||
3333 | Constructs an event containing a URL specified by \a href when a link | - | ||||||||||||
3334 | is clicked in a "What's This?" message. | - | ||||||||||||
3335 | - | |||||||||||||
3336 | \sa href() | - | ||||||||||||
3337 | */ | - | ||||||||||||
3338 | QWhatsThisClickedEvent::QWhatsThisClickedEvent(const QString &href) | - | ||||||||||||
3339 | : QEvent(WhatsThisClicked), s(href) | - | ||||||||||||
3340 | {} never executed: end of block | 0 | ||||||||||||
3341 | - | |||||||||||||
3342 | /*! \internal | - | ||||||||||||
3343 | */ | - | ||||||||||||
3344 | QWhatsThisClickedEvent::~QWhatsThisClickedEvent() | - | ||||||||||||
3345 | { | - | ||||||||||||
3346 | } | - | ||||||||||||
3347 | - | |||||||||||||
3348 | /*! | - | ||||||||||||
3349 | \fn QString QWhatsThisClickedEvent::href() const | - | ||||||||||||
3350 | - | |||||||||||||
3351 | Returns the URL that was clicked by the user in the "What's | - | ||||||||||||
3352 | This?" text. | - | ||||||||||||
3353 | */ | - | ||||||||||||
3354 | - | |||||||||||||
3355 | #endif // QT_NO_WHATSTHIS | - | ||||||||||||
3356 | - | |||||||||||||
3357 | #ifndef QT_NO_ACTION | - | ||||||||||||
3358 | - | |||||||||||||
3359 | /*! | - | ||||||||||||
3360 | \class QActionEvent | - | ||||||||||||
3361 | \brief The QActionEvent class provides an event that is generated | - | ||||||||||||
3362 | when a QAction is added, removed, or changed. | - | ||||||||||||
3363 | - | |||||||||||||
3364 | \ingroup events | - | ||||||||||||
3365 | \inmodule QtGui | - | ||||||||||||
3366 | - | |||||||||||||
3367 | Actions can be added to widgets using QWidget::addAction(). This | - | ||||||||||||
3368 | generates an \l ActionAdded event, which you can handle to provide | - | ||||||||||||
3369 | custom behavior. For example, QToolBar reimplements | - | ||||||||||||
3370 | QWidget::actionEvent() to create \l{QToolButton}s for the | - | ||||||||||||
3371 | actions. | - | ||||||||||||
3372 | - | |||||||||||||
3373 | \sa QAction, QWidget::addAction(), QWidget::removeAction(), QWidget::actions() | - | ||||||||||||
3374 | */ | - | ||||||||||||
3375 | - | |||||||||||||
3376 | /*! | - | ||||||||||||
3377 | Constructs an action event. The \a type can be \l ActionChanged, | - | ||||||||||||
3378 | \l ActionAdded, or \l ActionRemoved. | - | ||||||||||||
3379 | - | |||||||||||||
3380 | \a action is the action that is changed, added, or removed. If \a | - | ||||||||||||
3381 | type is ActionAdded, the action is to be inserted before the | - | ||||||||||||
3382 | action \a before. If \a before is 0, the action is appended. | - | ||||||||||||
3383 | */ | - | ||||||||||||
3384 | QActionEvent::QActionEvent(int type, QAction *action, QAction *before) | - | ||||||||||||
3385 | : QEvent(static_cast<QEvent::Type>(type)), act(action), bef(before) | - | ||||||||||||
3386 | {} never executed: end of block | 0 | ||||||||||||
3387 | - | |||||||||||||
3388 | /*! \internal | - | ||||||||||||
3389 | */ | - | ||||||||||||
3390 | QActionEvent::~QActionEvent() | - | ||||||||||||
3391 | { | - | ||||||||||||
3392 | } | - | ||||||||||||
3393 | - | |||||||||||||
3394 | /*! | - | ||||||||||||
3395 | \fn QAction *QActionEvent::action() const | - | ||||||||||||
3396 | - | |||||||||||||
3397 | Returns the action that is changed, added, or removed. | - | ||||||||||||
3398 | - | |||||||||||||
3399 | \sa before() | - | ||||||||||||
3400 | */ | - | ||||||||||||
3401 | - | |||||||||||||
3402 | /*! | - | ||||||||||||
3403 | \fn QAction *QActionEvent::before() const | - | ||||||||||||
3404 | - | |||||||||||||
3405 | If type() is \l ActionAdded, returns the action that should | - | ||||||||||||
3406 | appear before action(). If this function returns 0, the action | - | ||||||||||||
3407 | should be appended to already existing actions on the same | - | ||||||||||||
3408 | widget. | - | ||||||||||||
3409 | - | |||||||||||||
3410 | \sa action(), QWidget::actions() | - | ||||||||||||
3411 | */ | - | ||||||||||||
3412 | - | |||||||||||||
3413 | #endif // QT_NO_ACTION | - | ||||||||||||
3414 | - | |||||||||||||
3415 | /*! | - | ||||||||||||
3416 | \class QHideEvent | - | ||||||||||||
3417 | \brief The QHideEvent class provides an event which is sent after a widget is hidden. | - | ||||||||||||
3418 | - | |||||||||||||
3419 | \ingroup events | - | ||||||||||||
3420 | \inmodule QtGui | - | ||||||||||||
3421 | - | |||||||||||||
3422 | This event is sent just before QWidget::hide() returns, and also | - | ||||||||||||
3423 | when a top-level window has been hidden (iconified) by the user. | - | ||||||||||||
3424 | - | |||||||||||||
3425 | If spontaneous() is true, the event originated outside the | - | ||||||||||||
3426 | application. In this case, the user hid the window using the | - | ||||||||||||
3427 | window manager controls, either by iconifying the window or by | - | ||||||||||||
3428 | switching to another virtual desktop where the window is not | - | ||||||||||||
3429 | visible. The window will become hidden but not withdrawn. If the | - | ||||||||||||
3430 | window was iconified, QWidget::isMinimized() returns \c true. | - | ||||||||||||
3431 | - | |||||||||||||
3432 | \sa QShowEvent | - | ||||||||||||
3433 | */ | - | ||||||||||||
3434 | - | |||||||||||||
3435 | /*! | - | ||||||||||||
3436 | Constructs a QHideEvent. | - | ||||||||||||
3437 | */ | - | ||||||||||||
3438 | QHideEvent::QHideEvent() | - | ||||||||||||
3439 | : QEvent(Hide) | - | ||||||||||||
3440 | {} never executed: end of block | 0 | ||||||||||||
3441 | - | |||||||||||||
3442 | /*! \internal | - | ||||||||||||
3443 | */ | - | ||||||||||||
3444 | QHideEvent::~QHideEvent() | - | ||||||||||||
3445 | { | - | ||||||||||||
3446 | } | - | ||||||||||||
3447 | - | |||||||||||||
3448 | /*! | - | ||||||||||||
3449 | \class QShowEvent | - | ||||||||||||
3450 | \brief The QShowEvent class provides an event that is sent when a widget is shown. | - | ||||||||||||
3451 | - | |||||||||||||
3452 | \ingroup events | - | ||||||||||||
3453 | \inmodule QtGui | - | ||||||||||||
3454 | - | |||||||||||||
3455 | There are two kinds of show events: show events caused by the | - | ||||||||||||
3456 | window system (spontaneous), and internal show events. Spontaneous (QEvent::spontaneous()) | - | ||||||||||||
3457 | show events are sent just after the window system shows the | - | ||||||||||||
3458 | window; they are also sent when a top-level window is redisplayed | - | ||||||||||||
3459 | after being iconified. Internal show events are delivered just | - | ||||||||||||
3460 | before the widget becomes visible. | - | ||||||||||||
3461 | - | |||||||||||||
3462 | \sa QHideEvent | - | ||||||||||||
3463 | */ | - | ||||||||||||
3464 | - | |||||||||||||
3465 | /*! | - | ||||||||||||
3466 | Constructs a QShowEvent. | - | ||||||||||||
3467 | */ | - | ||||||||||||
3468 | QShowEvent::QShowEvent() | - | ||||||||||||
3469 | : QEvent(Show) | - | ||||||||||||
3470 | {} never executed: end of block | 0 | ||||||||||||
3471 | - | |||||||||||||
3472 | /*! \internal | - | ||||||||||||
3473 | */ | - | ||||||||||||
3474 | QShowEvent::~QShowEvent() | - | ||||||||||||
3475 | { | - | ||||||||||||
3476 | } | - | ||||||||||||
3477 | - | |||||||||||||
3478 | /*! | - | ||||||||||||
3479 | \class QFileOpenEvent | - | ||||||||||||
3480 | \brief The QFileOpenEvent class provides an event that will be | - | ||||||||||||
3481 | sent when there is a request to open a file or a URL. | - | ||||||||||||
3482 | - | |||||||||||||
3483 | \ingroup events | - | ||||||||||||
3484 | \inmodule QtGui | - | ||||||||||||
3485 | - | |||||||||||||
3486 | File open events will be sent to the QApplication::instance() | - | ||||||||||||
3487 | when the operating system requests that a file or URL should be opened. | - | ||||||||||||
3488 | This is a high-level event that can be caused by different user actions | - | ||||||||||||
3489 | depending on the user's desktop environment; for example, double | - | ||||||||||||
3490 | clicking on an file icon in the Finder on \macos. | - | ||||||||||||
3491 | - | |||||||||||||
3492 | This event is only used to notify the application of a request. | - | ||||||||||||
3493 | It may be safely ignored. | - | ||||||||||||
3494 | - | |||||||||||||
3495 | \note This class is currently supported for \macos only. | - | ||||||||||||
3496 | - | |||||||||||||
3497 | \section1 \macos Example | - | ||||||||||||
3498 | - | |||||||||||||
3499 | In order to trigger the event on \macos, the application must be configured | - | ||||||||||||
3500 | to let the OS know what kind of file(s) it should react on. | - | ||||||||||||
3501 | - | |||||||||||||
3502 | For example, the following \c Info.plist file declares that the application | - | ||||||||||||
3503 | can act as a viewer for files with a PNG extension: | - | ||||||||||||
3504 | - | |||||||||||||
3505 | \snippet qfileopenevent/Info.plist Custom Info.plist | - | ||||||||||||
3506 | - | |||||||||||||
3507 | The following implementation of a QApplication subclass prints the path to | - | ||||||||||||
3508 | the file that was, for example, dropped on the Dock icon of the application. | - | ||||||||||||
3509 | - | |||||||||||||
3510 | \snippet qfileopenevent/main.cpp QApplication subclass | - | ||||||||||||
3511 | */ | - | ||||||||||||
3512 | - | |||||||||||||
3513 | /*! | - | ||||||||||||
3514 | \internal | - | ||||||||||||
3515 | - | |||||||||||||
3516 | Constructs a file open event for the given \a file. | - | ||||||||||||
3517 | */ | - | ||||||||||||
3518 | QFileOpenEvent::QFileOpenEvent(const QString &file) | - | ||||||||||||
3519 | : QEvent(FileOpen), f(file), m_url(QUrl::fromLocalFile(file)) | - | ||||||||||||
3520 | { | - | ||||||||||||
3521 | } never executed: end of block | 0 | ||||||||||||
3522 | - | |||||||||||||
3523 | /*! | - | ||||||||||||
3524 | \internal | - | ||||||||||||
3525 | - | |||||||||||||
3526 | Constructs a file open event for the given \a url. | - | ||||||||||||
3527 | */ | - | ||||||||||||
3528 | QFileOpenEvent::QFileOpenEvent(const QUrl &url) | - | ||||||||||||
3529 | : QEvent(FileOpen), f(url.toLocalFile()), m_url(url) | - | ||||||||||||
3530 | { | - | ||||||||||||
3531 | } never executed: end of block | 0 | ||||||||||||
3532 | - | |||||||||||||
3533 | - | |||||||||||||
3534 | /*! \internal | - | ||||||||||||
3535 | */ | - | ||||||||||||
3536 | QFileOpenEvent::~QFileOpenEvent() | - | ||||||||||||
3537 | { | - | ||||||||||||
3538 | } | - | ||||||||||||
3539 | - | |||||||||||||
3540 | /*! | - | ||||||||||||
3541 | \fn QString QFileOpenEvent::file() const | - | ||||||||||||
3542 | - | |||||||||||||
3543 | Returns the file that is being opened. | - | ||||||||||||
3544 | */ | - | ||||||||||||
3545 | - | |||||||||||||
3546 | /*! | - | ||||||||||||
3547 | \fn QUrl QFileOpenEvent::url() const | - | ||||||||||||
3548 | - | |||||||||||||
3549 | Returns the url that is being opened. | - | ||||||||||||
3550 | - | |||||||||||||
3551 | \since 4.6 | - | ||||||||||||
3552 | */ | - | ||||||||||||
3553 | - | |||||||||||||
3554 | /*! | - | ||||||||||||
3555 | \fn bool QFileOpenEvent::openFile(QFile &file, QIODevice::OpenMode flags) const | - | ||||||||||||
3556 | - | |||||||||||||
3557 | Opens a QFile on the \a file referenced by this event in the mode specified | - | ||||||||||||
3558 | by \a flags. Returns \c true if successful; otherwise returns \c false. | - | ||||||||||||
3559 | - | |||||||||||||
3560 | This is necessary as some files cannot be opened by name, but require specific | - | ||||||||||||
3561 | information stored in this event. | - | ||||||||||||
3562 | - | |||||||||||||
3563 | \since 4.8 | - | ||||||||||||
3564 | */ | - | ||||||||||||
3565 | bool QFileOpenEvent::openFile(QFile &file, QIODevice::OpenMode flags) const | - | ||||||||||||
3566 | { | - | ||||||||||||
3567 | file.setFileName(f); | - | ||||||||||||
3568 | return file.open(flags); never executed: return file.open(flags); | 0 | ||||||||||||
3569 | } | - | ||||||||||||
3570 | - | |||||||||||||
3571 | #ifndef QT_NO_TOOLBAR | - | ||||||||||||
3572 | /*! | - | ||||||||||||
3573 | \internal | - | ||||||||||||
3574 | \class QToolBarChangeEvent | - | ||||||||||||
3575 | \brief The QToolBarChangeEvent class provides an event that is | - | ||||||||||||
3576 | sent whenever a the toolbar button is clicked on \macos. | - | ||||||||||||
3577 | - | |||||||||||||
3578 | \ingroup events | - | ||||||||||||
3579 | \inmodule QtGui | - | ||||||||||||
3580 | - | |||||||||||||
3581 | The QToolBarChangeEvent is sent when the toolbar button is clicked. On | - | ||||||||||||
3582 | \macos, this is the long oblong button on the right side of the window | - | ||||||||||||
3583 | title bar. The default implementation is to toggle the appearance (hidden or | - | ||||||||||||
3584 | shown) of the associated toolbars for the window. | - | ||||||||||||
3585 | */ | - | ||||||||||||
3586 | - | |||||||||||||
3587 | /*! | - | ||||||||||||
3588 | \internal | - | ||||||||||||
3589 | - | |||||||||||||
3590 | Construct a QToolBarChangeEvent given the current button state in \a state. | - | ||||||||||||
3591 | */ | - | ||||||||||||
3592 | QToolBarChangeEvent::QToolBarChangeEvent(bool t) | - | ||||||||||||
3593 | : |