passwordmanager/quickgui/android.h

22 lines
617 B
C
Raw Normal View History

2018-09-04 00:52:43 +02:00
#ifndef QT_QUICK_GUI_ANDROID_H
#define QT_QUICK_GUI_ANDROID_H
#include <QtGlobal>
2018-12-08 19:19:00 +01:00
QT_FORWARD_DECLARE_CLASS(QMessageLogContext)
QT_FORWARD_DECLARE_CLASS(QString)
2018-09-04 00:52:43 +02:00
namespace QtGui {
class Controller;
2018-09-09 00:57:02 +02:00
void applyThemingForAndroid();
2018-09-04 00:52:43 +02:00
void registerControllerForAndroid(Controller *controller);
2019-06-24 18:51:47 +02:00
bool showAndroidFileDialog(bool existing, bool createNew);
2018-09-04 00:52:43 +02:00
int openFileDescriptorFromAndroidContentUrl(const QString &url, const QString &mode);
void writeToAndroidLog(QtMsgType type, const QMessageLogContext &context, const QString &msg);
void setupAndroidSpecifics();
2018-12-08 19:19:00 +01:00
} // namespace QtGui
2018-09-04 00:52:43 +02:00
#endif // QT_QUICK_GUI_ANDROID_H