2019-06-15 15:20:55 -03:00
|
|
|
#include <LibCore/CFile.h>
|
2019-06-15 13:55:47 -03:00
|
|
|
#include <LibHTML/Dump.h>
|
2019-06-16 16:35:03 -03:00
|
|
|
#include <LibHTML/Frame.h>
|
2019-06-21 15:54:13 -03:00
|
|
|
#include <LibHTML/Parser/CSSParser.h>
|
2019-06-27 12:47:59 -03:00
|
|
|
#include <LibHTML/CSS/StyleResolver.h>
|
2019-06-28 16:17:34 -03:00
|
|
|
#include <LibHTML/CSS/StyledNode.h>
|
2019-06-27 15:40:21 -03:00
|
|
|
#include <LibHTML/DOM/Element.h>
|
2019-06-21 15:54:13 -03:00
|
|
|
#include <LibHTML/Parser/HTMLParser.h>
|
2019-06-15 15:20:55 -03:00
|
|
|
#include <stdio.h>
|
2019-06-15 13:55:47 -03:00
|
|
|
|
2019-06-15 15:20:55 -03:00
|
|
|
int main(int argc, char** argv)
|
2019-06-15 13:55:47 -03:00
|
|
|
{
|
2019-06-15 15:20:55 -03:00
|
|
|
CFile f(argc == 1 ? "/home/anon/small.html" : argv[1]);
|
|
|
|
|
if (!f.open(CIODevice::ReadOnly)) {
|
|
|
|
|
fprintf(stderr, "Error: %s\n", f.error_string());
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2019-06-21 15:54:13 -03:00
|
|
|
|
|
|
|
|
extern const char default_stylesheet_source[];
|
|
|
|
|
String css = default_stylesheet_source;
|
|
|
|
|
|
|
|
|
|
auto sheet = parse_css(css);
|
|
|
|
|
dump_sheet(sheet);
|
|
|
|
|
|
2019-06-15 15:20:55 -03:00
|
|
|
String html = String::copy(f.read_all());
|
2019-06-21 15:54:13 -03:00
|
|
|
auto doc = parse_html(html);
|
2019-06-15 13:55:47 -03:00
|
|
|
dump_tree(doc);
|
2019-06-15 17:49:44 -03:00
|
|
|
|
2019-06-27 12:47:59 -03:00
|
|
|
StyleResolver resolver(*doc);
|
|
|
|
|
resolver.add_sheet(*sheet);
|
|
|
|
|
|
2019-06-28 16:17:34 -03:00
|
|
|
Function<RefPtr<StyledNode>(const Node&, StyledNode*)> resolve_style = [&](const Node& node, StyledNode* parent_styled_node) -> RefPtr<StyledNode> {
|
|
|
|
|
auto styled_node = [&]() -> RefPtr<StyledNode> {
|
|
|
|
|
if (node.is_element())
|
|
|
|
|
return resolver.create_styled_node(static_cast<const Element&>(node));
|
|
|
|
|
if (node.is_document())
|
|
|
|
|
return resolver.create_styled_node(static_cast<const Document&>(node));
|
|
|
|
|
return nullptr;
|
|
|
|
|
}();
|
|
|
|
|
if (!styled_node)
|
|
|
|
|
return nullptr;
|
|
|
|
|
if (parent_styled_node)
|
|
|
|
|
parent_styled_node->append_child(*styled_node);
|
|
|
|
|
static_cast<const ParentNode&>(node).for_each_child([&](const Node& child) {
|
2019-06-27 15:40:21 -03:00
|
|
|
if (!child.is_element())
|
|
|
|
|
return;
|
2019-06-28 16:17:34 -03:00
|
|
|
auto styled_child_node = resolve_style(static_cast<const Element&>(child), styled_node.ptr());
|
|
|
|
|
printf("Created StyledNode{%p} for Element{%p}\n", styled_child_node.ptr(), &node);
|
2019-06-27 15:40:21 -03:00
|
|
|
});
|
2019-06-28 16:17:34 -03:00
|
|
|
return styled_node;
|
2019-06-27 15:40:21 -03:00
|
|
|
};
|
2019-06-28 16:17:34 -03:00
|
|
|
auto styled_root = resolve_style(*doc, nullptr);
|
|
|
|
|
|
|
|
|
|
dump_tree(*styled_root);
|
2019-06-27 15:40:21 -03:00
|
|
|
|
2019-06-15 17:49:44 -03:00
|
|
|
doc->build_layout_tree();
|
|
|
|
|
ASSERT(doc->layout_node());
|
2019-06-20 18:00:26 -03:00
|
|
|
|
|
|
|
|
printf("\033[33;1mLayout tree before layout:\033[0m\n");
|
2019-06-16 16:35:03 -03:00
|
|
|
dump_tree(*doc->layout_node());
|
|
|
|
|
|
|
|
|
|
auto frame = make<Frame>();
|
|
|
|
|
frame->set_document(doc);
|
|
|
|
|
frame->layout();
|
|
|
|
|
|
2019-06-20 18:00:26 -03:00
|
|
|
printf("\033[33;1mLayout tree after layout:\033[0m\n");
|
2019-06-15 17:49:44 -03:00
|
|
|
dump_tree(*doc->layout_node());
|
2019-06-15 15:20:55 -03:00
|
|
|
return 0;
|
2019-06-15 13:55:47 -03:00
|
|
|
}
|