2023-05-22 16:17:51 +08:00
|
|
|
|
#ifndef FLUAPP_H
|
2023-02-26 23:47:07 +08:00
|
|
|
|
#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-03-13 21:18:51 +08:00
|
|
|
|
#include "FluRegister.h"
|
2023-07-20 18:26:47 +08:00
|
|
|
|
#include "FluHttpInterceptor.h"
|
2023-02-26 23:47:07 +08:00
|
|
|
|
#include "stdafx.h"
|
|
|
|
|
|
2023-04-27 17:29:39 +08:00
|
|
|
|
/**
|
|
|
|
|
* @brief The FluApp class
|
|
|
|
|
*/
|
2023-02-26 23:47:07 +08:00
|
|
|
|
class FluApp : public QObject
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
2023-04-27 17:29:39 +08:00
|
|
|
|
/**
|
|
|
|
|
* @brief initialRoute 初始路由
|
|
|
|
|
*/
|
2023-02-26 23:47:07 +08:00
|
|
|
|
Q_PROPERTY_AUTO(QString,initialRoute);
|
2023-04-27 17:29:39 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief routes 路由表
|
|
|
|
|
*/
|
2023-02-26 23:47:07 +08:00
|
|
|
|
Q_PROPERTY_AUTO(QJsonObject,routes);
|
2023-04-27 17:29:39 +08:00
|
|
|
|
|
2023-07-20 18:26:47 +08:00
|
|
|
|
/**
|
|
|
|
|
* @brief http拦截器
|
|
|
|
|
*/
|
|
|
|
|
Q_PROPERTY_AUTO(FluHttpInterceptor*,httpInterceptor);
|
|
|
|
|
|
2023-04-27 09:38:57 +08:00
|
|
|
|
QML_NAMED_ELEMENT(FluApp)
|
|
|
|
|
QML_SINGLETON
|
2023-05-11 18:24:58 +08:00
|
|
|
|
private:
|
|
|
|
|
/**
|
|
|
|
|
* @brief FluApp 将默认构造函数设置为私有,则qml创建单例就会走create工厂方法创建单例
|
|
|
|
|
* @param parent
|
|
|
|
|
*/
|
2023-02-27 18:46:39 +08:00
|
|
|
|
explicit FluApp(QObject *parent = nullptr);
|
2023-05-11 18:24:58 +08:00
|
|
|
|
public:
|
2023-04-27 17:29:39 +08:00
|
|
|
|
~FluApp();
|
2023-05-11 18:24:58 +08:00
|
|
|
|
static FluApp *create(QQmlEngine *qmlEngine, QJSEngine *jsEngine)
|
|
|
|
|
{
|
|
|
|
|
return getInstance();
|
|
|
|
|
}
|
|
|
|
|
static FluApp *getInstance();
|
2023-04-27 17:29:39 +08:00
|
|
|
|
/**
|
|
|
|
|
* @brief run
|
|
|
|
|
*/
|
2023-02-26 23:47:07 +08:00
|
|
|
|
Q_INVOKABLE void run();
|
2023-04-27 17:29:39 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief navigate
|
|
|
|
|
* @param route
|
|
|
|
|
* @param argument
|
|
|
|
|
* @param fluRegister
|
|
|
|
|
*/
|
2023-03-13 21:18:51 +08:00
|
|
|
|
Q_INVOKABLE void navigate(const QString& route,const QJsonObject& argument = {},FluRegister* fluRegister = nullptr);
|
2023-04-27 17:29:39 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief init
|
|
|
|
|
* @param window
|
|
|
|
|
*/
|
2023-04-11 23:12:31 +08:00
|
|
|
|
Q_INVOKABLE void init(QQuickWindow *window);
|
2023-04-27 17:29:39 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief awesomelist
|
|
|
|
|
* @param keyword
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
2023-03-02 18:21:43 +08:00
|
|
|
|
Q_INVOKABLE QJsonArray awesomelist(const QString& keyword = "");
|
2023-04-27 17:29:39 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief closeApp
|
|
|
|
|
*/
|
2023-04-19 09:41:08 +08:00
|
|
|
|
Q_INVOKABLE void closeApp();
|
2023-04-27 17:29:39 +08:00
|
|
|
|
|
2023-06-28 02:28:34 +08:00
|
|
|
|
Q_INVOKABLE void deleteWindow(QQuickWindow* window);
|
|
|
|
|
|
2023-04-11 23:12:31 +08:00
|
|
|
|
public:
|
2023-04-27 17:29:39 +08:00
|
|
|
|
/**
|
|
|
|
|
* @brief wnds
|
|
|
|
|
*/
|
2023-04-11 23:12:31 +08:00
|
|
|
|
QMap<quint64, QQuickWindow*> wnds;
|
2023-04-27 17:29:39 +08:00
|
|
|
|
|
2023-02-26 23:47:07 +08:00
|
|
|
|
private:
|
2023-05-11 18:24:58 +08:00
|
|
|
|
static FluApp* m_instance;
|
2023-04-27 17:29:39 +08:00
|
|
|
|
/**
|
|
|
|
|
* @brief appWindow
|
|
|
|
|
*/
|
2023-02-26 23:47:07 +08:00
|
|
|
|
QWindow *appWindow;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // FLUAPP_H
|