mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2025-07-04 09:05:30 +08:00
update
This commit is contained in:
30
src/FluApp.h
Normal file
30
src/FluApp.h
Normal file
@ -0,0 +1,30 @@
|
||||
#ifndef FLUAPP_H
|
||||
#define FLUAPP_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QWindow>
|
||||
#include <QJsonObject>
|
||||
#include "stdafx.h"
|
||||
|
||||
class FluApp : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_PROPERTY_AUTO(QString,initialRoute);
|
||||
Q_PROPERTY_AUTO(QJsonObject,routes);
|
||||
public:
|
||||
|
||||
static FluApp *getInstance();
|
||||
|
||||
Q_INVOKABLE void run();
|
||||
|
||||
Q_INVOKABLE void navigate(const QString& route);
|
||||
|
||||
Q_INVOKABLE void setAppWindow(QWindow *window);
|
||||
|
||||
private:
|
||||
static FluApp* m_instance;
|
||||
QWindow *appWindow;
|
||||
|
||||
};
|
||||
|
||||
#endif // FLUAPP_H
|
Reference in New Issue
Block a user