6452b469a2
int -> qreal; set width & height property only under change; code refactor; v8 isolate npe try fix
32 lines
865 B
C++
32 lines
865 B
C++
#include "DoricVLayoutNode.h"
|
|
|
|
QQuickItem *DoricVLayoutNode::build() {
|
|
QQmlComponent component(getContext()->getQmlEngine());
|
|
|
|
const QUrl url(QStringLiteral("qrc:/doric/qml/vlayout.qml"));
|
|
component.loadUrl(url);
|
|
|
|
if (component.isError()) {
|
|
qCritical() << component.errorString();
|
|
}
|
|
|
|
QQuickItem *item = qobject_cast<QQuickItem *>(component.create());
|
|
this->createLayouts(item);
|
|
|
|
getLayouts()->setLayoutType(DoricLayoutType::DoricVLayout);
|
|
|
|
item->setProperty("wrapper", QString::number((qint64)this));
|
|
return item;
|
|
}
|
|
|
|
void DoricVLayoutNode::blend(QQuickItem *view, QString name, QJsonValue prop) {
|
|
QQuickItem *container = view;
|
|
if (name == "space") {
|
|
getLayouts()->setSpacing(prop.toDouble());
|
|
} else if (name == "gravity") {
|
|
getLayouts()->setGravity(prop.toInt());
|
|
} else {
|
|
DoricGroupNode::blend(view, name, prop);
|
|
}
|
|
}
|