summaryrefslogtreecommitdiffstats
path: root/src/imports/bluetoothsettings
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/bluetoothsettings')
-rw-r--r--src/imports/bluetoothsettings/bluetoothsettings.pro10
-rw-r--r--src/imports/bluetoothsettings/plugin.cpp133
-rw-r--r--src/imports/bluetoothsettings/plugins.qmltypes89
-rw-r--r--src/imports/bluetoothsettings/qmldir4
4 files changed, 0 insertions, 236 deletions
diff --git a/src/imports/bluetoothsettings/bluetoothsettings.pro b/src/imports/bluetoothsettings/bluetoothsettings.pro
deleted file mode 100644
index 8facaf3..0000000
--- a/src/imports/bluetoothsettings/bluetoothsettings.pro
+++ /dev/null
@@ -1,10 +0,0 @@
-QT += qml bluetooth bluetoothsettings
-
-CONFIG += no_cxx_module
-
-TARGET = btsettingsplugin
-TARGETPATH = QtDeviceUtilities/BluetoothSettings
-
-SOURCES += plugin.cpp
-
-load(qml_plugin)
diff --git a/src/imports/bluetoothsettings/plugin.cpp b/src/imports/bluetoothsettings/plugin.cpp
deleted file mode 100644
index db180f7..0000000
--- a/src/imports/bluetoothsettings/plugin.cpp
+++ /dev/null
@@ -1,133 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2019 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the Device Utilities module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:GPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3 or (at your option) any later version
-** approved by the KDE Free Qt Foundation. The licenses are as published by
-** the Free Software Foundation and appearing in the file LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-#include <QtQml/QQmlExtensionPlugin>
-#include <QtQml/qqml.h>
-#include <qcoreapplication.h>
-#include <QQmlEngine>
-#include <QQmlContext>
-
-#include "bluetoothdevice.h"
-#include "discoverymodel.h"
-
-/*!
- \qmlmodule QtDeviceUtilities.BluetoothSettings 1.0
- \ingroup qtdevice-utilities-qml-modules
- \ingroup qmlmodules
- \title Qt Bluetooth Settings QML Types
-
- \brief Provides a singleton QML type for controlling bluetooth settings.
-
- To import and use the module's QML types, use the following statement:
-
- \badcode
- import QtDeviceUtilities.BluetoothSettings 1.0
- \endcode
-
- \note Some functions may not be available on all of the platforms.
-
- \section1 QML Types
-*/
-
-/*!
- \qmltype BtDevice
- \inqmlmodule QtDeviceUtilities.BluetoothSettings
- \brief A singleton QML type for controlling bluetooth settings.
-
- There is no need to create an instance of this object. To use it,
- simply import the \c {QtDeviceUtilities.BluetoothSettings} module.
-*/
-
-/*!
- \qmlproperty bool BtDevice::scanning
-
- Controls whether the Bluetooth device is scanning for remote devices.
-*/
-
-/*!
- \qmlproperty bool BtDevice::powered
-
- Powers the Bluetooth device on or off.
-*/
-
-/*!
- \qmlproperty object BtDevice::deviceModel
- \readonly
-
- Holds the device model.
-*/
-
-/*!
- \qmlmethod void BtDevice::requestPairing(string address)
-
- Starts the process of pairing to a remove device specified by \a address,
- and connects to it if the pairing was successful.
-*/
-
-/*!
- \qmlmethod void BtDevice::requestConnect(string address)
-
- Connects to a remove device specified by \a address.
-
- \sa requestDisconnect()
-*/
-
-/*!
- \qmlmethod void BtDevice::requestDisconnect(string address)
-
- Disconnects from the remove device specified by \a address.
-
- \sa requestConnect()
-*/
-
-QT_BEGIN_NAMESPACE
-
-template <typename T>
-QObject *instance(QQmlEngine *engine, QJSEngine *) {
- T *t = new T(engine);
- t->setObjectName(T::staticMetaObject.className());
- return t;
-}
-
-class BluetoothSettingsQmlPlugin : public QQmlExtensionPlugin
-{
- Q_OBJECT
- Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
-
-public:
- void registerTypes(const char *uri)
- {
- Q_ASSERT(QLatin1String(uri) == QLatin1String("QtDeviceUtilities.BluetoothSettings"));
- qmlRegisterUncreatableType<BtDeviceItem>(uri, 1, 0, "BtDeviceItem", "Cannot be instantiated directly.");
- qmlRegisterSingletonType<BluetoothDevice>(uri, 1, 0, "BtDevice", &instance<BluetoothDevice>);
- }
-};
-
-QT_END_NAMESPACE
-
-#include "plugin.moc"
diff --git a/src/imports/bluetoothsettings/plugins.qmltypes b/src/imports/bluetoothsettings/plugins.qmltypes
deleted file mode 100644
index 0270419..0000000
--- a/src/imports/bluetoothsettings/plugins.qmltypes
+++ /dev/null
@@ -1,89 +0,0 @@
-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 }
- }
-}
diff --git a/src/imports/bluetoothsettings/qmldir b/src/imports/bluetoothsettings/qmldir
deleted file mode 100644
index f0c15f5..0000000
--- a/src/imports/bluetoothsettings/qmldir
+++ /dev/null
@@ -1,4 +0,0 @@
-module QtDeviceUtilities.BluetoothSettings
-plugin btsettingsplugin
-classname BluetoothSettingsQmlPlugin
-typeinfo plugins.qmltypes