Qt 4.8
|
The QGestureRecognizer class provides the infrastructure for gesture recognition. More...
#include <qgesturerecognizer.h>
Public Types | |
enum | ResultFlag { Ignore = 0x0001, MayBeGesture = 0x0002, TriggerGesture = 0x0004, FinishGesture = 0x0008, CancelGesture = 0x0010, ResultState_Mask = 0x00ff, ConsumeEventHint = 0x0100, ResultHint_Mask = 0xff00 } |
This enum describes the result of the current event filtering step in a gesture recognizer state machine. More... | |
Public Functions | |
virtual QGesture * | create (QObject *target) |
This function is called by Qt to create a new QGesture object for the given target (QWidget or QGraphicsObject). More... | |
QGestureRecognizer () | |
Constructs a new gesture recognizer object. More... | |
virtual Result | recognize (QGesture *state, QObject *watched, QEvent *event)=0 |
Handles the given event for the watched object, updating the state of the gesture object as required, and returns a suitable result for the current recognition step. More... | |
virtual void | reset (QGesture *state) |
This function is called by the framework to reset a given gesture. More... | |
virtual | ~QGestureRecognizer () |
Destroys the gesture recognizer. More... | |
Static Public Functions | |
static Qt::GestureType | registerRecognizer (QGestureRecognizer *recognizer) |
Registers the given recognizer in the gesture framework and returns a gesture ID for it. More... | |
static void | unregisterRecognizer (Qt::GestureType type) |
Unregisters all gesture recognizers of the specified type. More... | |
The QGestureRecognizer class provides the infrastructure for gesture recognition.
Gesture recognizers are responsible for creating and managing QGesture objects and monitoring input events sent to QWidget and QGraphicsObject subclasses. QGestureRecognizer is the base class for implementing custom gestures.
Developers that only need to provide gesture recognition for standard gestures do not need to use this class directly. Instances will be created behind the scenes by the framework.
For an overview of gesture handling in Qt and information on using gestures in your applications, see the Gestures Programming document.
The process of recognizing gestures involves filtering input events sent to specific objects, and modifying the associated QGesture objects to include relevant information about the user's input.
Gestures are created when the framework calls create() to handle user input for a particular instance of a QWidget or QGraphicsObject subclass. A QGesture object is created for each widget or item that is configured to use gestures.
Once a QGesture has been created for a target object, the gesture recognizer will receive events for it in its recognize() handler function.
When a gesture is canceled, the reset() function is called, giving the recognizer the chance to update the appropriate properties in the corresponding QGesture object.
To add support for new gestures, you need to derive from QGestureRecognizer to create a custom recognizer class, construct an instance of this class, and register it with the application by calling QGestureRecognizer::registerRecognizer(). You can also subclass QGesture to create a custom gesture class, or rely on dynamic properties to express specific details of the gesture you want to handle.
Your custom QGestureRecognizer subclass needs to reimplement the recognize() function to handle and filter the incoming input events for QWidget and QGraphicsObject subclasses. Although the logic for gesture recognition is implemented in this function, you can store persistent information about the state of the recognition process in the QGesture object supplied. The recognize() function must return a value of QGestureRecognizer::Result that indicates the state of recognition for a given gesture and target object. This determines whether or not a gesture event will be delivered to a target object.
If you choose to represent a gesture by a custom QGesture subclass, you will need to reimplement the create() function to construct instances of your gesture class. Similarly, you may need to reimplement the reset() function if your custom gesture objects need to be specially handled when a gesture is canceled.
Definition at line 59 of file qgesturerecognizer.h.
This enum describes the result of the current event filtering step in a gesture recognizer state machine.
The result consists of a state value (one of Ignore, MayBeGesture, TriggerGesture, FinishGesture, CancelGesture) and an optional hint (ConsumeEventHint).
Enumerator | |
---|---|
Ignore | |
MayBeGesture | |
TriggerGesture | |
FinishGesture | |
CancelGesture | |
ResultState_Mask | |
ConsumeEventHint | |
ResultHint_Mask |
Definition at line 62 of file qgesturerecognizer.h.
QGestureRecognizer::QGestureRecognizer | ( | ) |
Constructs a new gesture recognizer object.
Definition at line 158 of file qgesturerecognizer.cpp.
|
virtual |
This function is called by Qt to create a new QGesture object for the given target (QWidget or QGraphicsObject).
Reimplement this function to create a custom QGesture-derived gesture object if necessary.
The application takes ownership of the created gesture object.
Reimplemented in QTapAndHoldGestureRecognizer, QFlickGestureRecognizer, QTapGestureRecognizer, QSwipeGestureRecognizer, QMacPinchGestureRecognizer, QPinchGestureRecognizer, QMacSwipeGestureRecognizer, QWinNativePanGestureRecognizer, and QPanGestureRecognizer.
Definition at line 178 of file qgesturerecognizer.cpp.
Referenced by QGestureManager::getState(), and QGestureManager::registerGestureRecognizer().
|
pure virtual |
Handles the given event for the watched object, updating the state of the gesture object as required, and returns a suitable result for the current recognition step.
This function is called by the framework to allow the recognizer to filter input events dispatched to QWidget or QGraphicsObject instances that it is monitoring.
The result reflects how much of the gesture has been recognized. The state of the gesture object is set depending on the result.
Implemented in QTapAndHoldGestureRecognizer, QFlickGestureRecognizer, QTapGestureRecognizer, QSwipeGestureRecognizer, QMacPinchGestureRecognizer, QPinchGestureRecognizer, QMacSwipeGestureRecognizer, QWinNativePanGestureRecognizer, and QPanGestureRecognizer.
Referenced by QGestureManager::filterEventThroughContexts().
|
static |
Registers the given recognizer in the gesture framework and returns a gesture ID for it.
The application takes ownership of the recognizer and returns the gesture type ID associated with it. For gesture recognizers which handle custom QGesture objects (i.e., those which return Qt::CustomGesture in a QGesture::gestureType() function) the return value is a generated gesture ID with the Qt::CustomGesture flag set.
Definition at line 229 of file qgesturerecognizer.cpp.
|
virtual |
This function is called by the framework to reset a given gesture.
Reimplement this function to implement additional requirements for custom QGesture objects. This may be necessary if you implement a custom QGesture whose properties need special handling when the gesture is reset.
Reimplemented in QTapAndHoldGestureRecognizer, QFlickGestureRecognizer, QTapGestureRecognizer, QSwipeGestureRecognizer, QMacPinchGestureRecognizer, QPinchGestureRecognizer, QMacSwipeGestureRecognizer, QWinNativePanGestureRecognizer, and QPanGestureRecognizer.
Definition at line 191 of file qgesturerecognizer.cpp.
Referenced by QGestureManager::recycle(), QPanGestureRecognizer::reset(), QWinNativePanGestureRecognizer::reset(), QMacSwipeGestureRecognizer::reset(), QPinchGestureRecognizer::reset(), QMacPinchGestureRecognizer::reset(), QSwipeGestureRecognizer::reset(), QTapGestureRecognizer::reset(), and QTapAndHoldGestureRecognizer::reset().
|
static |
Unregisters all gesture recognizers of the specified type.
Definition at line 239 of file qgesturerecognizer.cpp.