mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 07:10:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			78 lines
		
	
	
	
		
			3.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
	
		
			3.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2024, Sam Atkins <sam@ladybird.org>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <LibWeb/CSS/StyleValues/CSSColorValue.h>
 | 
						|
#include <LibWeb/CSS/StyleValues/NumberStyleValue.h>
 | 
						|
 | 
						|
namespace Web::CSS {
 | 
						|
 | 
						|
class CSSLCHLike : public CSSColorValue {
 | 
						|
public:
 | 
						|
    template<DerivedFrom<CSSLCHLike> T>
 | 
						|
    static ValueComparingNonnullRefPtr<T const> create(ValueComparingNonnullRefPtr<CSSStyleValue const> l, ValueComparingNonnullRefPtr<CSSStyleValue const> c, ValueComparingNonnullRefPtr<CSSStyleValue const> h, ValueComparingRefPtr<CSSStyleValue const> alpha = {})
 | 
						|
    {
 | 
						|
        // alpha defaults to 1
 | 
						|
        if (!alpha)
 | 
						|
            alpha = NumberStyleValue::create(1);
 | 
						|
 | 
						|
        return adopt_ref(*new (nothrow) T({}, move(l), move(c), move(h), alpha.release_nonnull()));
 | 
						|
    }
 | 
						|
    virtual ~CSSLCHLike() override = default;
 | 
						|
 | 
						|
    CSSStyleValue const& l() const { return *m_properties.l; }
 | 
						|
    CSSStyleValue const& c() const { return *m_properties.c; }
 | 
						|
    CSSStyleValue const& h() const { return *m_properties.h; }
 | 
						|
    CSSStyleValue const& alpha() const { return *m_properties.alpha; }
 | 
						|
 | 
						|
    virtual bool equals(CSSStyleValue const& other) const override;
 | 
						|
 | 
						|
protected:
 | 
						|
    CSSLCHLike(ColorType color_type, ValueComparingNonnullRefPtr<CSSStyleValue const> l, ValueComparingNonnullRefPtr<CSSStyleValue const> c, ValueComparingNonnullRefPtr<CSSStyleValue const> h, ValueComparingNonnullRefPtr<CSSStyleValue const> alpha)
 | 
						|
        : CSSColorValue(color_type, ColorSyntax::Modern)
 | 
						|
        , m_properties { .l = move(l), .c = move(c), .h = move(h), .alpha = move(alpha) }
 | 
						|
    {
 | 
						|
    }
 | 
						|
 | 
						|
    struct Properties {
 | 
						|
        ValueComparingNonnullRefPtr<CSSStyleValue const> l;
 | 
						|
        ValueComparingNonnullRefPtr<CSSStyleValue const> c;
 | 
						|
        ValueComparingNonnullRefPtr<CSSStyleValue const> h;
 | 
						|
        ValueComparingNonnullRefPtr<CSSStyleValue const> alpha;
 | 
						|
        bool operator==(Properties const&) const = default;
 | 
						|
    } m_properties;
 | 
						|
};
 | 
						|
 | 
						|
// https://drafts.css-houdini.org/css-typed-om-1/#csslch
 | 
						|
class CSSLCH final : public CSSLCHLike {
 | 
						|
public:
 | 
						|
    CSSLCH(Badge<CSSLCHLike>, ValueComparingNonnullRefPtr<CSSStyleValue const> l, ValueComparingNonnullRefPtr<CSSStyleValue const> c, ValueComparingNonnullRefPtr<CSSStyleValue const> h, ValueComparingNonnullRefPtr<CSSStyleValue const> alpha)
 | 
						|
        : CSSLCHLike(ColorType::LCH, move(l), move(c), move(h), move(alpha))
 | 
						|
    {
 | 
						|
    }
 | 
						|
    virtual ~CSSLCH() override = default;
 | 
						|
 | 
						|
    virtual Color to_color(Optional<Layout::NodeWithStyle const&>) const override;
 | 
						|
 | 
						|
    virtual String to_string(SerializationMode) const override;
 | 
						|
};
 | 
						|
 | 
						|
// https://drafts.css-houdini.org/css-typed-om-1/#cssoklch
 | 
						|
class CSSOKLCH final : public CSSLCHLike {
 | 
						|
public:
 | 
						|
    CSSOKLCH(Badge<CSSLCHLike>, ValueComparingNonnullRefPtr<CSSStyleValue const> l, ValueComparingNonnullRefPtr<CSSStyleValue const> c, ValueComparingNonnullRefPtr<CSSStyleValue const> h, ValueComparingNonnullRefPtr<CSSStyleValue const> alpha)
 | 
						|
        : CSSLCHLike(ColorType::OKLCH, move(l), move(c), move(h), move(alpha))
 | 
						|
    {
 | 
						|
    }
 | 
						|
    virtual ~CSSOKLCH() override = default;
 | 
						|
 | 
						|
    virtual Color to_color(Optional<Layout::NodeWithStyle const&>) const override;
 | 
						|
 | 
						|
    virtual String to_string(SerializationMode) const override;
 | 
						|
};
 | 
						|
 | 
						|
}
 |