QTouchEvent.TouchPoint Class Reference

[ QtGui module]

The TouchPoint class provides information about a touch point in a QTouchEvent . 更多...

方法


详细描述

The TouchPoint class provides information about a touch point in a QTouchEvent .


方法文档编制

int TouchPoint.id ( self )

Returns the id number of this touch point.

Id numbers are globally sequential, starting at zero, meaning the first touch point in the application has id 0, the second has id 1, and so on.

bool TouchPoint.isPrimary ( self )

Returns true if this touch point is the primary touch point. The primary touch point is the point for which the windowing system generates mouse events.

QPointF TouchPoint.lastNormalizedPos ( self )

Returns the normalized position of this touch point from the previous touch event.

The coordinates are normalized to the size of the touch device, i.e. (0,0) is the top-left corner and (1,1) is the bottom-right corner.

另请参阅 normalizedPos () 和 startNormalizedPos ().

QPointF TouchPoint.lastPos ( self )

Returns the position of this touch point from the previous touch event, relative to the widget or QGraphicsItem that received the event.

另请参阅 pos () 和 startPos ().

QPointF TouchPoint.lastScenePos ( self )

Returns the scene position of this touch point from the previous touch event.

The scene position is the position in QGraphicsScene coordinates if the QTouchEvent is handled by a QGraphicsItem.touchEvent() reimplementation, and identical to the screen position for widgets.

另请参阅 scenePos () 和 startScenePos ().

QPointF TouchPoint.lastScreenPos ( self )

Returns the screen position of this touch point from the previous touch event.

另请参阅 screenPos () 和 startScreenPos ().

QPointF TouchPoint.normalizedPos ( self )

Returns the normalized position of this touch point.

The coordinates are normalized to the size of the touch device, i.e. (0,0) is the top-left corner and (1,1) is the bottom-right corner.

另请参阅 startNormalizedPos (), lastNormalizedPos (), and pos ().

QPointF TouchPoint.pos ( self )

Returns the position of this touch point, relative to the widget or QGraphicsItem that received the 事件。

另请参阅 startPos (), lastPos (), screenPos (), scenePos (),和 normalizedPos ().

float TouchPoint.pressure ( self )

Returns the pressure of this touch point. The return value is in the range 0.0 to 1.0.

QRectF TouchPoint.rect ( self )

Returns the rect for this touch point, relative to the widget or QGraphicsItem that received the event. The rect is centered around the point returned by pos ().

注意: This function returns an empty rect if the device does not report touch point sizes.

QPointF TouchPoint.scenePos ( self )

Returns the scene position of this touch point.

The scene position is the position in QGraphicsScene coordinates if the QTouchEvent is handled by a QGraphicsItem.touchEvent() reimplementation, and identical to the screen position for widgets.

另请参阅 startScenePos (), lastScenePos (),和 pos ().

QRectF TouchPoint.sceneRect ( self )

Returns the rect for this touch point in scene coordinates.

注意: This function returns an empty rect if the device does not report touch point sizes.

另请参阅 scenePos () 和 rect ().

QPointF TouchPoint.screenPos ( self )

Returns the screen position of this touch point.

另请参阅 startScreenPos (), lastScreenPos (), and pos ().

QRectF TouchPoint.screenRect ( self )

Returns the rect for this touch point in screen coordinates.

注意: This function returns an empty rect if the device does not report touch point sizes.

另请参阅 screenPos () 和 rect ().

QPointF TouchPoint.startNormalizedPos ( self )

Returns the normalized starting position of this touch point.

The coordinates are normalized to the size of the touch device, i.e. (0,0) is the top-left corner and (1,1) is the bottom-right corner.

另请参阅 normalizedPos () 和 lastNormalizedPos ().

QPointF TouchPoint.startPos ( self )

Returns the starting position of this touch point, relative to the widget or QGraphicsItem that received the event.

另请参阅 pos () 和 lastPos ().

QPointF TouchPoint.startScenePos ( self )

Returns the starting scene position of this touch point.

The scene position is the position in QGraphicsScene coordinates if the QTouchEvent is handled by a QGraphicsItem.touchEvent() reimplementation, and identical to the screen position for widgets.

另请参阅 scenePos () 和 lastScenePos ().

QPointF TouchPoint.startScreenPos ( self )

Returns the starting screen position of this touch point.

另请参阅 screenPos () 和 lastScreenPos ().

Qt.TouchPointState TouchPoint.state ( self )

Returns the current state of this touch point.