2021-05-25 16:51:39 +08:00
|
|
|
#include "DoricInputNode.h"
|
2021-05-26 17:50:32 +08:00
|
|
|
#include "../utils/DoricUtils.h"
|
2021-05-25 16:51:39 +08:00
|
|
|
|
|
|
|
QQuickItem *DoricInputNode::build() {
|
|
|
|
QQmlComponent component(getContext()->getQmlEngine());
|
|
|
|
|
|
|
|
const QUrl url(QStringLiteral("qrc:/doric/qml/input.qml"));
|
|
|
|
component.loadUrl(url);
|
|
|
|
|
|
|
|
if (component.isError()) {
|
|
|
|
qCritical() << component.errorString();
|
|
|
|
}
|
|
|
|
|
|
|
|
QQuickItem *item = qobject_cast<QQuickItem *>(component.create());
|
|
|
|
this->createLayouts(item);
|
|
|
|
|
|
|
|
item->setProperty("wrapper", QString::number((qint64)this));
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DoricInputNode::blend(QQuickItem *view, QString name, QJsonValue prop) {
|
2021-05-26 17:50:32 +08:00
|
|
|
if (name == "text") {
|
|
|
|
view->setProperty("text", prop.toString());
|
|
|
|
} else if (name == "textColor") {
|
|
|
|
QString color = DoricUtils::doricColor(prop.toInt()).name();
|
|
|
|
view->setProperty("color", color);
|
|
|
|
} else if (name == "textSize") {
|
|
|
|
QFont font = view->property("font").value<QFont>();
|
|
|
|
font.setPixelSize(prop.toInt());
|
|
|
|
view->setProperty("font", QVariant(font));
|
|
|
|
} else if (name == "hintText") {
|
2021-05-26 11:36:11 +08:00
|
|
|
view->setProperty("placeholderText", prop.toString());
|
|
|
|
} else if (name == "textAlignment") {
|
|
|
|
view->setProperty("textAlignment", prop.toInt());
|
|
|
|
} else {
|
|
|
|
DoricViewNode::blend(view, name, prop);
|
|
|
|
}
|
2021-05-25 16:51:39 +08:00
|
|
|
}
|