mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-23 19:20:59 +08:00
46 lines
1.2 KiB
C++
46 lines
1.2 KiB
C++
#ifndef FLUAPP_H
|
|
#define FLUAPP_H
|
|
|
|
#include <QObject>
|
|
#include <QWindow>
|
|
#include <QtQml/qqml.h>
|
|
#include <QJsonArray>
|
|
#include <QQmlContext>
|
|
#include <QJsonObject>
|
|
#include <QQmlEngine>
|
|
#include "FluRegister.h"
|
|
#include "stdafx.h"
|
|
#include "singleton.h"
|
|
|
|
/**
|
|
* @brief The FluApp class
|
|
*/
|
|
class FluApp : public QObject
|
|
{
|
|
Q_OBJECT
|
|
Q_PROPERTY_AUTO(bool,vsync)
|
|
Q_PROPERTY_AUTO(QString,initialRoute);
|
|
Q_PROPERTY_AUTO(QJsonObject,routes);
|
|
Q_PROPERTY_AUTO(bool,useSystemAppBar);
|
|
Q_PROPERTY_AUTO(QString,windowIcon);
|
|
QML_NAMED_ELEMENT(FluApp)
|
|
QML_SINGLETON
|
|
private:
|
|
explicit FluApp(QObject *parent = nullptr);
|
|
~FluApp();
|
|
public:
|
|
SINGLETONG(FluApp)
|
|
static FluApp *create(QQmlEngine *qmlEngine, QJSEngine *jsEngine){return getInstance();}
|
|
Q_INVOKABLE void run();
|
|
Q_INVOKABLE void navigate(const QString& route,const QJsonObject& argument = {},FluRegister* fluRegister = nullptr);
|
|
Q_INVOKABLE void init(QObject *window);
|
|
Q_INVOKABLE void exit(int retCode = 0);
|
|
void addWindow(QQuickWindow* window);
|
|
void removeWindow(QQuickWindow* window);
|
|
private:
|
|
QMap<quint64, QQuickWindow*> _windows;
|
|
QObject* _application = nullptr;
|
|
};
|
|
|
|
#endif // FLUAPP_H
|