Enroute Flight Navigation
A navigation app for VFR pilots
ConnectionScanner_Bluetooth.h
1/***************************************************************************
2 * Copyright (C) 2024 by Stefan Kebekus *
3 * stefan.kebekus@gmail.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 3 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20
21#pragma once
22
23#include <QBluetoothDeviceDiscoveryAgent>
24#include <QBluetoothPermission>
25#include <QQmlEngine>
26
27#include "traffic/ConnectionScanner_Abstract.h"
28
29
30namespace Traffic {
31
38 Q_OBJECT
39 QML_ELEMENT
40 QML_SINGLETON
41
42 // Properties need to be repeated, or else the Qt CMake macros cannot find them.
43 Q_PROPERTY(QList<Traffic::ConnectionInfo> connectionInfos READ connectionInfos NOTIFY connectionInfosChanged)
44 Q_PROPERTY(QString error READ error NOTIFY errorChanged)
45 Q_PROPERTY(bool scanning READ scanning NOTIFY scanningChanged)
46
47public:
54 explicit ConnectionScanner_Bluetooth(QObject* parent = nullptr);
55
56 // No default constructor, important for QML singleton
57 explicit ConnectionScanner_Bluetooth() = delete;
58
59 // factory function for QML singleton
60 static Traffic::ConnectionScanner_Bluetooth* create(QQmlEngine* /*unused*/, QJSEngine* /*unused*/)
61 {
62 return new Traffic::ConnectionScanner_Bluetooth(nullptr);
63 }
64
65
66
67 //
68 // Methods
69 //
70
78 [[nodiscard]] static QString bluetoothStatus();
79
80public slots:
81 // Re-implemented from ConnectionScanner_Abstract
82 void start() override;
83
84 // Re-implemented from ConnectionScanner_Abstract
85 void stop() override;
86
87
88private slots:
89 // Connected to m_discoveryAgent
90 void onCanceled();
91
92 // Connected to m_discoveryAgent
93 void onDeviceDiscovered(const QBluetoothDeviceInfo& info);
94
95 // Connected to m_discoveryAgent
96 void onDeviceUpdated(const QBluetoothDeviceInfo& info, QBluetoothDeviceInfo::Fields updatedFields);
97
98 // Connected to m_discoveryAgent
99 void onErrorOccurred(QBluetoothDeviceDiscoveryAgent::Error error);
100
101 // Connected to m_discoveryAgent
102 void onFinished();
103
104private:
105 // Update connectionInfos
106 void updateConnectionInfos();
107
108 // Bluetooth related members
109 QBluetoothPermission m_bluetoothPermission;
110 QBluetoothDeviceDiscoveryAgent m_discoveryAgent;
111
112};
113
114} // namespace Traffic
void errorChanged()
Notifier signal.
void scanningChanged()
Notifier signal.
ConnectionScanner_Abstract(QObject *parent=nullptr)
Constructor.
void connectionInfosChanged()
Notifier signal.
Connection Scanner: Bluetooth Devices.
static QString bluetoothStatus()
Bluetooth system status.
ConnectionScanner_Bluetooth(QObject *parent=nullptr)
Constructor.