ladybird/Libraries/LibHTML/Layout/LineBox.h
Andreas Kling 3bd29ad98c LibHTML: Remove trailing whitespace in line boxes
After the splitting-into-lines pass, remove any trailing whitespace
from all of a block's line boxes.

This improves the appearance of text-align: justify/right :^)
2019-10-20 17:20:20 +02:00

23 lines
558 B
C++

#pragma once
#include <AK/Vector.h>
#include <LibHTML/Layout/LineBoxFragment.h>
class LineBox {
public:
LineBox() {}
float width() const { return m_width; }
void add_fragment(const LayoutNode& layout_node, int start, int length, int width, int height);
const Vector<LineBoxFragment>& fragments() const { return m_fragments; }
Vector<LineBoxFragment>& fragments() { return m_fragments; }
void trim_trailing_whitespace();
private:
friend class LayoutBlock;
Vector<LineBoxFragment> m_fragments;
float m_width { 0 };
};