Enroute Flight Navigation
A navigation app for VFR pilots
Warning.h
1/***************************************************************************
2 * Copyright (C) 2021 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 "units/Angle.h"
24#include "units/Distance.h"
25
26namespace Traffic {
27
29
39
40class Warning {
41 Q_GADGET
42
43 friend TrafficDataSource_Abstract;
44
45public:
47 explicit Warning() = default;
48
49 //
50 // PROPERTIES
51 //
52
69 [[nodiscard]] Q_INVOKABLE int alarmLevel() const
70 {
71 return m_alarmLevel;
72 }
73
90 [[nodiscard]] Q_INVOKABLE int alarmType() const
91 {
92 return m_alarmType;
93 }
94
100 [[nodiscard]] Q_INVOKABLE QString description() const;
101
106 [[nodiscard]] Q_INVOKABLE Units::Distance hDist() const
107 {
108 return m_hDist;
109 }
110
117 Q_INVOKABLE bool operator==(const Traffic::Warning &rhs);
118
123 [[nodiscard]] Q_INVOKABLE Units::Angle relativeBearing() const
124 {
125 return m_relativeBearing;
126 }
127
132 [[nodiscard]] Q_INVOKABLE Units::Distance vDist() const
133 {
134 return m_vDist;
135 }
136
137private:
138 // Private constructor, only to be used by TrafficDataSource_Abstract
139 explicit Warning(const QString& AlarmLevel,
140 const QString& RelativeBearing,
141 const QString& AlarmType,
142 const QString& RelativeVertical,
143 const QString& RelativeDistance);
144
145 // Property values
146 int m_alarmLevel {-1};
147 int m_alarmType {-1};
148 Units::Distance m_hDist;
149 Units::Angle m_relativeBearing;
150 Units::Distance m_vDist;
151};
152
153} // namespace Traffic
154
155// Declare meta types
156Q_DECLARE_METATYPE(Traffic::Warning)
Base class for all traffic receiver data sources.
Traffic warning.
Definition Warning.h:40
Q_INVOKABLE QString description() const
Translated, human-readable alarm message.
Warning()=default
Default constructor.
Q_INVOKABLE int alarmLevel() const
Alarm level, as reported by FLARM.
Definition Warning.h:69
Q_INVOKABLE bool operator==(const Traffic::Warning &rhs)
Comparison.
Q_INVOKABLE Units::Distance vDist() const
Vertical distance to obstacle or aircraft.
Definition Warning.h:132
Q_INVOKABLE int alarmType() const
Alarm type, as reported by FLARM.
Definition Warning.h:90
Q_INVOKABLE Units::Distance hDist() const
Horizontal distance to obstacle or aircraft.
Definition Warning.h:106
Q_INVOKABLE Units::Angle relativeBearing() const
Direction to obstacle or aircraft.
Definition Warning.h:123
Convenience class for angle computations.
Definition Angle.h:41
Convenience class for distance computations.
Definition Distance.h:35