Enroute Flight Navigation
A navigation app for VFR pilots
FileExchange_Abstract.h
1/***************************************************************************
2 * Copyright (C) 2019-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 <QQmlEngine>
24#include "GlobalObject.h"
25#include "geomaps/Waypoint.h"
26
27namespace Platform {
28
39
41{
42 Q_OBJECT
43 QML_NAMED_ELEMENT(FileExchange)
44 QML_SINGLETON
45
46public:
48 enum FileFunction : quint8
49 {
50 UnknownFunction, /*< Unknown file */
51 FlightRouteOrWaypointLibrary, /*< File contains a flight route or a waypoint library. */
52 FlightRoute, /*< File contains a flight route. */
53 VectorMap, /*< File contains a vector map. */
54 RasterMap, /*< File contains a raster map. */
55 WaypointLibrary, /*< Waypoint library in CUP or GeoJSON format */
56 OpenAir, /*< Airspace data in openAir format */
57 VAC, /*< Visual Approach Chart */
58 Image, /*< Image without georeferencing information */
59 TripKit, /*< Trip Kit */
60 ZipFile /*< Zip File */
61 };
62 Q_ENUM(FileFunction)
63
64
65
69 explicit FileExchange_Abstract(QObject* parent = nullptr);
70
71 // No default constructor, important for QML singleton
72 explicit FileExchange_Abstract() = delete;
73
74 ~FileExchange_Abstract() override = default;
75
76 // factory function for QML singleton
77 static Platform::FileExchange_Abstract* create(QQmlEngine* /*unused*/, QJSEngine* /*unused*/)
78 {
80 }
81
82
83 //
84 // Methods
85 //
86
87
94 Q_INVOKABLE virtual void importContent() = 0;
95
114 Q_INVOKABLE virtual QString shareContent(const QByteArray& content, const QString& mimeType, const QString& fileNameTemplate) = 0;
115
130 Q_INVOKABLE virtual QString viewContent(const QByteArray& content, const QString& mimeType, const QString& fileNameTemplate) = 0;
131
132public slots:
139 virtual void onGUISetupCompleted() = 0;
140
149 virtual void processFileOpenRequest(const QString& path);
150
157 void processFileOpenRequest(const QByteArray& path);
158
168 void processText(const QString& text);
169
180 bool processTextQuiet(const QString& text);
181
182signals:
194 void openFileRequest(QString fileName, QString info, Platform::FileExchange_Abstract::FileFunction fileFunction);
195
204
211 void resolveURL(QString url, QString site);
212
214 void unableToProcessText(QString text);
215
216private:
217 Q_DISABLE_COPY_MOVE(FileExchange_Abstract)
218};
219
220} // namespace Platform
221
222// Declare meta types
223Q_DECLARE_METATYPE(Platform::FileExchange_Abstract)
Waypoint, such as an airfield, a navaid station or a reporting point.
Definition Waypoint.h:41
static Q_INVOKABLE Platform::FileExchange_Abstract * fileExchange()
Pointer to appplication-wide static FileExchange instance.
GlobalObject(QObject *parent=nullptr)
Standard constructor.
Interface to platform-specific file exchange functionality.
virtual Q_INVOKABLE QString viewContent(const QByteArray &content, const QString &mimeType, const QString &fileNameTemplate)=0
View content.
void resolveURL(QString url, QString site)
Emitted when Google Maps URL needs to be resolved.
void unableToProcessText(QString text)
Emitted when processText was unable to parse a text item.
virtual Q_INVOKABLE QString shareContent(const QByteArray &content, const QString &mimeType, const QString &fileNameTemplate)=0
Share content.
bool processTextQuiet(const QString &text)
Process text.
void openWaypointRequest(GeoMaps::Waypoint waypoint)
Emitted when platform asks this app to show a waypoint.
virtual void processFileOpenRequest(const QString &path)
Determine file function and emit openFileRequest()
FileFunction
Functions and types of a file that this app handles.
void processText(const QString &text)
Process text.
void processFileOpenRequest(const QByteArray &path)
Determine file function and emit openFileRequest()
FileExchange_Abstract(QObject *parent=nullptr)
Standard constructor.
virtual Q_INVOKABLE void importContent()=0
Import content from file.
virtual void onGUISetupCompleted()=0
GUI setup completed.
void openFileRequest(QString fileName, QString info, Platform::FileExchange_Abstract::FileFunction fileFunction)
Emitted when platform asks this app to open a file.
Implementation of FileExchange for Android devices.