24#include <QStandardPaths>
26#include "GlobalObject.h"
27#include "geomaps/Waypoint.h"
128 return m_waypoints.contains(waypoint);
140 [[nodiscard]] Q_INVOKABLE QVector<GeoMaps::Waypoint>
filteredWaypoints(
const QString &filter)
const;
162 [[nodiscard]] Q_INVOKABLE QString
import(
const QString& fileName,
bool skip);
216 [[nodiscard]] Q_INVOKABLE QString
save(QString fileName = {})
const;
226 [[nodiscard]] Q_INVOKABLE QByteArray
toGpx()
const;
236 QString stdFileName{QStandardPaths::writableLocation(QStandardPaths::AppDataLocation) +
"/waypoint library.geojson"};
239 QList<GeoMaps::Waypoint> m_waypoints;
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.
static Q_INVOKABLE GeoMaps::WaypointLibrary * waypointLibrary()
Pointer to appplication-wide static WaypointLibrary instance.
GlobalObject(QObject *parent=nullptr)
Standard constructor.