summaryrefslogtreecommitdiff
path: root/share/qtcreator/qml-type-descriptions/qtmobility-connectivity.qmltypes
blob: 25f8e6fd758602d95a8e1916fc559fd3d883feeb (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
import QtQuick.tooling 1.0

// This file describes the plugin-supplied types contained in the library.
// It is used for QML tooling purposes only.

Module {
    Component {
        name: "QAbstractItemModel"
        prototype: "QObject"
        Signal {
            name: "dataChanged"
            Parameter { name: "topLeft"; type: "QModelIndex" }
            Parameter { name: "bottomRight"; type: "QModelIndex" }
        }
        Signal {
            name: "headerDataChanged"
            Parameter { name: "orientation"; type: "Qt::Orientation" }
            Parameter { name: "first"; type: "int" }
            Parameter { name: "last"; type: "int" }
        }
        Signal { name: "layoutChanged" }
        Signal { name: "layoutAboutToBeChanged" }
        Signal {
            name: "rowsAboutToBeInserted"
            Parameter { name: "parent"; type: "QModelIndex" }
            Parameter { name: "first"; type: "int" }
            Parameter { name: "last"; type: "int" }
        }
        Signal {
            name: "rowsInserted"
            Parameter { name: "parent"; type: "QModelIndex" }
            Parameter { name: "first"; type: "int" }
            Parameter { name: "last"; type: "int" }
        }
        Signal {
            name: "rowsAboutToBeRemoved"
            Parameter { name: "parent"; type: "QModelIndex" }
            Parameter { name: "first"; type: "int" }
            Parameter { name: "last"; type: "int" }
        }
        Signal {
            name: "rowsRemoved"
            Parameter { name: "parent"; type: "QModelIndex" }
            Parameter { name: "first"; type: "int" }
            Parameter { name: "last"; type: "int" }
        }
        Signal {
            name: "columnsAboutToBeInserted"
            Parameter { name: "parent"; type: "QModelIndex" }
            Parameter { name: "first"; type: "int" }
            Parameter { name: "last"; type: "int" }
        }
        Signal {
            name: "columnsInserted"
            Parameter { name: "parent"; type: "QModelIndex" }
            Parameter { name: "first"; type: "int" }
            Parameter { name: "last"; type: "int" }
        }
        Signal {
            name: "columnsAboutToBeRemoved"
            Parameter { name: "parent"; type: "QModelIndex" }
            Parameter { name: "first"; type: "int" }
            Parameter { name: "last"; type: "int" }
        }
        Signal {
            name: "columnsRemoved"
            Parameter { name: "parent"; type: "QModelIndex" }
            Parameter { name: "first"; type: "int" }
            Parameter { name: "last"; type: "int" }
        }
        Signal { name: "modelAboutToBeReset" }
        Signal { name: "modelReset" }
        Signal {
            name: "rowsAboutToBeMoved"
            Parameter { name: "sourceParent"; type: "QModelIndex" }
            Parameter { name: "sourceStart"; type: "int" }
            Parameter { name: "sourceEnd"; type: "int" }
            Parameter { name: "destinationParent"; type: "QModelIndex" }
            Parameter { name: "destinationRow"; type: "int" }
        }
        Signal {
            name: "rowsMoved"
            Parameter { name: "parent"; type: "QModelIndex" }
            Parameter { name: "start"; type: "int" }
            Parameter { name: "end"; type: "int" }
            Parameter { name: "destination"; type: "QModelIndex" }
            Parameter { name: "row"; type: "int" }
        }
        Signal {
            name: "columnsAboutToBeMoved"
            Parameter { name: "sourceParent"; type: "QModelIndex" }
            Parameter { name: "sourceStart"; type: "int" }
            Parameter { name: "sourceEnd"; type: "int" }
            Parameter { name: "destinationParent"; type: "QModelIndex" }
            Parameter { name: "destinationColumn"; type: "int" }
        }
        Signal {
            name: "columnsMoved"
            Parameter { name: "parent"; type: "QModelIndex" }
            Parameter { name: "start"; type: "int" }
            Parameter { name: "end"; type: "int" }
            Parameter { name: "destination"; type: "QModelIndex" }
            Parameter { name: "column"; type: "int" }
        }
        Method { name: "submit"; type: "bool" }
        Method { name: "revert" }
    }
    Component { name: "QAbstractListModel"; prototype: "QAbstractItemModel" }
    Component {
        name: "QDeclarativeBluetoothDiscoveryModel"
        prototype: "QAbstractListModel"
        exports: [
            "QtMobility.connectivity/BluetoothDiscoveryModel 1.2"
        ]
        Property { name: "error"; type: "string"; isReadonly: true }
        Property { name: "minimalDiscovery"; type: "bool" }
        Property { name: "discovery"; type: "bool" }
        Property { name: "uuidFilter"; type: "string" }
        Signal { name: "errorChanged" }
        Signal { name: "minimalDiscoveryChanged" }
        Signal {
            name: "newServiceDiscovered"
            Parameter { name: "service"; type: "QDeclarativeBluetoothService"; isPointer: true }
        }
        Signal { name: "discoveryChanged" }
        Signal { name: "uuidFilterChanged" }
        Method {
            name: "setDiscovery"
            Parameter { name: "discovery_"; type: "bool" }
        }
    }
    Component {
        name: "QDeclarativeBluetoothService"
        prototype: "QObject"
        exports: [
            "QtMobility.connectivity/BluetoothService 1.2"
        ]
        Property { name: "deviceName"; type: "string"; isReadonly: true }
        Property { name: "deviceAddress"; type: "string" }
        Property { name: "serviceName"; type: "string" }
        Property { name: "serviceDescription"; type: "string" }
        Property { name: "serviceUuid"; type: "string" }
        Property { name: "serviceProtocol"; type: "string" }
        Property { name: "servicePort"; type: "qint32" }
        Property { name: "registered"; type: "bool" }
        Signal { name: "detailsChanged" }
        Signal { name: "registeredChanged" }
        Signal { name: "newClient" }
        Method {
            name: "setServiceName"
            Parameter { name: "name"; type: "string" }
        }
        Method {
            name: "setDeviceAddress"
            Parameter { name: "address"; type: "string" }
        }
        Method {
            name: "setServiceDescription"
            Parameter { name: "description"; type: "string" }
        }
        Method {
            name: "setServiceUuid"
            Parameter { name: "uuid"; type: "string" }
        }
        Method {
            name: "setServiceProtocol"
            Parameter { name: "protocol"; type: "string" }
        }
        Method {
            name: "setServicePort"
            Parameter { name: "port"; type: "qint32" }
        }
        Method {
            name: "setRegistered"
            Parameter { name: "registered"; type: "bool" }
        }
        Method { name: "nextClient"; type: "QDeclarativeBluetoothSocket*" }
        Method {
            name: "assignNextClient"
            Parameter { name: "dbs"; type: "QDeclarativeBluetoothSocket"; isPointer: true }
        }
    }
    Component {
        name: "QDeclarativeBluetoothSocket"
        prototype: "QObject"
        exports: [
            "QtMobility.connectivity/BluetoothSocket 1.2"
        ]
        Property { name: "service"; type: "QDeclarativeBluetoothService"; isPointer: true }
        Property { name: "connected"; type: "bool" }
        Property { name: "error"; type: "string"; isReadonly: true }
        Property { name: "state"; type: "string"; isReadonly: true }
        Property { name: "stringData"; type: "string" }
        Signal { name: "serviceChanged" }
        Signal { name: "connectedChanged" }
        Signal { name: "errorChanged" }
        Signal { name: "stateChanged" }
        Signal { name: "dataAvailable" }
        Method {
            name: "setService"
            Parameter { name: "service"; type: "QDeclarativeBluetoothService"; isPointer: true }
        }
        Method {
            name: "setConnected"
            Parameter { name: "connected"; type: "bool" }
        }
        Method {
            name: "sendStringData"
            Parameter { name: "data"; type: "string" }
        }
    }
    Component {
        name: "QDeclarativeNdefFilter"
        prototype: "QObject"
        exports: [
            "QtMobility.connectivity/NdefFilter 1.2"
        ]
        Property { name: "type"; type: "string" }
        Property { name: "minimum"; type: "int" }
        Property { name: "maximum"; type: "int" }
        Signal { name: "typeChanged" }
        Signal { name: "minimumChanged" }
        Signal { name: "maximumChanged" }
    }
    Component {
        name: "QDeclarativeNdefMimeRecord"
        prototype: "QDeclarativeNdefRecord"
        exports: [
            "QtMobility.connectivity/NdefMimeRecord 1.2"
        ]
        Property { name: "uri"; type: "string"; isReadonly: true }
        Signal { name: "uriChanged" }
    }
    Component {
        name: "QDeclarativeNdefRecord"
        prototype: "QObject"
        exports: [
            "QtMobility.connectivity/NdefRecord 1.2"
        ]
        Property { name: "recordType"; type: "string" }
        Signal { name: "recordTypeChanged" }
    }
    Component {
        name: "QDeclarativeNdefTextRecord"
        prototype: "QDeclarativeNdefRecord"
        exports: [
            "QtMobility.connectivity/NdefTextRecord 1.2"
        ]
        Enum {
            name: "LocaleMatch"
            values: {
                "LocaleMatchedNone": 0,
                "LocaleMatchedEnglish": 1,
                "LocaleMatchedLanguage": 2,
                "LocaleMatchedLanguageAndCountry": 3
            }
        }
        Property { name: "text"; type: "string" }
        Property { name: "locale"; type: "string" }
        Property { name: "localeMatch"; type: "LocaleMatch"; isReadonly: true }
        Signal { name: "textChanged" }
        Signal { name: "localeChanged" }
        Signal { name: "localeMatchChanged" }
    }
    Component {
        name: "QDeclarativeNdefUriRecord"
        prototype: "QDeclarativeNdefRecord"
        exports: [
            "QtMobility.connectivity/NdefUriRecord 1.2"
        ]
        Property { name: "uri"; type: "string" }
        Signal { name: "uriChanged" }
    }
    Component {
        name: "QDeclarativeNearField"
        prototype: "QObject"
        exports: [
            "QtMobility.connectivity/NearField 1.2"
        ]
        Property {
            name: "messageRecords"
            type: "QDeclarativeNdefRecord"
            isList: true
            isReadonly: true
        }
        Property { name: "filter"; type: "QDeclarativeNdefFilter"; isList: true; isReadonly: true }
        Property { name: "orderMatch"; type: "bool" }
        Signal { name: "messageRecordsChanged" }
        Signal { name: "filterChanged" }
        Signal { name: "orderMatchChanged" }
    }
    Component {
        name: "QDeclarativeNearFieldSocket"
        prototype: "QObject"
        exports: [
            "QtMobility.connectivity/NearFieldSocket 1.2"
        ]
        Property { name: "uri"; type: "string" }
        Property { name: "connected"; type: "bool" }
        Property { name: "error"; type: "string"; isReadonly: true }
        Property { name: "state"; type: "string"; isReadonly: true }
        Property { name: "listening"; type: "bool" }
        Property { name: "stringData"; type: "string" }
        Signal { name: "uriChanged" }
        Signal { name: "connectedChanged" }
        Signal { name: "errorChanged" }
        Signal { name: "stateChanged" }
        Signal { name: "listeningChanged" }
        Signal { name: "dataAvailable" }
        Method {
            name: "setUri"
            Parameter { name: "service"; type: "string" }
        }
        Method {
            name: "setConnected"
            Parameter { name: "connected"; type: "bool" }
        }
        Method {
            name: "setListening"
            Parameter { name: "listen"; type: "bool" }
        }
        Method {
            name: "sendStringData"
            Parameter { name: "data"; type: "string" }
        }
    }
}