12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- #include <LibGUI/GPainter.h>
- #include <LibHTML/DOM/Document.h>
- #include <LibHTML/DOM/Element.h>
- #include <LibHTML/Frame.h>
- #include <LibHTML/Layout/LayoutBlock.h>
- #include <LibHTML/Layout/LayoutNode.h>
- LayoutNode::LayoutNode(const Node* node)
- : m_node(node)
- {
- if (m_node)
- m_node->set_layout_node({}, this);
- }
- LayoutNode::~LayoutNode()
- {
- if (m_node && m_node->layout_node() == this)
- m_node->set_layout_node({}, nullptr);
- }
- void LayoutNode::layout()
- {
- for_each_child([](auto& child) {
- child.layout();
- });
- }
- const LayoutBlock* LayoutNode::containing_block() const
- {
- for (auto* ancestor = parent(); ancestor; ancestor = ancestor->parent()) {
- if (is<LayoutBlock>(*ancestor))
- return to<LayoutBlock>(ancestor);
- }
- return nullptr;
- }
- void LayoutNode::render(RenderingContext& context)
- {
- if (!is_visible())
- return;
- // TODO: render our border
- for_each_child([&](auto& child) {
- child.render(context);
- });
- }
- HitTestResult LayoutNode::hit_test(const Point& position) const
- {
- HitTestResult result;
- for_each_child([&](auto& child) {
- auto child_result = child.hit_test(position);
- if (child_result.layout_node)
- result = child_result;
- });
- return result;
- }
- const Document& LayoutNode::document() const
- {
- if (is_anonymous())
- return parent()->document();
- return node()->document();
- }
- void LayoutNode::split_into_lines(LayoutBlock& container)
- {
- for_each_child([&](auto& child) {
- if (child.is_inline()) {
- child.split_into_lines(container);
- } else {
- // FIXME: Support block children of inlines.
- }
- });
- }
- void LayoutNode::set_needs_display()
- {
- auto* frame = document().frame();
- ASSERT(frame);
- for_each_fragment_of_this([&](auto& fragment) {
- if (&fragment.layout_node() == this || is_ancestor_of(fragment.layout_node())) {
- const_cast<Frame*>(frame)->set_needs_display(fragment.rect());
- }
- return IterationDecision::Continue;
- });
- }
|