The QSensorGesture class represents one or more sensor gesture recognizers. 更多...
头: | #include <QSensorGesture> |
qmake: | QT += sensors |
Since: | Qt 5.1 |
继承: | QObject |
QSensorGesture (const QStringList & ids , QObject * parent = Q_NULLPTR) | |
~QSensorGesture () | |
QStringList | gestureSignals () const |
QStringList | invalidIds () const |
bool | isActive () |
void | startDetection () |
void | stopDetection () |
QStringList | validIds () const |
void | detected (QString gestureId ) |
The QSensorGesture class represents one or more sensor gesture recognizers.
除了 QSensorGesture::detected () signal, Sensor Gesture Recognizers can have their own specific signals, and may be discovered through QSensorGesture::gestureSignals ().
注意, QSensorGesture uses a custom meta-object in order to provide recognizer-specific signals. This means it is not possible to sub-class QSensorGesture and use Q_OBJECT . Also qobject_cast < QSensorGesture *>(ptr) will not work.
You may use QSensorGestureManager to obtain the systems known sensor gesture ids.
另请参阅 QSensorGestureRecognizer and QSensorGestureManager .
Constructs the sensor gesture, and initializes the ids list of recognizers, with parent parent
Destroy the QSensorGesture
[signal]
void
QSensorGesture::
detected
(
QString
gestureId
)
Signals when the gestureId gesture has been recognized.
Returns all the possible gestures signals that may be emitted.
Returns the gesture recognizer ids that were not found.
Returns whether this gesture is active or not.
Starts the gesture detection routines in the recognizer.
Stops the gesture detection routines.
Returns the gesture recognizer ids that were found.