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

14 lines
352 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() {
QQmlComponent component;
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-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(); }