mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-23 17:33:12 +00:00
A couple of arbitrary substitution functions require us to get or produce some style value, and then substitute its ComponentValues into the original ComponentValue list. So this commit gives CSSStyleValue a tokenize() method that does so. Apart from a couple of unusual cases like the guaranteed-invalid value, style values can all be converted into ComponentValues by serializing them as a string, and then parsing that as a list of component values. That feels unnecessarily inefficient in most cases though, so I've implemented faster overrides for a lot of the basic style value classes, but left that serialize-and-reparse method as the fallback.
49 lines
1.4 KiB
C++
49 lines
1.4 KiB
C++
/*
|
|
* Copyright (c) 2023, Sam Atkins <atkinssj@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/CSS/CSSStyleValue.h>
|
|
#include <LibWeb/CSS/Ratio.h>
|
|
|
|
namespace Web::CSS {
|
|
|
|
class RatioStyleValue final : public StyleValueWithDefaultOperators<RatioStyleValue> {
|
|
public:
|
|
static ValueComparingNonnullRefPtr<RatioStyleValue const> create(Ratio ratio)
|
|
{
|
|
return adopt_ref(*new (nothrow) RatioStyleValue(move(ratio)));
|
|
}
|
|
virtual ~RatioStyleValue() override = default;
|
|
|
|
Ratio const& ratio() const { return m_ratio; }
|
|
Ratio& ratio() { return m_ratio; }
|
|
|
|
virtual String to_string(SerializationMode) const override { return m_ratio.to_string(); }
|
|
Vector<Parser::ComponentValue> tokenize() const override
|
|
{
|
|
return {
|
|
Parser::Token::create_number(Number { Number::Type::Number, m_ratio.numerator() }),
|
|
Parser::Token::create_whitespace(" "_string),
|
|
Parser::Token::create_delim('/'),
|
|
Parser::Token::create_whitespace(" "_string),
|
|
Parser::Token::create_number(Number { Number::Type::Number, m_ratio.denominator() }),
|
|
};
|
|
}
|
|
|
|
bool properties_equal(RatioStyleValue const& other) const { return m_ratio == other.m_ratio; }
|
|
|
|
private:
|
|
RatioStyleValue(Ratio&& ratio)
|
|
: StyleValueWithDefaultOperators(Type::Ratio)
|
|
, m_ratio(ratio)
|
|
{
|
|
}
|
|
|
|
Ratio m_ratio;
|
|
};
|
|
|
|
}
|