2023-02-26 23:47:07 +08:00
|
|
|
|
#ifndef FLUAPP_H
|
|
|
|
|
#define FLUAPP_H
|
|
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
#include <QWindow>
|
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-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-02-27 23:04:52 +08:00
|
|
|
|
|
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-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-02-26 23:47:07 +08:00
|
|
|
|
|
2023-04-11 23:12:31 +08:00
|
|
|
|
Q_INVOKABLE void init(QQuickWindow *window);
|
2023-02-27 18:46:39 +08:00
|
|
|
|
|
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-11 23:12:31 +08:00
|
|
|
|
public:
|
|
|
|
|
QMap<quint64, QQuickWindow*> wnds;
|
2023-02-26 23:47:07 +08:00
|
|
|
|
private:
|
2023-03-13 21:18:51 +08:00
|
|
|
|
static FluApp* m_instance;
|
2023-02-26 23:47:07 +08:00
|
|
|
|
QWindow *appWindow;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // FLUAPP_H
|