
Inline layout is now done by LayoutBlock. Blocks with inline children will split them into line boxes during layout. A LayoutBlock can have zero or more LineBox objects. Each LineBox represents one visual line. A LineBox can have any number of LineBoxFragment children. A fragment is an offset+length into a specific LayoutNode. To paint a LayoutBlock with inline children, we walk its line boxes, and walk their fragments, painting each fragment at a time by calling LineBoxFragment::render(), which in turn calls the LayoutNode via LayoutText::render_fragment(). Hit testing works similarly. This is very incomplete and has many bugs, but should make it easier for us to move forward with this code.
49 lines
1.5 KiB
C++
49 lines
1.5 KiB
C++
#include <LibHTML/DOM/Element.h>
|
|
#include <LibHTML/Layout/LayoutBlock.h>
|
|
#include <LibHTML/Layout/LayoutInline.h>
|
|
|
|
LayoutInline::LayoutInline(const Node& node, StyleProperties&& style_properties)
|
|
: LayoutNode(&node, move(style_properties))
|
|
{
|
|
}
|
|
|
|
LayoutInline::~LayoutInline()
|
|
{
|
|
}
|
|
|
|
void LayoutInline::layout()
|
|
{
|
|
Point origin;
|
|
|
|
if (previous_sibling() != nullptr) {
|
|
auto& previous_sibling_rect = previous_sibling()->rect();
|
|
auto& previous_sibling_style = previous_sibling()->style();
|
|
origin = previous_sibling_rect.location();
|
|
// FIXME: Implement proper inline positioning when
|
|
// there are nodes with different heights. And don't
|
|
// hardcode font size like we do here.
|
|
origin.move_by(previous_sibling_rect.width(), previous_sibling_rect.height());
|
|
origin.move_by(previous_sibling_style.full_margin().right, -11);
|
|
} else {
|
|
origin = parent()->rect().location();
|
|
}
|
|
|
|
rect().set_location(origin);
|
|
|
|
for_each_child([&](auto& child) {
|
|
child.layout();
|
|
rect().set_right(child.rect().right() + child.style().full_margin().right);
|
|
rect().set_bottom(child.rect().bottom() + child.style().full_margin().bottom);
|
|
});
|
|
}
|
|
|
|
void LayoutInline::split_into_lines(LayoutBlock& container)
|
|
{
|
|
for_each_child([&](auto& child) {
|
|
if (child.is_inline()) {
|
|
static_cast<LayoutInline&>(child).split_into_lines(container);
|
|
} else {
|
|
// FIXME: Support block children of inlines.
|
|
}
|
|
});
|
|
}
|