| 
									
										
										
										
											2020-01-18 09:38:21 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org> | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2021-04-22 01:24:48 -07:00
										 |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							| 
									
										
										
										
											2020-01-18 09:38:21 +01:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-03 15:20:13 +02:00
										 |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <AK/Vector.h>
 | 
					
						
							| 
									
										
										
										
											2020-03-07 10:32:51 +01:00
										 |  |  | #include <LibWeb/Layout/LineBoxFragment.h>
 | 
					
						
							| 
									
										
										
										
											2019-10-03 15:20:13 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-22 15:53:01 +01:00
										 |  |  | namespace Web::Layout { | 
					
						
							| 
									
										
										
										
											2020-03-07 10:27:02 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-03 15:20:13 +02:00
										 |  |  | class LineBox { | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2022-03-14 13:21:51 -06:00
										 |  |  |     LineBox() = default; | 
					
						
							| 
									
										
										
										
											2019-10-03 15:20:13 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-04 17:19:11 +00:00
										 |  |  |     CSSPixels width() const { return m_width; } | 
					
						
							|  |  |  |     CSSPixels height() const { return m_height; } | 
					
						
							|  |  |  |     CSSPixels bottom() const { return m_bottom; } | 
					
						
							|  |  |  |     CSSPixels baseline() const { return m_baseline; } | 
					
						
							| 
									
										
										
										
											2019-10-03 15:20:13 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-17 17:12:54 +02:00
										 |  |  |     void add_fragment(Node const& layout_node, int start, int length, CSSPixels leading_size, CSSPixels trailing_size, CSSPixels leading_margin, CSSPixels trailing_margin, CSSPixels content_width, CSSPixels content_height, CSSPixels border_box_top, CSSPixels border_box_bottom); | 
					
						
							| 
									
										
										
										
											2019-10-03 15:20:13 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-27 10:32:00 +01:00
										 |  |  |     Vector<LineBoxFragment> const& fragments() const { return m_fragments; } | 
					
						
							|  |  |  |     Vector<LineBoxFragment>& fragments() { return m_fragments; } | 
					
						
							| 
									
										
										
										
											2019-10-03 15:20:13 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-20 17:18:28 +02:00
										 |  |  |     void trim_trailing_whitespace(); | 
					
						
							| 
									
										
										
										
											2020-06-10 10:42:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-17 20:17:29 +01:00
										 |  |  |     bool is_empty_or_ends_in_whitespace() const; | 
					
						
							| 
									
										
										
										
											2023-03-15 21:11:38 +01:00
										 |  |  |     bool is_empty() const { return m_fragments.is_empty() && !m_has_break; } | 
					
						
							| 
									
										
										
										
											2020-06-13 14:59:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-12 18:30:18 +02:00
										 |  |  |     AvailableSize original_available_width() const { return m_original_available_width; } | 
					
						
							| 
									
										
										
										
											2023-05-16 09:51:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-12 15:41:30 +02:00
										 |  |  |     CSSPixelRect const& absolute_rect() const { return m_absolute_rect; } | 
					
						
							|  |  |  |     void set_absolute_rect(CSSPixelRect const& rect) { m_absolute_rect = rect; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-03 15:20:13 +02:00
										 |  |  | private: | 
					
						
							| 
									
										
										
										
											2021-10-06 20:02:41 +02:00
										 |  |  |     friend class BlockContainer; | 
					
						
							| 
									
										
										
										
											2020-11-22 15:53:01 +01:00
										 |  |  |     friend class InlineFormattingContext; | 
					
						
							| 
									
										
										
										
											2022-01-19 11:57:58 +01:00
										 |  |  |     friend class LineBuilder; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-12 15:41:30 +02:00
										 |  |  |     CSSPixelRect m_absolute_rect; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-27 10:32:00 +01:00
										 |  |  |     Vector<LineBoxFragment> m_fragments; | 
					
						
							| 
									
										
										
										
											2022-11-04 17:19:11 +00:00
										 |  |  |     CSSPixels m_width { 0 }; | 
					
						
							|  |  |  |     CSSPixels m_height { 0 }; | 
					
						
							|  |  |  |     CSSPixels m_bottom { 0 }; | 
					
						
							|  |  |  |     CSSPixels m_baseline { 0 }; | 
					
						
							| 
									
										
										
										
											2023-05-16 09:51:33 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // The amount of available width that was originally available when creating this line box. Used for text justification.
 | 
					
						
							| 
									
										
										
										
											2023-08-12 18:30:18 +02:00
										 |  |  |     AvailableSize m_original_available_width { AvailableSize::make_indefinite() }; | 
					
						
							| 
									
										
										
										
											2023-05-16 09:51:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-15 21:11:38 +01:00
										 |  |  |     bool m_has_break { false }; | 
					
						
							| 
									
										
										
										
											2023-06-10 15:49:17 +02:00
										 |  |  |     bool m_has_forced_break { false }; | 
					
						
							| 
									
										
										
										
											2019-10-03 15:20:13 +02:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2020-03-07 10:27:02 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | } |