Enroute Flight Navigation
A navigation app for VFR pilots
ObserverList.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 "weather/Observer.h"
24
25namespace Weather {
26
35
36class ObserverList : public QObject {
37 Q_OBJECT
38 QML_ELEMENT
39
40public:
41 //
42 // Constructors and destructors
43 //
44
49 explicit ObserverList(QObject* parent=nullptr);
50
52 ~ObserverList() override = default;
53
54
55 //
56 // Properties
57 //
58
64 Q_PROPERTY(QList<Weather::Observer*> observers READ observers BINDABLE bindableObservers)
65
66
67 //
68 // Getter Methods
69 //
70
71
75 [[nodiscard]] QList<Weather::Observer*> observers() {return m_observers.value();}
76
81 [[nodiscard]] QBindable<QList<Weather::Observer*>> bindableObservers() const {return &m_observers;}
82
83
84private:
85 Q_DISABLE_COPY_MOVE(ObserverList)
86
87 // Observers by ICAO-Id. This map is used to store Observer instances.
88 QMap<QString,Weather::Observer*> m_observersByID;
89
90 // Currently active observers. This list is updated by a binding that
91 // watches GlobalObject::weatherDataProvider, creates observer instances if
92 // needed and stores them in m_observersByID.
93 QProperty<QList<Weather::Observer*>> m_unsortedObservers;
94
95 // Currently active observers, sorted by distance. This list is updated by a
96 // binding that watches m_unsortedObservers and the current position.
97 QProperty<QList<Weather::Observer*>> m_observers;
98};
99
100} // namespace Weather
101
Up-to-date list of all METAR/TAF stations.
QList< Weather::Observer * > observers()
Getter method for property of the same name.
QList< Weather::Observer * > observers
List of METAR/TAF stations.
QBindable< QList< Weather::Observer * > > bindableObservers() const
Getter method for property of the same name.
~ObserverList() override=default
Standard destructor.
ObserverList(QObject *parent=nullptr)
Standard constructor.