mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-05 15:49:15 +00:00
This reverts 0e3487b9ab
.
Back when I made that change, I thought we could make our StyleValue
classes match the typed-om definitions directly. However, they have
different requirements. Typed-om types need to be mutable and GCed,
whereas StyleValues are immutable and ideally wouldn't require a JS VM.
While I was already making such a cataclysmic change, I've moved it into
the StyleValues directory, because it *not* being there has bothered me
for a long time. 😅
75 lines
3 KiB
C++
75 lines
3 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 CSSLabLike : public CSSColorValue {
|
|
public:
|
|
template<typename T>
|
|
static ValueComparingNonnullRefPtr<T const> create(ValueComparingNonnullRefPtr<StyleValue const> l, ValueComparingNonnullRefPtr<StyleValue const> a, ValueComparingNonnullRefPtr<StyleValue const> b, ValueComparingRefPtr<StyleValue const> alpha = {})
|
|
{
|
|
// alpha defaults to 1
|
|
if (!alpha)
|
|
alpha = NumberStyleValue::create(1);
|
|
|
|
return adopt_ref(*new (nothrow) T({}, move(l), move(a), move(b), alpha.release_nonnull()));
|
|
}
|
|
|
|
virtual ~CSSLabLike() override = default;
|
|
|
|
StyleValue const& l() const { return *m_properties.l; }
|
|
StyleValue const& a() const { return *m_properties.a; }
|
|
StyleValue const& b() const { return *m_properties.b; }
|
|
StyleValue const& alpha() const { return *m_properties.alpha; }
|
|
|
|
virtual bool equals(StyleValue const& other) const override;
|
|
|
|
protected:
|
|
CSSLabLike(ColorType color_type, ValueComparingNonnullRefPtr<StyleValue const> l, ValueComparingNonnullRefPtr<StyleValue const> a, ValueComparingNonnullRefPtr<StyleValue const> b, ValueComparingNonnullRefPtr<StyleValue const> alpha)
|
|
: CSSColorValue(color_type, ColorSyntax::Modern)
|
|
, m_properties { .l = move(l), .a = move(a), .b = move(b), .alpha = move(alpha) }
|
|
{
|
|
}
|
|
|
|
struct Properties {
|
|
ValueComparingNonnullRefPtr<StyleValue const> l;
|
|
ValueComparingNonnullRefPtr<StyleValue const> a;
|
|
ValueComparingNonnullRefPtr<StyleValue const> b;
|
|
ValueComparingNonnullRefPtr<StyleValue const> alpha;
|
|
bool operator==(Properties const&) const = default;
|
|
} m_properties;
|
|
};
|
|
|
|
// https://drafts.css-houdini.org/css-typed-om-1/#cssoklab
|
|
class CSSOKLab final : public CSSLabLike {
|
|
public:
|
|
virtual Optional<Color> to_color(ColorResolutionContext) const override;
|
|
virtual String to_string(SerializationMode) const override;
|
|
|
|
CSSOKLab(Badge<CSSLabLike>, ValueComparingNonnullRefPtr<StyleValue const> l, ValueComparingNonnullRefPtr<StyleValue const> a, ValueComparingNonnullRefPtr<StyleValue const> b, ValueComparingNonnullRefPtr<StyleValue const> alpha)
|
|
: CSSLabLike(ColorType::OKLab, move(l), move(a), move(b), move(alpha))
|
|
{
|
|
}
|
|
};
|
|
|
|
// https://drafts.css-houdini.org/css-typed-om-1/#csslab
|
|
class CSSLab final : public CSSLabLike {
|
|
public:
|
|
virtual Optional<Color> to_color(ColorResolutionContext) const override;
|
|
virtual String to_string(SerializationMode) const override;
|
|
|
|
CSSLab(Badge<CSSLabLike>, ValueComparingNonnullRefPtr<StyleValue const> l, ValueComparingNonnullRefPtr<StyleValue const> a, ValueComparingNonnullRefPtr<StyleValue const> b, ValueComparingNonnullRefPtr<StyleValue const> alpha)
|
|
: CSSLabLike(ColorType::Lab, move(l), move(a), move(b), move(alpha))
|
|
{
|
|
}
|
|
};
|
|
|
|
}
|