/* * Copyright (c) 2018-2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include namespace Web::Layout { class LineBox { public: LineBox() { } float width() const { return m_width; } void add_fragment(Node const& layout_node, int start, int length, float leading_size, float trailing_size, float content_width, float content_height, LineBoxFragment::Type = LineBoxFragment::Type::Normal); const NonnullOwnPtrVector& fragments() const { return m_fragments; } NonnullOwnPtrVector& fragments() { return m_fragments; } void trim_trailing_whitespace(); bool is_empty_or_ends_in_whitespace() const; bool is_empty() const { return m_fragments.is_empty(); } bool ends_with_forced_line_break() const; private: friend class BlockContainer; friend class InlineFormattingContext; friend class LineBuilder; NonnullOwnPtrVector m_fragments; float m_width { 0 }; }; }