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

26 lines
658 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-03-02 17:18:23 +08:00
void DoricStackNode::blendLayoutConfig(QJSValue jsValue) {
DoricViewNode::blendLayoutConfig(jsValue);
QJSValue maxWidth = jsValue.property("maxWidth");
if (maxWidth.isNumber()) {
}
QJSValue maxHeight = jsValue.property("maxHeight");
if (maxHeight.isNumber()) {
}
}