LineBuilder.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. * Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <LibWeb/Layout/InlineFormattingContext.h>
  8. namespace Web::Layout {
  9. class LineBuilder {
  10. AK_MAKE_NONCOPYABLE(LineBuilder);
  11. AK_MAKE_NONMOVABLE(LineBuilder);
  12. public:
  13. LineBuilder(InlineFormattingContext&, FormattingState&, LayoutMode);
  14. ~LineBuilder();
  15. void break_line();
  16. void append_box(Box const&, float leading_size, float trailing_size, float leading_margin, float trailing_margin);
  17. void append_text_chunk(TextNode const&, size_t offset_in_node, size_t length_in_node, float leading_size, float trailing_size, float leading_margin, float trailing_margin, float content_width, float content_height);
  18. // Returns whether a line break occurred.
  19. bool break_if_needed(LayoutMode layout_mode, float next_item_width)
  20. {
  21. if (should_break(layout_mode, next_item_width)) {
  22. break_line();
  23. return true;
  24. }
  25. return false;
  26. }
  27. float available_width_for_current_line() const { return m_available_width_for_current_line; }
  28. void update_last_line();
  29. void remove_last_line_if_empty();
  30. float current_y() const { return m_current_y; }
  31. void adjust_last_line_after_inserting_floating_box(Badge<BlockFormattingContext>, CSS::Float, float space_used_by_float);
  32. private:
  33. void begin_new_line(bool increment_y);
  34. bool should_break(LayoutMode, float next_item_width);
  35. LineBox& ensure_last_line_box();
  36. InlineFormattingContext& m_context;
  37. FormattingState& m_formatting_state;
  38. FormattingState::NodeState& m_containing_block_state;
  39. LayoutMode m_layout_mode {};
  40. float m_available_width_for_current_line { 0 };
  41. float m_current_y { 0 };
  42. float m_max_height_on_current_line { 0 };
  43. bool m_last_line_needs_update { false };
  44. };
  45. }