QPointingDeviceUniqueId

PyQt5.QtGui.QPointingDeviceUniqueId

Description

QPointingDeviceUniqueId identifies a unique object, such as a tagged token or stylus, which is used with a pointing device.

QPointingDeviceUniqueIds can be compared for equality, and can be used as keys in a QHash. You get access to the numerical ID via numericId(), if the device supports such IDs. For future extensions, though, you should not use that function, but compare objects of this type using the equality operator.

This class is a thin wrapper around an integer ID. You pass it into and out of functions by value.

This type actively prevents you from holding it in a QList, because doing so would be very inefficient. Use a QVector instead, which has the same API as QList, but more efficient storage.

See also

TouchPoint.

Methods

__init__()

TODO


__init__(QPointingDeviceUniqueId)

TODO


__eq__(QPointingDeviceUniqueId) → bool

TODO


@staticmethod
fromNumericId(int) → QPointingDeviceUniqueId

TODO


__hash__() → int

TODO


isValid() → bool

TODO


__ne__(QPointingDeviceUniqueId) → bool

TODO


numericId() → int

TODO