QPinchGesture

The QPinchGesture class describes a pinch gesture made by the user. More

Inheritance diagram of PySide2.QtWidgets.QPinchGesture

New in version 4.6.

Synopsis

Functions

Detailed Description

A pinch gesture is a form of touch user input in which the user typically touches two points on the input device with a thumb and finger, before moving them closer together or further apart to change the scale factor, zoom, or level of detail of the user interface.

For an overview of gesture handling in Qt and information on using gestures in your applications, see the Gestures in Widgets and Graphics View document.

../../_images/pinchgesture.png

Instead of repeatedly applying the same pinching gesture, the user may continue to touch the input device in one place, and apply a second touch to a new point, continuing the gesture. When this occurs, gesture events will continue to be delivered to the target object, containing an instance of QPinchGesture in the GestureUpdated state.

class QPinchGesture([parent=None])
Parameters

parentQObject

PySide2.QtWidgets.QPinchGesture.ChangeFlag

This enum describes the changes that can occur to the properties of the gesture object.

Constant

Description

QPinchGesture.ScaleFactorChanged

The scale factor held by scaleFactor changed.

QPinchGesture.RotationAngleChanged

The rotation angle held by rotationAngle changed.

QPinchGesture.CenterPointChanged

The center point held by centerPoint changed.

PySide2.QtWidgets.QPinchGesture.centerPoint()
Return type

QPointF

See also

setCenterPoint()

PySide2.QtWidgets.QPinchGesture.changeFlags()
Return type

ChangeFlags

See also

setChangeFlags()

PySide2.QtWidgets.QPinchGesture.lastCenterPoint()
Return type

QPointF

PySide2.QtWidgets.QPinchGesture.lastRotationAngle()
Return type

qreal

PySide2.QtWidgets.QPinchGesture.lastScaleFactor()
Return type

qreal

PySide2.QtWidgets.QPinchGesture.rotationAngle()
Return type

qreal

PySide2.QtWidgets.QPinchGesture.scaleFactor()
Return type

qreal

See also

setScaleFactor()

PySide2.QtWidgets.QPinchGesture.setCenterPoint(value)
Parameters

valueQPointF

See also

centerPoint()

PySide2.QtWidgets.QPinchGesture.setChangeFlags(value)
Parameters

valueChangeFlags

See also

changeFlags()

PySide2.QtWidgets.QPinchGesture.setLastCenterPoint(value)
Parameters

valueQPointF

PySide2.QtWidgets.QPinchGesture.setLastRotationAngle(value)
Parameters

valueqreal

PySide2.QtWidgets.QPinchGesture.setLastScaleFactor(value)
Parameters

valueqreal

PySide2.QtWidgets.QPinchGesture.setRotationAngle(value)
Parameters

valueqreal

See also

rotationAngle()

PySide2.QtWidgets.QPinchGesture.setScaleFactor(value)
Parameters

valueqreal

See also

scaleFactor()

PySide2.QtWidgets.QPinchGesture.setStartCenterPoint(value)
Parameters

valueQPointF

PySide2.QtWidgets.QPinchGesture.setTotalChangeFlags(value)
Parameters

valueChangeFlags

PySide2.QtWidgets.QPinchGesture.setTotalRotationAngle(value)
Parameters

valueqreal

PySide2.QtWidgets.QPinchGesture.setTotalScaleFactor(value)
Parameters

valueqreal

PySide2.QtWidgets.QPinchGesture.startCenterPoint()
Return type

QPointF

PySide2.QtWidgets.QPinchGesture.totalChangeFlags()
Return type

ChangeFlags

PySide2.QtWidgets.QPinchGesture.totalRotationAngle()
Return type

qreal

PySide2.QtWidgets.QPinchGesture.totalScaleFactor()
Return type

qreal