mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 07:10:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			51 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2022, Martin Falisse <mfalisse@outlook.com>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <AK/String.h>
 | 
						|
 | 
						|
namespace Web::CSS {
 | 
						|
 | 
						|
class GridTrackPlacement {
 | 
						|
public:
 | 
						|
    enum class Type {
 | 
						|
        Span,
 | 
						|
        Position,
 | 
						|
        Auto
 | 
						|
    };
 | 
						|
 | 
						|
    GridTrackPlacement(String line_name, int span_count_or_position, bool has_span = false);
 | 
						|
    GridTrackPlacement(int span_count_or_position, bool has_span = false);
 | 
						|
    GridTrackPlacement(String line_name, bool has_span = false);
 | 
						|
    GridTrackPlacement();
 | 
						|
 | 
						|
    static GridTrackPlacement make_auto() { return GridTrackPlacement(); };
 | 
						|
 | 
						|
    bool is_span() const { return m_type == Type::Span; }
 | 
						|
    bool is_position() const { return m_type == Type::Position; }
 | 
						|
    bool is_auto() const { return m_type == Type::Auto; }
 | 
						|
    bool is_auto_positioned() const { return m_type == Type::Auto || (m_type == Type::Span && !has_line_name()); }
 | 
						|
 | 
						|
    bool has_line_name() const { return !m_line_name.is_empty(); }
 | 
						|
 | 
						|
    int raw_value() const { return m_span_count_or_position; }
 | 
						|
    Type type() const { return m_type; }
 | 
						|
    String line_name() const { return m_line_name; }
 | 
						|
 | 
						|
    ErrorOr<String> to_string() const;
 | 
						|
    bool operator==(GridTrackPlacement const& other) const
 | 
						|
    {
 | 
						|
        return m_type == other.type() && m_span_count_or_position == other.raw_value();
 | 
						|
    }
 | 
						|
 | 
						|
private:
 | 
						|
    Type m_type;
 | 
						|
    int m_span_count_or_position { 0 };
 | 
						|
    String m_line_name;
 | 
						|
};
 | 
						|
 | 
						|
}
 |