summaryrefslogtreecommitdiffstats
path: root/src/imports/sensors2/plugins.qmltypes
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/sensors2/plugins.qmltypes')
-rw-r--r--src/imports/sensors2/plugins.qmltypes30
1 files changed, 24 insertions, 6 deletions
diff --git a/src/imports/sensors2/plugins.qmltypes b/src/imports/sensors2/plugins.qmltypes
index 590bf263..97c9fe37 100644
--- a/src/imports/sensors2/plugins.qmltypes
+++ b/src/imports/sensors2/plugins.qmltypes
@@ -2,6 +2,8 @@ import QtQuick.tooling 1.1
// This file describes the plugin-supplied types contained in the library.
// It is used for QML tooling purposes only.
+//
+// This file was auto-generated with the command 'qmlplugindump QtSensors 5.0 /home/lramsay/build/qt50/qtbase/imports'.
Module {
Component {
@@ -20,6 +22,7 @@ Module {
}
}
Property { name: "lightLevel"; type: "LightLevel"; isReadonly: true }
+ Signal { name: "lightLevelChanged"; type: "void" }
}
Component {
name: "QSensor2Gesture"
@@ -32,14 +35,21 @@ Module {
Property { name: "enabled"; type: "bool" }
Signal {
name: "detected"
+ type: "void"
Parameter { name: "gesture"; type: "string" }
}
+ Signal { name: "availableGesturesChanged"; type: "void" }
+ Signal { name: "gesturesChanged"; type: "void" }
+ Signal { name: "validGesturesChanged"; type: "void" }
+ Signal { name: "invalidGesturesChanged"; type: "void" }
+ Signal { name: "enabledChanged"; type: "void" }
}
Component {
name: "QSensor2Proximity"
prototype: "qsensor2common"
exports: ["ProximitySensor 5.0"]
Property { name: "near"; type: "bool"; isReadonly: true }
+ Signal { name: "nearChanged"; type: "void" }
}
Component {
name: "QSensor2Tilt"
@@ -60,18 +70,24 @@ Module {
"Fast": 2
}
}
- Property { name: "yRotation"; type: "qreal"; isReadonly: true }
- Property { name: "xRotation"; type: "qreal"; isReadonly: true }
+ Property { name: "yRotation"; type: "double"; isReadonly: true }
+ Property { name: "xRotation"; type: "double"; isReadonly: true }
Property { name: "unit"; type: "Unit" }
Property { name: "speed"; type: "Speed" }
- Property { name: "accuracy"; type: "qreal" }
+ Property { name: "accuracy"; type: "double" }
Property { name: "settings"; type: "QByteArray" }
+ Signal { name: "unitChanged"; type: "void" }
+ Signal { name: "yRotationChanged"; type: "void" }
+ Signal { name: "xRotationChanged"; type: "void" }
+ Signal { name: "speedChanged"; type: "void" }
Signal {
name: "tiltChanged"
- Parameter { name: "deltaX"; type: "qreal" }
- Parameter { name: "deltaY"; type: "qreal" }
+ type: "void"
+ Parameter { name: "deltaX"; type: "double" }
+ Parameter { name: "deltaY"; type: "double" }
}
- Method { name: "calibrate" }
+ Signal { name: "accuracyChanged"; type: "void" }
+ Method { name: "calibrate"; type: "void" }
}
Component {
name: "qsensor2common"
@@ -79,5 +95,7 @@ Module {
exports: ["Sensor 5.0"]
Property { name: "enabled"; type: "bool" }
Property { name: "alwaysOn"; type: "bool" }
+ Signal { name: "enabledChanged"; type: "void" }
+ Signal { name: "alwaysOnChanged"; type: "void" }
}
}