mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-23 16:40:03 +00:00
Passing the `AbstractElement` rather than the `TreeCountingFunctionResolutionContext` allows us to only compute the resolution context when necessary (i.e. when we actually need to resolve a tree counting function)
52 lines
1.7 KiB
C++
52 lines
1.7 KiB
C++
/*
|
|
* Copyright (c) 2025, Callum Law <callumlaw1709@outlook.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/CSS/StyleValues/AbstractNonMathCalcFunctionStyleValue.h>
|
|
|
|
namespace Web::CSS {
|
|
|
|
class TreeCountingFunctionStyleValue final : public AbstractNonMathCalcFunctionStyleValue {
|
|
public:
|
|
enum class TreeCountingFunction : u8 {
|
|
SiblingCount,
|
|
SiblingIndex
|
|
};
|
|
|
|
enum class ComputedType : u8 {
|
|
Number,
|
|
Integer
|
|
};
|
|
|
|
static ValueComparingNonnullRefPtr<TreeCountingFunctionStyleValue const> create(TreeCountingFunction function, ComputedType computed_type)
|
|
{
|
|
return adopt_ref(*new (nothrow) TreeCountingFunctionStyleValue(function, computed_type));
|
|
}
|
|
virtual ~TreeCountingFunctionStyleValue() override = default;
|
|
|
|
virtual String to_string(SerializationMode) const override;
|
|
|
|
size_t resolve(DOM::AbstractElement const&, PropertyComputationDependencies&) const;
|
|
|
|
virtual RefPtr<CalculationNode const> resolve_to_calculation_node(CalculationContext const&, CalculationResolutionContext const&, PropertyComputationDependencies*) const override;
|
|
virtual ValueComparingNonnullRefPtr<StyleValue const> absolutized(ComputationContext const&, PropertyComputationDependencies&) const override;
|
|
|
|
virtual bool equals(StyleValue const& other) const override;
|
|
|
|
private:
|
|
TreeCountingFunctionStyleValue(TreeCountingFunction function, ComputedType computed_type)
|
|
: AbstractNonMathCalcFunctionStyleValue(Type::TreeCountingFunction)
|
|
, m_function(function)
|
|
, m_computed_type(computed_type)
|
|
{
|
|
}
|
|
|
|
TreeCountingFunction m_function;
|
|
ComputedType m_computed_type;
|
|
};
|
|
|
|
}
|