Enroute Flight Navigation
A navigation app for VFR pilots
ConnectionScanner_Abstract.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 <QObject>
24
25#include "traffic/ConnectionInfo.h"
26
27
28namespace Traffic {
29
35class ConnectionScanner_Abstract : public QObject {
36 Q_OBJECT
37
38public:
45 explicit ConnectionScanner_Abstract(QObject* parent = nullptr);
46
47
48
49 //
50 // Properties
51 //
52
57 Q_PROPERTY(QList<Traffic::ConnectionInfo> connectionInfos READ connectionInfos NOTIFY connectionInfosChanged)
58
59
63 Q_PROPERTY(QString error READ error NOTIFY errorChanged)
64
66 Q_PROPERTY(bool scanning READ scanning NOTIFY scanningChanged)
67
68
69
70 //
71 // Properties
72 //
73
78 [[nodiscard]] QList<Traffic::ConnectionInfo> connectionInfos() const { return m_connectionInfos; }
79
84 [[nodiscard]] QString error() const { return m_error; }
85
90 [[nodiscard]] bool scanning() const { return m_isScanning; }
91
92
93public slots:
99 virtual void start() = 0;
100
106 virtual void stop() = 0;
107
108signals:
111
121
124
131
134
135protected:
136 // Setter method for property with same name
137 void setDevices(const QList<Traffic::ConnectionInfo>& newConnectionInfos);
138
139 // Setter method for property with same name
140 void setError(const QString& newError);
141
142 // Setter method for property with same name
143 void setIsScanning(bool newScanning);
144
145private:
146 // Property connectionInfos
147 QList<Traffic::ConnectionInfo> m_connectionInfos;
148
149 // Property error
150 QString m_error;
151
152 // Property isScanning
153 bool m_isScanning {false};
154};
155
156} // namespace Traffic
Connection to a traffic data receiver.
QList< Traffic::ConnectionInfo > connectionInfos
List of device connections found in the scanning process.
void connectionDiscovered(const Traffic::ConnectionInfo &info)
This signal to indicate whenever a device has been discovered.
bool scanning() const
Getter method for property with the same name.
void errorChanged()
Notifier signal.
virtual void start()=0
Start scan process.
void scanningChanged()
Notifier signal.
QString error
Errors encountered during the scanning process.
ConnectionScanner_Abstract(QObject *parent=nullptr)
Constructor.
void scanFinished()
Scan finished.
virtual void stop()=0
Stop scan process.
bool scanning
Indicator if scan is in progress.
void connectionInfosChanged()
Notifier signal.
QString error() const
Getter method for property with the same name.