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
2021-05-20 18:27:45 +08:00

27 lines
709 B
C++

#include "DoricStackNode.h"
QQuickItem *DoricStackNode::build() {
QQmlComponent component(getContext()->getQmlEngine());
const QUrl url(QStringLiteral("qrc:/doric/qml/stack.qml"));
component.loadUrl(url);
if (component.isError()) {
qCritical() << component.errorString();
}
QQuickItem *item = qobject_cast<QQuickItem *>(component.create());
item->setProperty("wrapper", QString::number((qint64)this));
return item;
}
void DoricStackNode::blendLayoutConfig(QJsonValue jsValue) {
DoricViewNode::blendLayoutConfig(jsValue);
QJsonValue maxWidth = jsValue["maxWidth"];
if (maxWidth.isDouble()) {
}
QJsonValue maxHeight = jsValue["maxHeight"];
if (maxHeight.isDouble()) {
}
}