summaryrefslogtreecommitdiffstats
path: root/src/imports/systeminfo/plugins.qmltypes
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/systeminfo/plugins.qmltypes')
-rw-r--r--src/imports/systeminfo/plugins.qmltypes110
1 files changed, 109 insertions, 1 deletions
diff --git a/src/imports/systeminfo/plugins.qmltypes b/src/imports/systeminfo/plugins.qmltypes
index 858fbad9..ff592582 100644
--- a/src/imports/systeminfo/plugins.qmltypes
+++ b/src/imports/systeminfo/plugins.qmltypes
@@ -4,7 +4,7 @@ import QtQuick.tooling 1.1
// It is used for QML tooling purposes only.
//
// This file was auto-generated by:
-// 'qmlplugindump -notrelocatable QtSystemInfo 5.0'
+// 'qmlplugindump -notrelocatable --noinstantiate QtSystemInfo 5.0 QtSystemInfo'
Module {
Component {
@@ -206,6 +206,49 @@ Module {
}
}
Component {
+ name: "QDeclarativeInputDeviceModel"
+ prototype: "QAbstractListModel"
+ exports: ["QtSystemInfo/InputDeviceModel 5.5"]
+ exportMetaObjectRevisions: [0]
+ Enum {
+ name: "ItemRoles"
+ values: {
+ "ServiceRole": 257,
+ "NameRole": 258,
+ "DevicePathRole": 259,
+ "ButtonsRole": 260,
+ "SwitchesRole": 261,
+ "RelativeAxisRole": 262,
+ "AbsoluteAxisRole": 263,
+ "TypesRole": 264
+ }
+ }
+ Property { name: "filter"; type: "QInputDevice::InputTypeFlags" }
+ Signal {
+ name: "added"
+ Parameter { name: "inputDevice"; type: "QInputDevice"; isPointer: true }
+ }
+ Signal {
+ name: "removed"
+ Parameter { name: "deviceId"; type: "string" }
+ }
+ Signal {
+ name: "filterChanged"
+ Parameter { name: "filterFlags"; type: "QInputDevice::InputTypeFlags" }
+ }
+ Method { name: "updateDeviceList" }
+ Method {
+ name: "indexOf"
+ type: "int"
+ Parameter { name: "devicePath"; type: "string" }
+ }
+ Method {
+ name: "get"
+ type: "QInputDevice*"
+ Parameter { name: "index"; type: "int" }
+ }
+ }
+ Component {
name: "QDeclarativeNetworkInfo"
prototype: "QObject"
exports: ["QtSystemInfo/NetworkInfo 5.0"]
@@ -378,6 +421,71 @@ Module {
}
}
Component {
+ name: "QInputDevice"
+ prototype: "QObject"
+ exports: ["QtSystemInfo/InputInfo 5.5"]
+ exportMetaObjectRevisions: [0]
+ Enum {
+ name: "InputType"
+ values: {
+ "Unknown": 0,
+ "Button": 1,
+ "Mouse": 2,
+ "TouchPad": 4,
+ "TouchScreen": 8,
+ "Keyboard": 16,
+ "Switch": 32
+ }
+ }
+ Enum {
+ name: "InputTypeFlags"
+ values: {
+ "Unknown": 0,
+ "Button": 1,
+ "Mouse": 2,
+ "TouchPad": 4,
+ "TouchScreen": 8,
+ "Keyboard": 16,
+ "Switch": 32
+ }
+ }
+ Property { name: "properties"; type: "QVariantMap"; isReadonly: true }
+ }
+ Component {
+ name: "QInputInfoManager"
+ prototype: "QObject"
+ exports: ["QtSystemInfo/InputDeviceManager 5.5"]
+ exportMetaObjectRevisions: [0]
+ Property { name: "count"; type: "int"; isReadonly: true }
+ Property { name: "filter"; type: "QInputDevice::InputTypeFlags" }
+ Property { name: "lastAdded"; type: "QInputDevice"; isReadonly: true; isPointer: true }
+ Signal { name: "ready" }
+ Signal {
+ name: "deviceAdded"
+ Parameter { name: "inputDevice"; type: "QInputDevice"; isPointer: true }
+ }
+ Signal {
+ name: "deviceRemoved"
+ Parameter { name: "deviceId"; type: "string" }
+ }
+ Signal {
+ name: "countChanged"
+ Parameter { name: "count"; type: "int" }
+ }
+ Signal {
+ name: "filterChanged"
+ Parameter { name: "filterFlags"; type: "QInputDevice::InputTypeFlags" }
+ }
+ Method {
+ name: "addedDevice"
+ Parameter { name: "devicePath"; type: "QInputDevice"; isPointer: true }
+ }
+ Method {
+ name: "removedDevice"
+ Parameter { name: "deviceId"; type: "string" }
+ }
+ }
+ Component {
name: "QScreenSaver"
prototype: "QObject"
exports: ["QtSystemInfo/ScreenSaver 5.0"]