74class Share :
public QObject
79 explicit Share(QObject *parent =
nullptr);
92 void sendContent(
const QString& content,
const QString& mimeType,
const QString& suffix);
105 void viewContent(
const QString& content,
const QString& mimeType,
const QString& suffix);
119 void saveContent(
const QString& content,
const QString& mimeType,
const QString& suffix);
128 Q_INVOKABLE
void importFile(
const QString& mimeType =
nullptr);
167 Q_DISABLE_COPY_MOVE(Share)
169 static Share* mInstance;
172 QString contentToTempFile(
const QString& content,
const QString& suffix);
175 void outgoingIntent(
const QString& methodName,
const QString& filePath,
const QString& mimeType);
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...