summaryrefslogtreecommitdiffstats
path: root/src/imports/bluetoothsettings/plugins.qmltypes
blob: 027041955ab6e6283d823d65ba250090eaf45c05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
import QtQuick.tooling 1.2

// This file describes the plugin-supplied types contained in the library.
// It is used for QML tooling purposes only.
//
// This file was auto-generated by:
// 'qmlplugindump -nonrelocatable QtDeviceUtilities.BluetoothSettings 1.0'

Module {
    dependencies: []
    Component {
        name: "BluetoothDevice"
        prototype: "QObject"
        exports: ["QtDeviceUtilities.BluetoothSettings/BtDevice 1.0"]
        isCreatable: false
        isSingleton: true
        exportMetaObjectRevisions: [0]
        Property { name: "scanning"; type: "bool" }
        Property { name: "powered"; type: "bool" }
        Property { name: "deviceModel"; type: "QObject"; isReadonly: true; isPointer: true }
        Method {
            name: "deviceStateChanged"
            Parameter { name: "state"; type: "QBluetoothLocalDevice::HostMode" }
        }
        Method { name: "scanFinished" }
        Method {
            name: "pairingDisplayConfirmation"
            Parameter { name: "address"; type: "QBluetoothAddress" }
            Parameter { name: "pin"; type: "string" }
        }
        Method {
            name: "pairingDisplayPinCode"
            Parameter { name: "address"; type: "QBluetoothAddress" }
            Parameter { name: "pin"; type: "string" }
        }
        Method {
            name: "pairingFinished"
            Parameter { name: "address"; type: "QBluetoothAddress" }
            Parameter { name: "pairing"; type: "QBluetoothLocalDevice::Pairing" }
        }
        Method {
            name: "deviceConnected"
            Parameter { name: "address"; type: "QBluetoothAddress" }
        }
        Method {
            name: "deviceDisconnected"
            Parameter { name: "address"; type: "QBluetoothAddress" }
        }
        Method {
            name: "requestPairing"
            Parameter { name: "address"; type: "string" }
        }
        Method {
            name: "requestConnect"
            Parameter { name: "address"; type: "string" }
        }
        Method {
            name: "requestDisconnect"
            Parameter { name: "address"; type: "string" }
        }
    }
    Component {
        name: "BtDeviceItem"
        prototype: "QObject"
        exports: ["QtDeviceUtilities.BluetoothSettings/BtDeviceItem 1.0"]
        isCreatable: false
        exportMetaObjectRevisions: [0]
        Enum {
            name: "DeviceType"
            values: {
                "Phone": 0,
                "Computer": 1,
                "Mouse": 2,
                "Keyboard": 3,
                "Headphones": 4,
                "Microphone": 5,
                "Camera": 6,
                "Camcorder": 7,
                "Clock": 8,
                "HealthDevice": 9,
                "GenericDevice": 1000
            }
        }
        Property { name: "address"; type: "string"; isReadonly: true }
        Property { name: "name"; type: "string"; isReadonly: true }
        Property { name: "connected"; type: "bool"; isReadonly: true }
        Property { name: "type"; type: "DeviceType"; isReadonly: true }
    }
}