summaryrefslogtreecommitdiffstats
path: root/src/imports/wifi/plugins.qmltypes
diff options
context:
space:
mode:
authorGatis Paeglis <gatis.paeglis@theqtcompany.com>2014-12-05 11:02:03 +0100
committerGatis Paeglis <gatis.paeglis@theqtcompany.com>2014-12-05 12:46:14 +0200
commitd1e4fbf0d58c271759aa2a443fc9a12539f1111a (patch)
tree5bd93cd5a0f570c83c9899a30346c5cbee6ccd75 /src/imports/wifi/plugins.qmltypes
parent8d93772285f06f3e5239183a7fd8306c9d090930 (diff)
Wifi: Update plugins.qmltypes
Required for code-completion feature in QtCreator. Change-Id: I79969367afe685b248d08b30d8dadf54754c5c0f Task-number: QTEE-810 Reviewed-by: Eirik Aavitsland <eirik.aavitsland@theqtcompany.com>
Diffstat (limited to 'src/imports/wifi/plugins.qmltypes')
-rw-r--r--src/imports/wifi/plugins.qmltypes150
1 files changed, 90 insertions, 60 deletions
diff --git a/src/imports/wifi/plugins.qmltypes b/src/imports/wifi/plugins.qmltypes
index 6667fcb..c59d12c 100644
--- a/src/imports/wifi/plugins.qmltypes
+++ b/src/imports/wifi/plugins.qmltypes
@@ -1,60 +1,90 @@
-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 by:
-// 'qmlplugindump -nonrelocatable Qt.labs.wifi 0.1 /system/qml/Qt/labs/wifi/'
-
-Module {
- Component {
- name: "QWifiGlobal"
- prototype: "QObject"
- exports: ["Qt.labs.wifi/Interface 0.1"]
- exportMetaObjectRevisions: [0]
- Method { name: "wifiSupported"; type: "bool" }
- }
- Component {
- name: "QWifiManager"
- prototype: "QObject"
- exports: ["Qt.labs.wifi/WifiManager 0.1"]
- exportMetaObjectRevisions: [0]
- Enum {
- name: "NetworkState"
- values: {
- "Disconnected": 0,
- "Authenticating": 1,
- "HandshakeFailed": 2,
- "ObtainingIPAddress": 3,
- "DhcpRequestFailed": 4,
- "Connected": 5
- }
- }
- Property { name: "networkState"; type: "NetworkState"; isReadonly: true }
- Property { name: "backendReady"; type: "bool"; isReadonly: true }
- Property { name: "scanning"; type: "bool" }
- Property { name: "connectedSSID"; type: "string"; isReadonly: true }
- Property { name: "networks"; type: "QWifiNetworkListModel"; isReadonly: true; isPointer: true }
- Signal {
- name: "scanningChanged"
- Parameter { name: "scanning"; type: "bool" }
- }
- Signal {
- name: "networkStateChanged"
- Parameter { name: "network"; type: "QWifiNetwork"; isPointer: true }
- }
- Signal {
- name: "connectedSSIDChanged"
- Parameter { name: "ssid"; type: "string" }
- }
- Method { name: "start" }
- Method { name: "stop" }
- Method {
- name: "connect"
- Parameter { name: "network"; type: "QWifiNetwork"; isPointer: true }
- Parameter { name: "passphrase"; type: "string" }
- }
- Method { name: "disconnect" }
- }
- Component { name: "QWifiNetworkListModel"; prototype: "QAbstractListModel" }
-}
+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 by:
+// 'qmlplugindump -nonrelocatable B2Qt.Wifi 1.0 /system/qml/B2Qt/Wifi/'
+
+Module {
+ Component {
+ name: "QWifiConfiguration"
+ prototype: "QObject"
+ exports: ["B2Qt.Wifi/WifiConfiguration 1.0"]
+ exportMetaObjectRevisions: [0]
+ Property { name: "ssid"; type: "string" }
+ Property { name: "passphrase"; type: "string" }
+ Property { name: "protocol"; type: "string" }
+ }
+ Component {
+ name: "QWifiDevice"
+ prototype: "QObject"
+ exports: ["B2Qt.Wifi/WifiDevice 1.0"]
+ isCreatable: false
+ isSingleton: true
+ exportMetaObjectRevisions: [0]
+ Method { name: "wifiSupported"; type: "bool" }
+ }
+ Component {
+ name: "QWifiManager"
+ prototype: "QObject"
+ exports: ["B2Qt.Wifi/WifiManager 1.0"]
+ isCreatable: false
+ isSingleton: true
+ exportMetaObjectRevisions: [0]
+ Enum {
+ name: "NetworkState"
+ values: {
+ "Disconnected": 0,
+ "Authenticating": 1,
+ "HandshakeFailed": 2,
+ "ObtainingIPAddress": 3,
+ "DhcpRequestFailed": 4,
+ "Connected": 5
+ }
+ }
+ Enum {
+ name: "BackendState"
+ values: {
+ "Initializing": 0,
+ "Running": 1,
+ "Terminating": 2,
+ "NotRunning": 3
+ }
+ }
+ Property { name: "networkState"; type: "NetworkState"; isReadonly: true }
+ Property { name: "backendState"; type: "BackendState"; isReadonly: true }
+ Property { name: "scanning"; type: "bool" }
+ Property { name: "currentSSID"; type: "string"; isReadonly: true }
+ Property { name: "lastError"; type: "string"; isReadonly: true }
+ Property { name: "networks"; type: "QAbstractListModel"; isReadonly: true; isPointer: true }
+ Signal {
+ name: "scanningChanged"
+ Parameter { name: "scanning"; type: "bool" }
+ }
+ Signal {
+ name: "networkStateChanged"
+ Parameter { name: "networkState"; type: "NetworkState" }
+ }
+ Signal {
+ name: "backendStateChanged"
+ Parameter { name: "backendState"; type: "BackendState" }
+ }
+ Signal {
+ name: "currentSSIDChanged"
+ Parameter { name: "currentSSID"; type: "string" }
+ }
+ Signal {
+ name: "lastErrorChanged"
+ Parameter { name: "error"; type: "string" }
+ }
+ Method { name: "start" }
+ Method { name: "stop" }
+ Method {
+ name: "connect"
+ type: "bool"
+ Parameter { name: "config"; type: "QWifiConfiguration"; isPointer: true }
+ }
+ Method { name: "disconnect" }
+ }
+}