Provides notifications when sensor-based gestures are detected. 更多...
import 语句: | import QtSensors 5.15 |
Since: | QtSensors 5.0 |
This type provides notification when sensor gestures are triggered.
The following QML code creates a "shake" and "SecondCounter" SensorGesture QML type, and displays the detected gesture in a text type.
QtSensors .shake gesture is available with the Qt Sensors API, but the QtSensors .SecondCounter sensor gesture is provided as example code for the Qt Sensors - SensorGesture QML Type example
Item { SensorGesture { id: sensorGesture enabled: false gestures : ["QtSensors.shake", "QtSensors.SecondCounter"] onDetected:{ detectedText.text = gesture } } Text { id: detectedText x:5 y:160 } }
Qt Sensor Gestures contains a list of currently supported sensor gestures and their descriptions.
This property can be used to determine all available gestures on the system.
This property can be used to activate or deactivate the sensor gesture. Default value is false;
另请参阅 SensorGesture::detected and detected .
Set this property to a list of the gestures that the application is interested in detecting. This property cannot be changed while the type is enabled.
特性 validGestures and invalidGestures will be set as appropriate immediately. To determine all available getures on the system please use the availableGestures 特性。
另请参阅 QtSensorGestures 插件 .
This property holds the requested gestures that were not found on the system.
This property holds the requested gestures that were found on the system.
This signal is emitted whenever a gesture is detected. The gesture parameter contains the gesture that was detected.
相应处理程序是
onDetected
.
注意:
相应处理程序是
onDetected
.