Enroute Flight Navigation
A navigation app for VFR pilots
PositionInfoSource_Abstract.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 <QGeoPositionInfo>
24#include <QProperty>
25#include <QTimer>
26
27#include "positioning/PositionInfo.h"
28
29
30namespace Positioning {
31
38
39
40class PositionInfoSource_Abstract : public QObject {
41 Q_OBJECT
42
43public:
48 explicit PositionInfoSource_Abstract(QObject *parent = nullptr);
49
50
51 //
52 // Properties
53 //
54
63
64
71
78 Q_PROPERTY(QString sourceName READ sourceName BINDABLE bindableSourceName)
79
86 Q_PROPERTY(QString statusString READ statusString BINDABLE bindableStatusString)
87
88
89 //
90 // Getter Methods
91 //
92
97 [[nodiscard]] Positioning::PositionInfo positionInfo() const
98 {
99 return m_positionInfo.value();
100 }
101
106 [[nodiscard]] QBindable<Positioning::PositionInfo> bindablePositionInfo() const
107 {
108 return &m_positionInfo;
109 }
110
115 [[nodiscard]] bool receivingPositionInfo() const {return m_receivingPositionInfo.value();}
116
121 [[nodiscard]] QBindable<bool> bindableReceivingPositionInfo() {return &m_receivingPositionInfo;}
122
127 [[nodiscard]] QString sourceName() const
128 {
129 return m_sourceName.value();
130 }
131
136 [[nodiscard]] QBindable<QString> bindableSourceName() const
137 {
138 return &m_sourceName;
139 }
140
145 [[nodiscard]] QString statusString() const
146 {
147 return m_statusString.value();
148 }
149
154 [[nodiscard]] QBindable<QString> bindableStatusString() const
155 {
156 return &m_statusString;
157 }
158
159protected:
160 // This method must be used by child classes to update the position info.
161 // The class uses a timer internally to reset the position info to "invalid"
162 // after the time specified in PositionInfo::lifetime seconds. It also
163 // updates the property receivingPositionInfo.
164 void setPositionInfo(const Positioning::PositionInfo& info);
165
166 // This method must be used by child classes to update the source name
167 void setSourceName(const QString& name) {m_sourceName = name;}
168
169 QProperty<QString> m_statusString;
170
171private:
172 QProperty<Positioning::PositionInfo> m_positionInfo;
173 QTimer m_positionInfoTimer;
174
175 QProperty<bool> m_receivingPositionInfo {false};
176 QProperty<QString> m_sourceName;
177};
178
179} // namespace Positioning
Positioning::PositionInfo positionInfo
Position information.
QBindable< QString > bindableSourceName() const
Getter method for property with the same name.
QBindable< bool > bindableReceivingPositionInfo()
Getter method for property with the same name.
bool receivingPositionInfo
Indicator that position information is being received.
PositionInfoSource_Abstract(QObject *parent=nullptr)
Default constructor.
QString sourceName() const
Getter method for property with the same name.
QBindable< Positioning::PositionInfo > bindablePositionInfo() const
Getter method for property with the same name.
bool receivingPositionInfo() const
Getter method for property with the same name.
QString statusString() const
Getter method for property with the same name.
QBindable< QString > bindableStatusString() const
Getter method for property with the same name.
Geographic position.