mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-23 19:20:59 +08:00
21 lines
413 B
C++
21 lines
413 B
C++
#include "WindowHelper.h"
|
|
|
|
#include "FluRegister.h"
|
|
|
|
WindowHelper::WindowHelper(QObject *parent)
|
|
: QObject{parent}
|
|
{
|
|
|
|
}
|
|
|
|
void WindowHelper::initWindow(QQuickWindow* window){
|
|
this->window = window;
|
|
}
|
|
|
|
QVariant WindowHelper::createRegister(QQuickWindow* window,const QString& path){
|
|
FluRegister *p = new FluRegister(window);
|
|
p->from(window);
|
|
p->path(path);
|
|
return QVariant::fromValue(p);
|
|
}
|