Enroute Flight Navigation
A navigation app for VFR pilots
FileExchange_Android.h
1/***************************************************************************
2 * Copyright (C) 2019-2025 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 "platform/FileExchange_Abstract.h"
24
25namespace Platform {
26
28
29
31{
32 Q_OBJECT
33
34public:
39 explicit FileExchange(QObject *parent = nullptr);
40
41 ~FileExchange() override = default;
42
43
44 //
45 // Methods
46 //
47
49 void importContent() override;
50
61 QString shareContent(const QByteArray& content, const QString& mimeType, const QString& fileNameTemplate) override;
62
73 QString viewContent(const QByteArray& content, const QString& mimeType, const QString& fileNameTemplate) override;
74
86 Q_INVOKABLE static void openFilePicker(const QString& mimeType);
87
88public slots:
90 void onGUISetupCompleted() override;
91
93 void processFileOpenRequest(const QString& path) override;
94
95
96protected:
98 void deferredInitialization() override;
99
100
101private:
102 Q_DISABLE_COPY_MOVE(FileExchange)
103
104 // Helper function. Saves content to a file in a directory from where
105 // sharing to other android apps is possible
106 auto contentToTempFile(const QByteArray& content, const QString& fileNameTemplate) -> QString;
107
108 // Name of a subdirectory within the AppDataLocation for sending and
109 // receiving files.
110 QString fileExchangeDirectoryName;
111
112 // @returns True if an app could be started, false if no app was found
113 static bool outgoingIntent(const QString& methodName, const QString& filePath, const QString& mimeType);
114
115 bool receiveOpenFileRequestsStarted {false};
116 QString pendingReceiveOpenFileRequest;
117};
118
119} // namespace Platform
Interface to platform-specific file exchange functionality.
QString viewContent(const QByteArray &content, const QString &mimeType, const QString &fileNameTemplate) override
Implements pure virtual method from FileExchange_Abstract.
void importContent() override
Implements pure virtual method from FileExchange_Abstract.
QString shareContent(const QByteArray &content, const QString &mimeType, const QString &fileNameTemplate) override
Implements pure virtual method from FileExchange_Abstract.
void onGUISetupCompleted() override
Implements pure virtual method from FileExchange_Abstract.
void deferredInitialization() override
Implements virtual method from FileExchange_Abstract.
FileExchange(QObject *parent=nullptr)
Standard constructor.
static Q_INVOKABLE void openFilePicker(const QString &mimeType)
Opens the native Android file picker.
void processFileOpenRequest(const QString &path) override
Implements pure virtual method from FileExchange_Abstract.