Obsolete Members for QTabletEvent

The following members of class QTabletEvent are deprecated. They are provided to keep old source code working. We strongly advise against using them in new code.

Public Functions

(deprecated (6.0)) QPoint globalPos() const
(deprecated (6.0)) const QPointF globalPosF() const
(deprecated (6.0)) int globalX() const
(deprecated (6.0)) int globalY() const
(deprecated (6.0)) QPoint pos() const
(deprecated (6.0)) const QPointF posF() const
(deprecated (6.0)) qint64 uniqueId() const
(deprecated (6.0)) int x() const
(deprecated (6.0)) int y() const

Member Function Documentation

QPoint QTabletEvent::globalPos() const

This function is deprecated since 6.0. We strongly advise against using it in new code.

Use globalPosition().toPoint() instead.

Returns the global position of the device at the time of the event. This is important on asynchronous windows systems like X11; whenever you move your widgets around in response to mouse events, globalPos() can differ significantly from the current position QCursor::pos().

See also globalX() and globalY().

const QPointF QTabletEvent::globalPosF() const

This function is deprecated since 6.0. We strongly advise against using it in new code.

Use globalPosition() instead. Returns the global position of the device at the time of the event. This is important on asynchronous windows systems like X11; whenever you move your widgets around in response to mouse events, globalPosF() can differ significantly from the current position QCursor::pos().

See also posF().

int QTabletEvent::globalX() const

This function is deprecated since 6.0. We strongly advise against using it in new code.

Use globalPosition().x() instead.

Returns the global x position of the mouse pointer at the time of the event.

See also globalY() and globalPos().

int QTabletEvent::globalY() const

This function is deprecated since 6.0. We strongly advise against using it in new code.

Use globalPosition().y() instead.

Returns the global y position of the tablet device at the time of the event.

See also globalX() and globalPos().

QPoint QTabletEvent::pos() const

This function is deprecated since 6.0. We strongly advise against using it in new code.

Use position().toPoint() instead.

Returns the position of the device, relative to the widget that received the event.

If you move widgets around in response to mouse events, use globalPos() instead of this function.

See also x(), y(), and globalPos().

const QPointF QTabletEvent::posF() const

This function is deprecated since 6.0. We strongly advise against using it in new code.

Use position() instead.

Returns the position of the device, relative to the widget that received the event.

If you move widgets around in response to mouse events, use globalPosF() instead of this function.

See also globalPosF().

qint64 QTabletEvent::uniqueId() const

This function is deprecated since 6.0. We strongly advise against using it in new code.

Use pointingDevice().uniqueId() instead.

Returns a unique ID for the current device, making it possible to differentiate between multiple devices being used at the same time on the tablet.

Support of this feature is dependent on the tablet.

Values for the same device may vary from OS to OS.

Later versions of the Wacom driver for Linux will now report the ID information. If you have a tablet that supports unique ID and are not getting the information on Linux, consider upgrading your driver.

As of Qt 4.2, the unique ID is the same regardless of the orientation of the pen. Earlier versions would report a different value when using the eraser-end versus the pen-end of the stylus on some OS's.

See also pointerType().

int QTabletEvent::x() const

This function is deprecated since 6.0. We strongly advise against using it in new code.

Use position().x() instead.

Returns the x position of the device, relative to the widget that received the event.

See also y() and pos().

int QTabletEvent::y() const

This function is deprecated since 6.0. We strongly advise against using it in new code.

Use position().y() instead.

Returns the y position of the device, relative to the widget that received the event.

See also x() and pos().

© 2024 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.