summaryrefslogtreecommitdiffstats
path: root/examples/bluetooth/scanner
diff options
context:
space:
mode:
Diffstat (limited to 'examples/bluetooth/scanner')
-rw-r--r--examples/bluetooth/scanner/Button.qml89
-rw-r--r--examples/bluetooth/scanner/default.pngbin4738 -> 0 bytes
-rw-r--r--examples/bluetooth/scanner/doc/images/devicescan.pngbin37924 -> 0 bytes
-rw-r--r--examples/bluetooth/scanner/doc/images/servicescan.pngbin80603 -> 0 bytes
-rw-r--r--examples/bluetooth/scanner/doc/src/scanner.qdoc58
-rw-r--r--examples/bluetooth/scanner/qmlscanner.cpp71
-rw-r--r--examples/bluetooth/scanner/scanner.pro18
-rw-r--r--examples/bluetooth/scanner/scanner.qml216
-rw-r--r--examples/bluetooth/scanner/scanner.qrc7
9 files changed, 0 insertions, 459 deletions
diff --git a/examples/bluetooth/scanner/Button.qml b/examples/bluetooth/scanner/Button.qml
deleted file mode 100644
index 3d368cde..00000000
--- a/examples/bluetooth/scanner/Button.qml
+++ /dev/null
@@ -1,89 +0,0 @@
-/***************************************************************************
-**
-** Copyright (C) 2013 BlackBerry Limited. All rights reserved.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the examples of the QtBluetooth module.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** 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.
-**
-** BSD License Usage
-** Alternatively, you may use this file under the terms of the BSD license
-** as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of The Qt Company Ltd nor the names of its
-** contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.0
-
-Rectangle {
- id: button
-
- property bool active: buttonGroup.activeButton == button
- property bool fullDiscovery: false
- property alias text: label.text
-
- signal clicked()
- height: label.height*1.1
-
- color: active ? "#1c56f3" : "white"
-
- radius: 5
- border.width: 2
-
- Text {
- id: label
- text: "Full Discovery"
- font.bold: true
- font.pointSize: 17
- width: parent.width
- wrapMode: Text.WordWrap
- horizontalAlignment: Text.AlignHCenter
- anchors.centerIn: parent
- }
-
- MouseArea {
- anchors.fill: parent
- onClicked: {
- button.clicked()
- //Reset the model
- btModel.running = false
- btModel.running = true
- buttonGroup.activeButton = button
- }
- }
-}
diff --git a/examples/bluetooth/scanner/default.png b/examples/bluetooth/scanner/default.png
deleted file mode 100644
index a1a74af5..00000000
--- a/examples/bluetooth/scanner/default.png
+++ /dev/null
Binary files differ
diff --git a/examples/bluetooth/scanner/doc/images/devicescan.png b/examples/bluetooth/scanner/doc/images/devicescan.png
deleted file mode 100644
index d75fdd0e..00000000
--- a/examples/bluetooth/scanner/doc/images/devicescan.png
+++ /dev/null
Binary files differ
diff --git a/examples/bluetooth/scanner/doc/images/servicescan.png b/examples/bluetooth/scanner/doc/images/servicescan.png
deleted file mode 100644
index 3a25c437..00000000
--- a/examples/bluetooth/scanner/doc/images/servicescan.png
+++ /dev/null
Binary files differ
diff --git a/examples/bluetooth/scanner/doc/src/scanner.qdoc b/examples/bluetooth/scanner/doc/src/scanner.qdoc
deleted file mode 100644
index 78720c00..00000000
--- a/examples/bluetooth/scanner/doc/src/scanner.qdoc
+++ /dev/null
@@ -1,58 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2017 The Qt Company Ltd.
-** Copyright (C) 2013 Aaron McCarthy <mccarthy.aaron@gmail.com>
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the documentation of the Qt local connectivty modules.
-**
-** $QT_BEGIN_LICENSE:FDL$
-** 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 Free Documentation License Usage
-** Alternatively, this file may be used under the terms of the GNU Free
-** Documentation License version 1.3 as published by the Free Software
-** Foundation and appearing in the file included in the packaging of
-** this file. Please review the following information to ensure
-** the GNU Free Documentation License version 1.3 requirements
-** will be met: https://www.gnu.org/licenses/fdl-1.3.html.
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-/*!
-\example scanner
-\title QML Bluetooth Scanner Example
-\brief A QML example about locating Bluetooth devices.
-
-This is an example on how to locate Bluetooth devices in QML.
-
-The user has the choice to run three different types of Bluetooth scans. The device retrieves
-information about the remote device within Bluetooth range. This implies that the remote
-device can be discovered. The picture below demonstrates the potential result of such
-a search:
-
-\image devicescan.png
-
-The second and third type of scan dicover the types of services offered by each remote device.
-A full service discovery can take quite some time to finish. The local device connects to each
-remote device and performs an SDP enquiry. The results of such an enquiry can be seen below.
-
-\image servicescan.png
-
-In general a service discovery is based on the results of a previously run device enquiry. A minimal
-service discovery returns the same data set as a full discovery except that the results are retrieved
-from local cache information and may not always be complete and accurate. The primary reason to
-perform a minimal discovery are time constraints. A full service discovery can take up to two minutes.
-Note that not every platform supports a minimal discovery. In such cases the API performs a full discovery.
-
-\include examples-run.qdocinc
-
-\sa {Qt Bluetooth}
-*/
diff --git a/examples/bluetooth/scanner/qmlscanner.cpp b/examples/bluetooth/scanner/qmlscanner.cpp
deleted file mode 100644
index 2dbc0c27..00000000
--- a/examples/bluetooth/scanner/qmlscanner.cpp
+++ /dev/null
@@ -1,71 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2017 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the examples of the QtBluetooth module.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** 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.
-**
-** BSD License Usage
-** Alternatively, you may use this file under the terms of the BSD license
-** as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of The Qt Company Ltd nor the names of its
-** contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#include <QtGui/QGuiApplication>
-#include <QtQuick/QQuickView>
-#include <QtQml/QQmlEngine>
-#include <QtCore/QLoggingCategory>
-
-int main(int argc, char *argv[])
-{
- //QLoggingCategory::setFilterRules(QStringLiteral("qt.bluetooth* = true"));
- QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
- QGuiApplication application(argc, argv);
- const QString mainQmlApp(QStringLiteral("qrc:/scanner.qml"));
- QQuickView view;
- view.setSource(QUrl(mainQmlApp));
- view.setResizeMode(QQuickView::SizeRootObjectToView);
- // Qt.quit() called in embedded .qml by default only emits
- // quit() signal, so do this (optionally use Qt.exit()).
- QObject::connect(view.engine(), SIGNAL(quit()), qApp, SLOT(quit()));
- view.setGeometry(QRect(100, 100, 360, 640));
- view.show();
- return application.exec();
-}
diff --git a/examples/bluetooth/scanner/scanner.pro b/examples/bluetooth/scanner/scanner.pro
deleted file mode 100644
index 68572533..00000000
--- a/examples/bluetooth/scanner/scanner.pro
+++ /dev/null
@@ -1,18 +0,0 @@
-QT = core bluetooth quick
-SOURCES += qmlscanner.cpp
-
-TARGET = qml_scanner
-TEMPLATE = app
-
-RESOURCES += \
- scanner.qrc
-
-OTHER_FILES += \
- scanner.qml \
- Button.qml \
- default.png
-
-#DEFINES += QMLJSDEBUGGER
-
-target.path = $$[QT_INSTALL_EXAMPLES]/bluetooth/scanner
-INSTALLS += target
diff --git a/examples/bluetooth/scanner/scanner.qml b/examples/bluetooth/scanner/scanner.qml
deleted file mode 100644
index d4c88a05..00000000
--- a/examples/bluetooth/scanner/scanner.qml
+++ /dev/null
@@ -1,216 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2017 The Qt Company Ltd.
-** Copyright (C) 2013 BlackBerry Limited. All rights reserved.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the examples of the QtBluetooth module.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** 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.
-**
-** BSD License Usage
-** Alternatively, you may use this file under the terms of the BSD license
-** as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of The Qt Company Ltd nor the names of its
-** contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.0
-import QtBluetooth 5.2
-
-Item {
- id: top
-
- property BluetoothService currentService
-
- BluetoothDiscoveryModel {
- id: btModel
- running: true
- discoveryMode: BluetoothDiscoveryModel.DeviceDiscovery
- onDiscoveryModeChanged: console.log("Discovery mode: " + discoveryMode)
- onServiceDiscovered: console.log("Found new service " + service.deviceAddress + " " + service.deviceName + " " + service.serviceName);
- onDeviceDiscovered: console.log("New device: " + device)
- onErrorChanged: {
- switch (btModel.error) {
- case BluetoothDiscoveryModel.PoweredOffError:
- console.log("Error: Bluetooth device not turned on"); break;
- case BluetoothDiscoveryModel.InputOutputError:
- console.log("Error: Bluetooth I/O Error"); break;
- case BluetoothDiscoveryModel.InvalidBluetoothAdapterError:
- console.log("Error: Invalid Bluetooth Adapter Error"); break;
- case BluetoothDiscoveryModel.NoError:
- break;
- default:
- console.log("Error: Unknown Error"); break;
- }
- }
- }
-
- Rectangle {
- id: busy
-
- width: top.width * 0.7;
- anchors.horizontalCenter: parent.horizontalCenter
- anchors.top: top.top;
- height: text.height*1.2;
- radius: 5
- color: "#1c56f3"
- visible: btModel.running
-
- Text {
- id: text
- text: "Scanning"
- font.bold: true
- font.pointSize: 20
- anchors.centerIn: parent
- }
-
- SequentialAnimation on color {
- id: busyThrobber
- ColorAnimation { easing.type: Easing.InOutSine; from: "#1c56f3"; to: "white"; duration: 1000; }
- ColorAnimation { easing.type: Easing.InOutSine; to: "#1c56f3"; from: "white"; duration: 1000 }
- loops: Animation.Infinite
- }
- }
-
- ListView {
- id: mainList
- width: top.width
- anchors.top: busy.bottom
- anchors.bottom: buttonGroup.top
- anchors.bottomMargin: 10
- anchors.topMargin: 10
- clip: true
-
- model: btModel
- delegate: Rectangle {
- id: btDelegate
- width: parent.width
- height: column.height + 10
-
- property bool expended: false;
- clip: true
- Image {
- id: bticon
- source: "qrc:/default.png";
- width: bttext.height;
- height: bttext.height;
- anchors.top: parent.top
- anchors.left: parent.left
- anchors.margins: 5
- }
-
- Column {
- id: column
- anchors.left: bticon.right
- anchors.leftMargin: 5
- Text {
- id: bttext
- text: deviceName ? deviceName : name
- font.family: "FreeSerif"
- font.pointSize: 16
- }
-
- Text {
- id: details
- function get_details(s) {
- if (btModel.discoveryMode == BluetoothDiscoveryModel.DeviceDiscovery) {
- //We are doing a device discovery
- var str = "Address: " + remoteAddress;
- return str;
- } else {
- var str = "Address: " + s.deviceAddress;
- if (s.serviceName) { str += "<br>Service: " + s.serviceName; }
- if (s.serviceDescription) { str += "<br>Description: " + s.serviceDescription; }
- if (s.serviceProtocol) { str += "<br>Protocol: " + s.serviceProtocol; }
- return str;
- }
- }
- visible: opacity !== 0
- opacity: btDelegate.expended ? 1 : 0.0
- text: get_details(service)
- font.family: "FreeSerif"
- font.pointSize: 14
- Behavior on opacity {
- NumberAnimation { duration: 200}
- }
- }
- }
- Behavior on height { NumberAnimation { duration: 200} }
-
- MouseArea {
- anchors.fill: parent
- onClicked: btDelegate.expended = !btDelegate.expended
- }
- }
- focus: true
- }
-
- Row {
- id: buttonGroup
- property var activeButton: devButton
-
- anchors.bottom: parent.bottom
- anchors.horizontalCenter: parent.horizontalCenter
- anchors.bottomMargin: 5
- spacing: 10
-
- Button {
- id: fdButton
- width: top.width/3*0.9
- //mdButton has longest text
- height: mdButton.height
- text: "Full Discovery"
- onClicked: btModel.discoveryMode = BluetoothDiscoveryModel.FullServiceDiscovery
- }
- Button {
- id: mdButton
- width: top.width/3*0.9
- text: "Minimal Discovery"
- onClicked: btModel.discoveryMode = BluetoothDiscoveryModel.MinimalServiceDiscovery
- }
- Button {
- id: devButton
- width: top.width/3*0.9
- //mdButton has longest text
- height: mdButton.height
- text: "Device Discovery"
- onClicked: btModel.discoveryMode = BluetoothDiscoveryModel.DeviceDiscovery
- }
- }
-
-}
diff --git a/examples/bluetooth/scanner/scanner.qrc b/examples/bluetooth/scanner/scanner.qrc
deleted file mode 100644
index 46232c8a..00000000
--- a/examples/bluetooth/scanner/scanner.qrc
+++ /dev/null
@@ -1,7 +0,0 @@
-<RCC>
- <qresource prefix="/">
- <file>scanner.qml</file>
- <file>default.png</file>
- <file>Button.qml</file>
- </qresource>
-</RCC>