This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-Qt/doric/shader/DoricStackNode.cpp

18 lines
460 B
C++
Raw Normal View History

2021-02-09 15:54:22 +08:00
#include "DoricStackNode.h"
2021-02-19 10:04:54 +08:00
QQuickItem *DoricStackNode::build() {
2021-02-23 14:28:08 +08:00
QQmlComponent component(getContext()->getQmlEngine());
2021-02-09 15:54:22 +08:00
const QUrl url(QStringLiteral("qrc:/doric/qml/stack.qml"));
2021-02-19 10:04:54 +08:00
component.loadUrl(url);
2021-02-09 15:54:22 +08:00
2021-02-23 15:10:19 +08:00
if (component.isError()) {
qCritical() << component.errorString();
}
2021-02-23 14:28:08 +08:00
2021-02-19 10:04:54 +08:00
QQuickItem *item = qobject_cast<QQuickItem *>(component.create());
return item;
2021-02-09 15:54:22 +08:00
}
2021-02-19 10:04:54 +08:00
void DoricStackNode::blendLayoutConfig() { DoricViewNode::blendLayoutConfig(); }