IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)

QPinchGesture Class

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

Article lu   fois.

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

QPinchGesture Class

  • Header: QPinchGesture

  • CMake:

    find_package(Qt6 REQUIRED COMPONENTS Widgets)

    target_link_libraries(mytarget PRIVATE Qt6::Widgets)

  • qmake: QT += widgets

  • Inherits: QGesture

  • Group: QPinchGesture is part of touch, gestures

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.

Image non disponible

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 Qt::GestureUpdated state.

See Also

Member Type Documentation

 

enum QPinchGesture::ChangeFlag

flags QPinchGesture::ChangeFlags

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

Constant

Value

Description

QPinchGesture::ScaleFactorChanged

0x1

The scale factor held by scaleFactor changed.

QPinchGesture::RotationAngleChanged

0x2

The rotation angle held by rotationAngle changed.

QPinchGesture::CenterPointChanged

0x4

The center point held by centerPoint changed.

The ChangeFlags type is a typedef for QFlags<ChangeFlag>. It stores an OR combination of ChangeFlag values.

See Also

Property Documentation

 

centerPoint : QPointF

This property holds the current center point

The center point is the midpoint between the two input points in the gesture.

Access functions:

  • centerPoint() const

  • void setCenterPoint(const &value)

See Also

changeFlags : ChangeFlags

This property holds the property of the gesture that has changed in the current step

This property indicates which of the other properties has changed since the previous gesture event included information about this gesture. You can use this information to determine which aspect of your user interface needs to be updated.

Access functions:

  • changeFlags() const

  • void setChangeFlags( value)

See Also

lastCenterPoint : QPointF

This property holds the last position of the center point recorded for this gesture

Access functions:

  • lastCenterPoint() const

  • void setLastCenterPoint(const &value)

See Also

lastRotationAngle : qreal

This property holds the last reported angle covered by the gesture motion

The last rotation angle is the angle as reported in the rotationAngle property when a previous gesture event was delivered for this gesture.

Access functions:

  • qreal lastRotationAngle() const

  • void setLastRotationAngle(qreal value)

See Also

lastScaleFactor : qreal

This property holds the last scale factor recorded for this gesture

The last scale factor contains the scale factor reported in the scaleFactor property when a previous gesture event included information about this gesture.

If no previous event was delivered with information about this gesture (i.e., this gesture object contains information about the first movement in the gesture) then this property contains zero.

Access functions:

  • qreal lastScaleFactor() const

  • void setLastScaleFactor(qreal value)

See Also

rotationAngle : qreal

This property holds the angle covered by the gesture motion

Access functions:

  • qreal rotationAngle() const

  • void setRotationAngle(qreal value)

See Also

scaleFactor : qreal

This property holds the current scale factor

The scale factor measures the scale factor associated with the distance between two of the user's inputs on a touch device.

Access functions:

  • qreal scaleFactor() const

  • void setScaleFactor(qreal value)

See Also

startCenterPoint : QPointF

This property holds the starting position of the center point

Access functions:

  • startCenterPoint() const

  • void setStartCenterPoint(const &value)

See Also

totalChangeFlags : ChangeFlags

This property holds the property of the gesture that has change

This property indicates which of the other properties has changed since the gesture has started. You can use this information to determine which aspect of your user interface needs to be updated.

Access functions:

  • totalChangeFlags() const

  • void setTotalChangeFlags( value)

See Also

totalRotationAngle : qreal

This property holds the total angle covered by the gesture

This total angle measures the complete angle covered by the gesture. Usually, this is equal to the value held by the rotationAngle property, except in the case where the user performs multiple rotations by removing and repositioning one of the touch points, as described above. In this case, the total angle will be the sum of the rotation angles for the multiple stages of the gesture.

Access functions:

  • qreal totalRotationAngle() const

  • void setTotalRotationAngle(qreal value)

See Also

totalScaleFactor : qreal

This property holds the total scale factor

The total scale factor measures the total change in scale factor from the original value to the current scale factor.

Access functions:

  • qreal totalScaleFactor() const

  • void setTotalScaleFactor(qreal value)

See Also

Member Function Documentation

 

[virtual] QPinchGesture::~QPinchGesture()

Destructor.

Vous avez aimé ce tutoriel ? Alors partagez-le en cliquant sur les boutons suivants : Viadeo Twitter Facebook Share on Google+