2023-02-26 23:47:07 +08:00
|
|
|
|
#ifndef FLUAPP_H
|
|
|
|
|
#define FLUAPP_H
|
|
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
#include <QWindow>
|
2023-04-27 09:38:57 +08:00
|
|
|
|
#include <QtQml/qqml.h>
|
2023-03-02 12:20:16 +08:00
|
|
|
|
#include <QJsonArray>
|
2023-03-03 18:19:48 +08:00
|
|
|
|
#include <QQmlContext>
|
2023-02-26 23:47:07 +08:00
|
|
|
|
#include <QJsonObject>
|
2023-03-03 18:19:48 +08:00
|
|
|
|
#include <QQmlEngine>
|
2023-04-27 09:38:57 +08:00
|
|
|
|
#include "FluTheme.h"
|
|
|
|
|
#include "FluColors.h"
|
|
|
|
|
#include "NativeEventFilter.h"
|
2023-03-13 21:18:51 +08:00
|
|
|
|
#include "FluRegister.h"
|
2023-02-26 23:47:07 +08:00
|
|
|
|
#include "stdafx.h"
|
|
|
|
|
|
|
|
|
|
class FluApp : public QObject
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
Q_PROPERTY_AUTO(QString,initialRoute);
|
|
|
|
|
Q_PROPERTY_AUTO(QJsonObject,routes);
|
2023-04-27 09:38:57 +08:00
|
|
|
|
QML_NAMED_ELEMENT(FluApp)
|
|
|
|
|
QML_SINGLETON
|
2023-02-26 23:47:07 +08:00
|
|
|
|
public:
|
|
|
|
|
static FluApp *getInstance();
|
2023-02-27 18:46:39 +08:00
|
|
|
|
explicit FluApp(QObject *parent = nullptr);
|
2023-04-27 09:38:57 +08:00
|
|
|
|
~FluApp(){
|
|
|
|
|
if (nativeEvent != Q_NULLPTR) {
|
|
|
|
|
delete nativeEvent;
|
|
|
|
|
nativeEvent = Q_NULLPTR;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-02-26 23:47:07 +08:00
|
|
|
|
Q_INVOKABLE void run();
|
2023-03-13 21:18:51 +08:00
|
|
|
|
Q_INVOKABLE void navigate(const QString& route,const QJsonObject& argument = {},FluRegister* fluRegister = nullptr);
|
2023-04-11 23:12:31 +08:00
|
|
|
|
Q_INVOKABLE void init(QQuickWindow *window);
|
2023-03-02 18:21:43 +08:00
|
|
|
|
Q_INVOKABLE QJsonArray awesomelist(const QString& keyword = "");
|
2023-03-02 12:20:16 +08:00
|
|
|
|
Q_INVOKABLE void clipText(const QString& text);
|
2023-03-30 17:16:57 +08:00
|
|
|
|
Q_INVOKABLE QString uuid();
|
2023-04-19 09:41:08 +08:00
|
|
|
|
Q_INVOKABLE void closeApp();
|
2023-04-27 09:38:57 +08:00
|
|
|
|
Q_INVOKABLE void setFluApp(FluApp* val);
|
|
|
|
|
Q_INVOKABLE void setFluTheme(FluTheme* val);
|
|
|
|
|
Q_INVOKABLE void setFluColors(FluColors* val);
|
2023-04-11 23:12:31 +08:00
|
|
|
|
public:
|
|
|
|
|
QMap<quint64, QQuickWindow*> wnds;
|
2023-04-27 09:38:57 +08:00
|
|
|
|
static FluApp* fluApp;
|
|
|
|
|
static FluTheme* fluTheme;
|
|
|
|
|
static FluColors* flutColors;
|
2023-02-26 23:47:07 +08:00
|
|
|
|
private:
|
2023-04-27 09:38:57 +08:00
|
|
|
|
NativeEventFilter *nativeEvent = Q_NULLPTR;
|
2023-02-26 23:47:07 +08:00
|
|
|
|
QWindow *appWindow;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // FLUAPP_H
|