QPointingDeviceUniqueId 類

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

頭: #include <QPointingDeviceUniqueId>
qmake: QT += gui
Since: Qt 5.8

特性

公共函數

QPointingDeviceUniqueId ()
bool isValid () const
qint64 numericId () const

靜態公共成員

QPointingDeviceUniqueId fromNumericId (qint64 id )
const QMetaObject staticMetaObject
uint qHash (QPointingDeviceUniqueId key , uint seed = 0)
bool operator!= (QPointingDeviceUniqueId lhs , QPointingDeviceUniqueId rhs )
bool operator== (QPointingDeviceUniqueId lhs , QPointingDeviceUniqueId rhs )

詳細描述

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.

另請參閱 QTouchEvent::TouchPoint .

特性文檔編製

numericId : const qint64

This property holds the numeric unique ID of the token represented by a touchpoint

If the device provides a numeric ID, isValid () returns true, and this property provides the numeric ID; otherwise it is -1.

You should not use the value of this property in portable code, but instead rely on equality to identify pointers.

訪問函數:

qint64 numericId () const

另請參閱 isValid ().

成員函數文檔編製

QPointingDeviceUniqueId:: QPointingDeviceUniqueId ()

構造無效的唯一指針 ID。

[static] QPointingDeviceUniqueId QPointingDeviceUniqueId:: fromNumericId ( qint64 id )

Constructs a unique pointer ID from numeric ID id .

bool QPointingDeviceUniqueId:: isValid () const

Returns whether this unique pointer ID is valid, that is, it represents an actual pointer.

相關非成員

uint qHash ( QPointingDeviceUniqueId key , uint seed = 0)

返迴哈希值為 key ,使用 seed 做計算種子。

該函數在 Qt 5.8 引入。

bool operator!= ( QPointingDeviceUniqueId lhs , QPointingDeviceUniqueId rhs )

Returns whether the two unique pointer IDs lhs and rhs identify different pointers ( true ) or not ( false ).

該函數在 Qt 5.8 引入。

bool operator== ( QPointingDeviceUniqueId lhs , QPointingDeviceUniqueId rhs )

Returns whether the two unique pointer IDs lhs and rhs identify the same pointer ( true ) or not ( false ).

該函數在 Qt 5.8 引入。