Pre-subnode update.
This commit is contained in:
@ -126,7 +126,7 @@ void UILabel::rebufferQuads(const std::vector<struct UILabelText> newTexts) {
|
|||||||
// Determine font dimensions.
|
// Determine font dimensions.
|
||||||
auto itText = newTexts.begin();
|
auto itText = newTexts.begin();
|
||||||
while(itText != newTexts.end()) {
|
while(itText != newTexts.end()) {
|
||||||
position.y = mathMax<float_t>(position.y, itText->style.size * this->lineHeight);
|
position.y = mathMax<float_t>(position.y, itText->style.size/* this->lineHeight - THIS PART WOULD TAKE THE LINE HEIGHT INTO CONSIDERATION ON THE FIRST/INITIAL LINE */);
|
||||||
++itText;
|
++itText;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -149,12 +149,18 @@ void Xml::load(Xml *xml, std::string data, size_t *j) {
|
|||||||
case XML_PARSE_STATE_PARSING_VALUE:
|
case XML_PARSE_STATE_PARSING_VALUE:
|
||||||
// Keep parsing child until we find a < for an opening/closing tag.
|
// Keep parsing child until we find a < for an opening/closing tag.
|
||||||
if(c == '<' && !(data[i] == '<' || data[i-2] == '<')) {
|
if(c == '<' && !(data[i] == '<' || data[i-2] == '<')) {
|
||||||
// In HTML Spec there could be a child here but not in XML spec.
|
if(data[i] == '/') {
|
||||||
doing = XML_PARSE_STATE_PARSING_CLOSE;
|
// In HTML Spec there could be a child here but not in XML spec.
|
||||||
xml->value = buffer;
|
doing = XML_PARSE_STATE_PARSING_CLOSE;
|
||||||
buffer.clear();
|
xml->value = buffer;
|
||||||
valueIsInWhitespace = false;
|
buffer.clear();
|
||||||
bufferWhitespaces.clear();
|
valueIsInWhitespace = false;
|
||||||
|
bufferWhitespaces.clear();
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::cout << "Detected unsupported use of a child within a node value, e.g. <div>Hello <b>world</b> how are you?</div>" << std::endl;
|
||||||
|
throw "Test";
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -22,6 +22,9 @@ int32_t VNTextParser::onParse(
|
|||||||
struct VNText *out,
|
struct VNText *out,
|
||||||
std::string *error
|
std::string *error
|
||||||
) {
|
) {
|
||||||
|
|
||||||
|
std::cout << "TEST" << node->innerXml << std::endl;
|
||||||
|
|
||||||
out->language = values["lang"];
|
out->language = values["lang"];
|
||||||
out->text = stringParser(node->innerXml, error);
|
out->text = stringParser(node->innerXml, error);
|
||||||
return error->length() == 0 ? 0 : -1;
|
return error->length() == 0 ? 0 : -1;
|
||||||
|
Reference in New Issue
Block a user