Enroute Flight Navigation
A navigation app for VFR pilots
TrafficObserver.h
1/***************************************************************************
2 * Copyright (C) 2025 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 <QProperty>
24
25#include "traffic/TrafficFactor_Abstract.h"
26
27
28namespace Traffic {
29
38
39class TrafficObserver : public QObject {
40 Q_OBJECT
41 QML_ELEMENT
42
43public:
44 //
45 // Constructors and destructors
46 //
47
52 explicit TrafficObserver(QObject* parent=nullptr);
53
55 ~TrafficObserver() override = default;
56
57
58 //
59 // Properties
60 //
61
63 Q_PROPERTY(bool hasTraffic READ hasTraffic BINDABLE bindableHasTraffic)
64
65
66 Q_PROPERTY(QList<Traffic::TrafficFactor_Abstract*> traffic READ traffic BINDABLE bindableTraffic)
67
68
69 //
70 // Getter Methods
71 //
72
77 [[nodiscard]] bool hasTraffic() {return m_hasTraffic.value();}
78
83 [[nodiscard]] QBindable<bool> bindableHasTraffic() {return &m_hasTraffic;}
84
89 [[nodiscard]] QList<Traffic::TrafficFactor_Abstract*> traffic() {return m_traffic.value();}
90
95 [[nodiscard]] QBindable<QList<Traffic::TrafficFactor_Abstract*>> bindableTraffic() {return &m_traffic;}
96
97private:
98 Q_DISABLE_COPY_MOVE(TrafficObserver)
99
100 QProperty<bool> m_hasTraffic;
101 QProperty<QList<Traffic::TrafficFactor_Abstract*>> m_traffic;
102};
103
104} // namespace Weather
Abstract base class for traffic factors.
Provides list of traffic, sorted by relevance.
bool hasTraffic
Indicates that the traffic property is not empty.
~TrafficObserver() override=default
Standard destructor.
QList< Traffic::TrafficFactor_Abstract * > traffic()
Getter method for property of the same name.
QBindable< QList< Traffic::TrafficFactor_Abstract * > > bindableTraffic()
Getter method for property of the same name.
TrafficObserver(QObject *parent=nullptr)
Standard constructor.
QList< Traffic::TrafficFactor_Abstract * > traffic
List of current traffic, sorted by relevance.
QBindable< bool > bindableHasTraffic()
Getter method for property of the same name.