Enroute Flight Navigation
A navigation app for VFR pilots
WaypointLibrary.h
1/***************************************************************************
2 * Copyright (C) 2022-2023 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 <QQmlEngine>
24#include <QStandardPaths>
25
26#include "GlobalObject.h"
27#include "geomaps/Waypoint.h"
28
29namespace GeoMaps
30{
31
38
40 {
41 Q_OBJECT
42 QML_ELEMENT
43 QML_SINGLETON
44
45 public:
54 explicit WaypointLibrary(QObject *parent = nullptr);
55
56 // No default constructor, important for QML singleton
57 explicit WaypointLibrary() = delete;
58
59 // factory function for QML singleton
60 static GeoMaps::WaypointLibrary* create(QQmlEngine* /*unused*/, QJSEngine* /*unused*/)
61 {
63 }
64
65 ~WaypointLibrary() override = default;
66
67
68 //
69 // Properties
70 //
71
76 Q_PROPERTY(QList<GeoMaps::Waypoint> waypoints READ waypoints NOTIFY waypointsChanged)
77
78
82 Q_PROPERTY(QByteArray GeoJSON READ GeoJSON NOTIFY waypointsChanged)
83
84
85 //
86 // Getter Methods
87 //
88
93 [[nodiscard]] QList<GeoMaps::Waypoint> waypoints() const
94 {
95 return m_waypoints;
96 }
97
102 [[nodiscard]] QByteArray GeoJSON() const;
103
104
105 //
106 // Methods
107 //
108
114 Q_INVOKABLE void add(const GeoMaps::Waypoint &waypoint);
115
117 Q_INVOKABLE void clear();
118
126 [[nodiscard]] Q_INVOKABLE bool contains(const GeoMaps::Waypoint &waypoint) const
127 {
128 return m_waypoints.contains(waypoint);
129 }
130
140 [[nodiscard]] Q_INVOKABLE QVector<GeoMaps::Waypoint> filteredWaypoints(const QString &filter) const;
141
150 [[nodiscard]] Q_INVOKABLE bool hasNearbyEntry(const GeoMaps::Waypoint& waypoint) const;
151
162 [[nodiscard]] Q_INVOKABLE QString import(const QString& fileName, bool skip);
163
177 [[nodiscard]] Q_INVOKABLE QString loadFromGeoJSON(QString fileName = {});
178
188 [[nodiscard]] Q_INVOKABLE bool remove(const GeoMaps::Waypoint &waypoint);
189
203 [[nodiscard]] Q_INVOKABLE bool replace(const GeoMaps::Waypoint &oldWaypoint, const GeoMaps::Waypoint &newWaypoint);
204
216 [[nodiscard]] Q_INVOKABLE QString save(QString fileName = {}) const;
217
226 [[nodiscard]] Q_INVOKABLE QByteArray toGpx() const;
227
228 signals:
231
232 private:
233 Q_DISABLE_COPY_MOVE(WaypointLibrary)
234
235 // Standard file name for save() and loadFromGeoJGON() methods
236 QString stdFileName{QStandardPaths::writableLocation(QStandardPaths::AppDataLocation) + "/waypoint library.geojson"};
237
238 // Acutual list of waypoints.
239 QList<GeoMaps::Waypoint> m_waypoints;
240 };
241
242} // namespace GeoMaps
Library of user-defined waypoints.
Q_INVOKABLE bool contains(const GeoMaps::Waypoint &waypoint) const
Checks if library contains an given waypoint.
QByteArray GeoJSON
List of waypoints.
Q_INVOKABLE QByteArray toGpx() const
Serialize into GPX document.
Q_INVOKABLE bool hasNearbyEntry(const GeoMaps::Waypoint &waypoint) const
Check if the library contains a waypoint near to a given one.
WaypointLibrary(QObject *parent=nullptr)
Creates a new waypoin library.
Q_INVOKABLE void clear()
Clears the waypoint library.
void waypointsChanged()
Notification signal for the property with the same name.
Q_INVOKABLE void add(const GeoMaps::Waypoint &waypoint)
Adds a waypoint to the library.
QList< GeoMaps::Waypoint > waypoints
List of waypoints.
Q_INVOKABLE QString loadFromGeoJSON(QString fileName={})
Read from file.
Q_INVOKABLE bool remove(const GeoMaps::Waypoint &waypoint)
Remove waypoint.
Q_INVOKABLE bool replace(const GeoMaps::Waypoint &oldWaypoint, const GeoMaps::Waypoint &newWaypoint)
Replace waypoint.
Q_INVOKABLE QString save(QString fileName={}) const
Save to file.
Q_INVOKABLE QVector< GeoMaps::Waypoint > filteredWaypoints(const QString &filter) const
Lists all entries in the waypoint library whose name contains the string 'filter'.
QByteArray GeoJSON() const
Getter function for property with the same name.
Waypoint, such as an airfield, a navaid station or a reporting point.
Definition Waypoint.h:41
static Q_INVOKABLE GeoMaps::WaypointLibrary * waypointLibrary()
Pointer to appplication-wide static WaypointLibrary instance.
GlobalObject(QObject *parent=nullptr)
Standard constructor.