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

31 lines
800 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());
2021-04-13 21:14:17 +08:00
this->createLayouts(item);
getLayouts()->setLayoutType(DoricLayoutType::DoricStack);
2021-04-06 16:14:43 +08:00
item->setProperty("wrapper", QString::number((qint64)this));
2021-02-19 10:04:54 +08:00
return item;
2021-02-09 15:54:22 +08:00
}
2021-04-02 20:47:15 +08:00
void DoricStackNode::blendLayoutConfig(QJsonValue jsValue) {
2021-03-02 17:18:23 +08:00
DoricViewNode::blendLayoutConfig(jsValue);
2021-04-02 20:47:15 +08:00
QJsonValue maxWidth = jsValue["maxWidth"];
if (maxWidth.isDouble()) {
2021-03-02 17:18:23 +08:00
}
2021-04-02 20:47:15 +08:00
QJsonValue maxHeight = jsValue["maxHeight"];
if (maxHeight.isDouble()) {
2021-03-02 17:18:23 +08:00
}
}