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/example/doric/shader/DoricTextNode.cpp

107 lines
3.6 KiB
C++
Raw Normal View History

2021-02-25 19:04:14 +08:00
#include "DoricTextNode.h"
2021-03-16 16:01:38 +08:00
#include "../utils/DoricUtils.h"
2021-02-25 19:04:14 +08:00
QQuickItem *DoricTextNode::build() {
QQmlComponent component(getContext()->getQmlEngine());
const QUrl url(QStringLiteral("qrc:/doric/qml/text.qml"));
component.loadUrl(url);
if (component.isError()) {
qCritical() << component.errorString();
}
QQuickItem *item = qobject_cast<QQuickItem *>(component.create());
2021-04-13 21:14:17 +08:00
this->createLayouts(item);
2021-04-06 16:14:43 +08:00
item->setProperty("wrapper", QString::number((qint64)this));
2021-02-25 19:04:14 +08:00
return item;
}
2021-05-25 12:42:14 +08:00
void DoricTextNode::blendLayoutConfig(QJsonValue jsObject) {
DoricViewNode::blendLayoutConfig(jsObject);
DoricLayouts *layout =
(DoricLayouts *)(mView->property("doricLayout").toULongLong());
QJsonValue maxWidth = jsObject["maxWidth"];
if (maxWidth.isDouble()) {
layout->setMaxWidth(maxWidth.toDouble());
}
QJsonValue maxHeight = jsObject["maxHeight"];
if (maxHeight.isDouble()) {
layout->setMaxHeight(maxHeight.toDouble());
}
}
2021-04-02 20:47:15 +08:00
void DoricTextNode::blend(QQuickItem *view, QString name, QJsonValue prop) {
2021-02-25 19:04:14 +08:00
if (name == "text") {
view->setProperty("text", prop.toString());
2021-03-16 16:01:38 +08:00
} else if (name == "textColor") {
2021-04-02 20:47:15 +08:00
QString color = DoricUtils::doricColor(prop.toInt()).name();
view->setProperty("color", color);
2021-03-16 16:01:38 +08:00
} else if (name == "textSize") {
QFont font = view->property("font").value<QFont>();
2021-04-02 20:47:15 +08:00
font.setPixelSize(prop.toInt());
view->setProperty("font", QVariant(font));
2021-03-18 11:27:26 +08:00
} else if (name == "textAlignment") {
view->setProperty("textAlignment", prop.toInt());
2021-05-26 11:35:48 +08:00
} else if (name == "maxLines") {
view->setProperty("lineCount", prop.toInt());
2021-05-19 14:27:44 +08:00
} else if (name == "fontStyle") {
view->setProperty("fontStyle", prop.toString());
2021-05-26 15:47:44 +08:00
} else if (name == "font") {
QString font = prop.toString();
QString fontPath = "";
QString fontName = font;
if (font.contains("/")) {
int separatorIndex = font.lastIndexOf("/");
fontPath = QStringRef(&font, 0, separatorIndex + 1).toString();
fontName = QStringRef(&font, separatorIndex + 1,
font.length() - separatorIndex - 1)
.toString();
}
if (fontName.endsWith(".ttf")) {
fontName = fontName.replace(".ttf", "");
}
QString path = "qrc:/" + fontPath + fontName + ".ttf";
view->setProperty("fontSource", path);
2021-05-25 11:30:11 +08:00
} else if (name == "shadow") {
view->setProperty("shadowColor", QVariant::fromValue(DoricUtils::doricColor(
prop["color"].toInt())));
view->setProperty("shadowRadius", prop["radius"].toDouble());
view->setProperty("shadowOffsetX", prop["offsetX"].toDouble());
view->setProperty("shadowOffsetY", prop["offsetY"].toDouble());
view->setProperty("shadowOpacity", prop["opacity"].toDouble());
2021-05-25 12:42:14 +08:00
} else if (name == "htmlText") {
view->setProperty("text", prop.toString());
2021-05-27 16:18:44 +08:00
view->setProperty("htmlText", true);
2021-05-25 12:42:14 +08:00
} else if (name == "maxWidth") {
DoricLayouts *layout =
(DoricLayouts *)(mView->property("doricLayout").toULongLong());
layout->setMaxWidth(prop.toDouble());
} else if (name == "maxHeight") {
DoricLayouts *layout =
(DoricLayouts *)(mView->property("doricLayout").toULongLong());
layout->setMaxHeight(prop.toDouble());
2021-05-25 14:44:42 +08:00
} else if (name == "strikethrough") {
view->setProperty("strikethrough", prop.toBool());
} else if (name == "underline") {
view->setProperty("underline", prop.toBool());
2021-05-26 11:35:48 +08:00
} else if (name == "lineSpacing") {
2021-05-27 16:07:09 +08:00
view->setProperty("lineSpacing", prop.toDouble());
2021-02-25 19:04:14 +08:00
} else {
DoricViewNode::blend(view, name, prop);
}
}
2021-06-15 17:36:01 +08:00
void DoricTextNode::blend(QJsonValue jsValue) {
DoricViewNode::blend(jsValue);
getLayouts()->setResolved(false);
}