TouchPointclass provides information about a touch point in aQTouchEvent. 更多 …
4.6 版新增。
def
ellipseDiameters
()
def
flags
()
def
id
()
def
lastNormalizedPos
()
def
lastPos
()
def
lastScenePos
()
def
lastScreenPos
()
def
normalizedPos
()
def
pos
()
def
pressure
()
def
rawScreenPositions
()
def
rect
()
def
rotation
()
def
scenePos
()
def
sceneRect
()
def
screenPos
()
def
screenRect
()
def
setEllipseDiameters
(dia)
def
setFlags
(flags)
def
setId
(id)
def
setLastNormalizedPos
(lastNormalizedPos)
def
setLastPos
(lastPos)
def
setLastScenePos
(lastScenePos)
def
setLastScreenPos
(lastScreenPos)
def
setNormalizedPos
(normalizedPos)
def
setPos
(pos)
def
setPressure
(pressure)
def
setRawScreenPositions
(positions)
def
setRect
(rect)
def
setRotation
(angle)
def
setScenePos
(scenePos)
def
setSceneRect
(sceneRect)
def
setScreenPos
(screenPos)
def
setScreenRect
(screenRect)
def
setStartNormalizedPos
(startNormalizedPos)
def
setStartPos
(startPos)
def
setStartScenePos
(startScenePos)
def
setStartScreenPos
(startScreenPos)
def
setState
(state)
def
setUniqueId
(uid)
def
setVelocity
(v)
def
startNormalizedPos
()
def
startPos
()
def
startScenePos
()
def
startScreenPos
()
def
state
()
def
swap
(other)
def
uniqueId
()
def
velocity
()
PySide2.QtGui.QTouchEvent.
TouchPoint
(
other
)
¶
PySide2.QtGui.QTouchEvent.TouchPoint([id=-1])
- param id
int- param other
TouchPoint
构造
TouchPoint
for use in a
QTouchEvent
.
PySide2.QtGui.QTouchEvent.TouchPoint.
InfoFlag
¶
The values of this enum describe additional information about a touch point.
|
常量 |
描述 |
|---|---|
|
QTouchEvent.TouchPoint.Pen |
Indicates that the contact has been made by a designated pointing device (e.g. a pen) instead of a finger. |
|
QTouchEvent.TouchPoint.Token |
Indicates that the contact has been made by a fiducial object (e.g. a knob or other token) instead of a finger. |
PySide2.QtGui.QTouchEvent.TouchPoint.
ellipseDiameters
(
)
¶
QSizeF
Returns the width and height of the bounding ellipse of this touch point. The return value is in logical pixels. Most touchscreens do not detect the shape of the contact point, so a null size is the most common value. In other cases the diameters may be nonzero and equal (the ellipse is approximated as a circle).
PySide2.QtGui.QTouchEvent.TouchPoint.
flags
(
)
¶
InfoFlags
Returns additional information about the touch point.
另请参阅
InfoFlags
PySide2.QtGui.QTouchEvent.TouchPoint.
id
(
)
¶
int
Returns the id number of this touch point.
Do not assume that id numbers start at zero or that they are sequential. Such an assumption is often false due to the way the underlying drivers work.
PySide2.QtGui.QTouchEvent.TouchPoint.
lastNormalizedPos
(
)
¶
QPointF
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.
PySide2.QtGui.QTouchEvent.TouchPoint.
lastPos
(
)
¶
QPointF
Returns the position of this touch point from the previous touch event, relative to the widget or
QGraphicsItem
that received the event.
另请参阅
PySide2.QtGui.QTouchEvent.TouchPoint.
lastScenePos
(
)
¶
QPointF
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.
PySide2.QtGui.QTouchEvent.TouchPoint.
lastScreenPos
(
)
¶
QPointF
Returns the screen position of this touch point from the previous touch event.
PySide2.QtGui.QTouchEvent.TouchPoint.
normalizedPos
(
)
¶
QPointF
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.
PySide2.QtGui.QTouchEvent.TouchPoint.
pos
(
)
¶
QPointF
Returns the position of this touch point, relative to the widget or
QGraphicsItem
that received the event.
PySide2.QtGui.QTouchEvent.TouchPoint.
pressure
(
)
¶
qreal
Returns the pressure of this touch point. The return value is in the range 0.0 to 1.0.
PySide2.QtGui.QTouchEvent.TouchPoint.
rawScreenPositions
(
)
¶
Returns the raw, unfiltered positions for the touch point. The positions are in native screen coordinates. To get local coordinates you can use mapFromGlobal() of the
QWindow
returned by
window()
.
注意
Returns an empty vector if the touch device’s capabilities do not include
RawPositions
.
注意
Native screen coordinates refer to the native orientation of the screen which, in case of mobile devices, is typically portrait. This means that on systems capable of screen orientation changes the positions in this list will not reflect the current orientation (unlike
pos()
,
screenPos()
, etc.) and will always be reported in the native orientation.
另请参阅
capabilities()
device()
window()
PySide2.QtGui.QTouchEvent.TouchPoint.
rect
(
)
¶
QRectF
注意
此函数被弃用。
This function is deprecated since 5.9 because it returns the outer bounds of the touchpoint regardless of rotation, whereas a touchpoint is more correctly modeled as an ellipse at position
pos()
with
ellipseDiameters()
which are independent of
rotation()
.
PySide2.QtGui.QTouchEvent.TouchPoint.
rotation
(
)
¶
qreal
Returns the angular orientation of this touch point. The return value is in degrees, where zero (the default) indicates the finger or token is pointing upwards, a negative angle means it’s rotated to the left, and a positive angle means it’s rotated to the right. Most touchscreens do not detect rotation, so zero is the most common value.
PySide2.QtGui.QTouchEvent.TouchPoint.
scenePos
(
)
¶
QPointF
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.
PySide2.QtGui.QTouchEvent.TouchPoint.
sceneRect
(
)
¶
QRectF
注意
此函数被弃用。
This function is deprecated since 5.9 because it returns the outer bounds of the touchpoint regardless of rotation, whereas a touchpoint is more correctly modeled as an ellipse at position
scenePos()
with
ellipseDiameters()
which are independent of
rotation()
.
PySide2.QtGui.QTouchEvent.TouchPoint.
screenPos
(
)
¶
QPointF
Returns the screen position of this touch point.
PySide2.QtGui.QTouchEvent.TouchPoint.
screenRect
(
)
¶
QRectF
注意
此函数被弃用。
This function is deprecated since 5.9 because it returns the outer bounds of the touchpoint regardless of rotation, whereas a touchpoint is more correctly modeled as an ellipse at position
screenPos()
with
ellipseDiameters()
which are independent of
rotation()
.
PySide2.QtGui.QTouchEvent.TouchPoint.
setEllipseDiameters
(
dia
)
¶
dia
–
QSizeF
另请参阅
PySide2.QtGui.QTouchEvent.TouchPoint.
setLastNormalizedPos
(
lastNormalizedPos
)
¶
lastNormalizedPos
–
QPointF
另请参阅
PySide2.QtGui.QTouchEvent.TouchPoint.
setLastScenePos
(
lastScenePos
)
¶
lastScenePos
–
QPointF
另请参阅
PySide2.QtGui.QTouchEvent.TouchPoint.
setLastScreenPos
(
lastScreenPos
)
¶
lastScreenPos
–
QPointF
另请参阅
PySide2.QtGui.QTouchEvent.TouchPoint.
setNormalizedPos
(
normalizedPos
)
¶
normalizedPos
–
QPointF
另请参阅
PySide2.QtGui.QTouchEvent.TouchPoint.
setPressure
(
pressure
)
¶
pressure
–
qreal
另请参阅
PySide2.QtGui.QTouchEvent.TouchPoint.
setRawScreenPositions
(
positions
)
¶
positions –
另请参阅
PySide2.QtGui.QTouchEvent.TouchPoint.
setRotation
(
angle
)
¶
angle
–
qreal
另请参阅
PySide2.QtGui.QTouchEvent.TouchPoint.
setScenePos
(
scenePos
)
¶
scenePos
–
QPointF
另请参阅
PySide2.QtGui.QTouchEvent.TouchPoint.
setSceneRect
(
sceneRect
)
¶
sceneRect
–
QRectF
注意
此函数被弃用。
另请参阅
PySide2.QtGui.QTouchEvent.TouchPoint.
setScreenPos
(
screenPos
)
¶
screenPos
–
QPointF
另请参阅
PySide2.QtGui.QTouchEvent.TouchPoint.
setScreenRect
(
screenRect
)
¶
screenRect
–
QRectF
注意
此函数被弃用。
另请参阅
PySide2.QtGui.QTouchEvent.TouchPoint.
setStartNormalizedPos
(
startNormalizedPos
)
¶
startNormalizedPos
–
QPointF
另请参阅
PySide2.QtGui.QTouchEvent.TouchPoint.
setStartPos
(
startPos
)
¶
startPos
–
QPointF
另请参阅
PySide2.QtGui.QTouchEvent.TouchPoint.
setStartScenePos
(
startScenePos
)
¶
startScenePos
–
QPointF
另请参阅
PySide2.QtGui.QTouchEvent.TouchPoint.
setStartScreenPos
(
startScreenPos
)
¶
startScreenPos
–
QPointF
另请参阅
PySide2.QtGui.QTouchEvent.TouchPoint.
setUniqueId
(
uid
)
¶
uid
–
qint64
另请参阅
PySide2.QtGui.QTouchEvent.TouchPoint.
startNormalizedPos
(
)
¶
QPointF
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.
PySide2.QtGui.QTouchEvent.TouchPoint.
startPos
(
)
¶
QPointF
Returns the starting position of this touch point, relative to the widget or
QGraphicsItem
that received the event.
PySide2.QtGui.QTouchEvent.TouchPoint.
startScenePos
(
)
¶
QPointF
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.
另请参阅
PySide2.QtGui.QTouchEvent.TouchPoint.
startScreenPos
(
)
¶
QPointF
Returns the starting screen position of this touch point.
PySide2.QtGui.QTouchEvent.TouchPoint.
state
(
)
¶
TouchPointState
Returns the current state of this touch point.
PySide2.QtGui.QTouchEvent.TouchPoint.
swap
(
other
)
¶
other
–
TouchPoint
PySide2.QtGui.QTouchEvent.TouchPoint.
uniqueId
(
)
¶
Returns the unique ID of this touch point or token, if any.
It is normally invalid (see
isValid()
), because touchscreens cannot uniquely identify fingers. But when the
Token
flag is set, it is expected to uniquely identify a specific token (fiducial object).
另请参阅
PySide2.QtGui.QTouchEvent.TouchPoint.
velocity
(
)
¶
Returns a velocity vector for this touch point. The vector is in the screen’s coordinate system, using pixels per seconds for the magnitude.
注意
The returned vector is only valid if the touch device’s capabilities include
Velocity
.
另请参阅
capabilities()
device()