FluentUI/src/FluRegister.h

25 lines
566 B
C
Raw Normal View History

2023-03-13 21:18:51 +08:00
#ifndef FLUREGISTER_H
#define FLUREGISTER_H
#include <QObject>
2023-04-11 23:12:31 +08:00
#include <QQuickWindow>
2023-03-13 21:18:51 +08:00
#include <QJsonObject>
#include "stdafx.h"
class FluRegister : public QObject
{
Q_OBJECT
2023-04-11 23:12:31 +08:00
Q_PROPERTY_AUTO(QQuickWindow*,from)
Q_PROPERTY_AUTO(QQuickWindow*,to)
2023-03-13 21:18:51 +08:00
Q_PROPERTY_AUTO(QString,path);
public:
explicit FluRegister(QObject *parent = nullptr);
Q_INVOKABLE void launch(const QJsonObject& argument = {});
Q_INVOKABLE void onResult(const QJsonObject& data = {});
Q_SIGNAL void result(const QJsonObject& data);
};
#endif // FLUREGISTER_H