mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 07:10:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <AK/Vector.h>
 | 
						|
#include <LibWeb/Layout/LineBoxFragment.h>
 | 
						|
 | 
						|
namespace Web::Layout {
 | 
						|
 | 
						|
class LineBox {
 | 
						|
public:
 | 
						|
    LineBox() = default;
 | 
						|
 | 
						|
    CSSPixels width() const { return m_width; }
 | 
						|
    CSSPixels height() const { return m_height; }
 | 
						|
    CSSPixels bottom() const { return m_bottom; }
 | 
						|
    CSSPixels baseline() const { return m_baseline; }
 | 
						|
 | 
						|
    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, LineBoxFragment::Type = LineBoxFragment::Type::Normal);
 | 
						|
 | 
						|
    Vector<LineBoxFragment> const& fragments() const { return m_fragments; }
 | 
						|
    Vector<LineBoxFragment>& 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(); }
 | 
						|
 | 
						|
private:
 | 
						|
    friend class BlockContainer;
 | 
						|
    friend class InlineFormattingContext;
 | 
						|
    friend class LineBuilder;
 | 
						|
 | 
						|
    Vector<LineBoxFragment> m_fragments;
 | 
						|
    CSSPixels m_width { 0 };
 | 
						|
    CSSPixels m_height { 0 };
 | 
						|
    CSSPixels m_bottom { 0 };
 | 
						|
    CSSPixels m_baseline { 0 };
 | 
						|
};
 | 
						|
 | 
						|
}
 |