LineBuilder.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. void break_if_needed(LayoutMode layout_mode, float next_item_width, bool should_force_break)
  19. {
  20. if (should_break(layout_mode, next_item_width, should_force_break))
  21. break_line();
  22. }
  23. float available_width_for_current_line() const { return m_available_width_for_current_line; }
  24. void update_last_line();
  25. void remove_last_line_if_empty();
  26. float current_y() const { return m_current_y; }
  27. void adjust_last_line_after_inserting_floating_box(Badge<BlockFormattingContext>, CSS::Float, float space_used_by_float);
  28. private:
  29. void begin_new_line(bool increment_y);
  30. bool should_break(LayoutMode, float next_item_width, bool should_force_break);
  31. LineBox& ensure_last_line_box();
  32. InlineFormattingContext& m_context;
  33. FormattingState& m_formatting_state;
  34. FormattingState::NodeState& m_containing_block_state;
  35. LayoutMode m_layout_mode {};
  36. float m_available_width_for_current_line { 0 };
  37. float m_current_y { 0 };
  38. float m_max_height_on_current_line { 0 };
  39. bool m_last_line_needs_update { false };
  40. };
  41. }