Enroute Flight Navigation
A navigation app for VFR pilots
TrafficFactor_DistanceOnly.h
1/***************************************************************************
2 * Copyright (C) 2021-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 <QGeoCoordinate>
24
25#include "traffic/TrafficFactor_Abstract.h"
26
27
28namespace Traffic {
29
38
40 Q_OBJECT
41 QML_ELEMENT
42
43public:
48 explicit TrafficFactor_DistanceOnly(QObject *parent = nullptr);
49
50 // Standard destructor
51 ~TrafficFactor_DistanceOnly() override = default;
52
53 //
54 // Methods
55 //
56
67 {
69 TrafficFactor_Abstract::copyFrom(other); // This will also call updateDescription
70 }
71
72
73 //
74 // PROPERTIES
75 //
76
77
83 Q_PROPERTY(QGeoCoordinate coordinate READ coordinate WRITE setCoordinate NOTIFY coordinateChanged)
84
85
89 [[nodiscard]] auto coordinate() const -> QGeoCoordinate
90 {
91 return m_coordinate;
92 }
93
100 void setCoordinate(const QGeoCoordinate& newCoordinate)
101 {
102 if (m_coordinate == newCoordinate) {
103 return;
104 }
105
106 m_coordinate = newCoordinate;
107 emit coordinateChanged();
108 }
109
110
111signals:
114
115
116private:
117 Q_DISABLE_COPY_MOVE(TrafficFactor_DistanceOnly)
118
119 // Setter function for the property valid. Implementors of this class must bind this to the
120 // notifier signals of all the properties that validity depends on.
121 void updateValid() override;
122
123 //
124 // Property values
125 //
126 QGeoCoordinate m_coordinate;
127};
128
129} // namespace Traffic
Abstract base class for traffic factors.
void copyFrom(const TrafficFactor_Abstract &other)
Copy data from other object.
auto coordinate() const -> QGeoCoordinate
Getter method for property with the same name.
void coordinateChanged()
Notifier signal.
TrafficFactor_DistanceOnly(QObject *parent=nullptr)
Default constructor.
void copyFrom(const TrafficFactor_DistanceOnly &other)
Copy data from other object.
void setCoordinate(const QGeoCoordinate &newCoordinate)
Setter function for property with the same name.
QGeoCoordinate coordinate
Center coordinate.