You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
532 B
12 lines
532 B
#include "DIVElement.h" |
|
|
|
std::unique_ptr<Component> DIVElement::renderer(const ElementRenderRequest &request) { |
|
TextNode *textNode = dynamic_cast<TextNode*>(request.node.get()); |
|
if (textNode) { |
|
//if (node->parent->children.size() == 1) { |
|
std::unique_ptr<Component> component = std::make_unique<TextComponent>(textNode->text, 0, 0, 12, false, 0x000000FF, request.parentComponent->win->windowWidth, request.parentComponent->win->windowHeight); |
|
return component; |
|
//} |
|
} |
|
return nullptr; |
|
}
|
|
|