Enroute Flight Navigation
A navigation app for VFR pilots
Share.h
1
19
20#pragma once
21
22#include <QObject>
23
74class Share : public QObject
75{
76 Q_OBJECT
77
78public:
79 explicit Share(QObject *parent = nullptr);
80
91 Q_INVOKABLE
92 void sendContent(const QString& content, const QString& mimeType, const QString& suffix);
93
104 Q_INVOKABLE
105 void viewContent(const QString& content, const QString& mimeType, const QString& suffix);
106
118 Q_INVOKABLE
119 void saveContent(const QString& content, const QString& mimeType, const QString& suffix);
120
128 Q_INVOKABLE void importFile(const QString& mimeType = nullptr);
129
139 Q_INVOKABLE void checkPendingIntents();
140
146 static Share* getInstance();
147
153 void setFileReceived(const QString& fname);
154
155signals:
159
164 void fileReceived(const QString& fname);
165
166private:
167 Q_DISABLE_COPY_MOVE(Share)
168
169 static Share* mInstance;
170 QString mSavePath;
171
172 QString contentToTempFile(const QString& content, const QString& suffix);
173 void clearTempDir();
174 QString tempDir();
175 void outgoingIntent(const QString& methodName, const QString& filePath, const QString& mimeType);
176};
void shareNoAppAvailable()
emits when a share fails because an app could not be found
static Share * getInstance()
get single instance of the Share. used from the JNI "callback" setFileReceived()
Q_INVOKABLE void sendContent(const QString &content, const QString &mimeType, const QString &suffix)
share text content with other app.
Q_INVOKABLE void checkPendingIntents()
fired if the main window becomes active, triggered from main.qml.
Q_INVOKABLE void saveContent(const QString &content, const QString &mimeType, const QString &suffix)
save content to file system
void fileReceived(const QString &fname)
emits when a file is received
Q_INVOKABLE void viewContent(const QString &content, const QString &mimeType, const QString &suffix)
open content in other app
Q_INVOKABLE void importFile(const QString &mimeType=nullptr)
import file
void setFileReceived(const QString &fname)
called from the JNI "callback" setFileReceived() to receive the received file name and to emit fileRe...