Enroute Flight Navigation
A navigation app for VFR pilots
Observer.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 "geomaps/Waypoint.h"
26#include "weather/METAR.h"
27#include "weather/TAF.h"
28
29
30namespace Weather {
31
33
34
36
37class Observer : public QObject {
38 Q_OBJECT
39 QML_ELEMENT
40
41public:
42 //
43 // Constructors and destructors
44 //
45
52 explicit Observer(QObject* parent=nullptr);
53
55 ~Observer() override = default;
56
57
58 //
59 // Properties
60 //
61
67 Q_PROPERTY(Weather::METAR metar READ metar BINDABLE bindableMetar)
68
69
74 Q_PROPERTY(Weather::TAF taf READ taf BINDABLE bindableTaf)
75
81 Q_PROPERTY(GeoMaps::Waypoint waypoint READ waypoint WRITE setWaypoint BINDABLE bindableWaypoint REQUIRED)
82
83
84 //
85 // Getter Methods
86 //
87
92 [[nodiscard]] Weather::METAR metar() {return m_metar.value();}
93
98 [[nodiscard]] QBindable<Weather::METAR> bindableMetar() {return &m_metar;}
99
104 [[nodiscard]] Weather::TAF taf() {return m_taf.value();}
105
110 [[nodiscard]] QBindable<Weather::TAF> bindableTaf() {return &m_taf;}
111
116 [[nodiscard]] GeoMaps::Waypoint waypoint() const {return m_waypoint.value();}
117
122 [[nodiscard]] QBindable<QString> bindableWaypoint() {return &m_waypoint;}
123
124
125 //
126 // Setter Methods
127 //
128
133 void setWaypoint(const GeoMaps::Waypoint& wp) {m_waypoint = wp;}
134
135
136private:
137 Q_DISABLE_COPY_MOVE(Observer)
138
139 // Property Waypoint
140 QProperty<GeoMaps::Waypoint> m_waypoint;
141
142 // Property METAR
143 QProperty<Weather::METAR> m_metar;
144
145 // Property TAF
146 QProperty<Weather::TAF> m_taf;
147};
148
149} // namespace Weather
Waypoint, such as an airfield, a navaid station or a reporting point.
Definition Waypoint.h:41
METAR report.
Definition METAR.h:47
Holds and updates METAR and TAF for a given waypoint.
Definition Observer.h:37
Weather::TAF taf
Current TAF.
Definition Observer.h:74
QBindable< Weather::TAF > bindableTaf()
Getter method for property of the same name.
Definition Observer.h:110
Weather::METAR metar
Current METAR.
Definition Observer.h:67
~Observer() override=default
Standard destructor.
QBindable< QString > bindableWaypoint()
Getter method for property of the same name.
Definition Observer.h:122
GeoMaps::Waypoint waypoint() const
Getter method for property of the same name.
Definition Observer.h:116
QBindable< Weather::METAR > bindableMetar()
Getter method for property of the same name.
Definition Observer.h:98
Weather::TAF taf()
Getter method for property of the same name.
Definition Observer.h:104
GeoMaps::Waypoint waypoint
Waypoint for which METAR/TAF data is retrieved.
Definition Observer.h:81
void setWaypoint(const GeoMaps::Waypoint &wp)
Setter method for property of the same name.
Definition Observer.h:133
Observer(QObject *parent=nullptr)
Standard constructor.
TAF forecast.
Definition TAF.h:42
WeatherDataProvider, weather service manager.