2023-03-30 16:57:49 +01:00
|
|
|
/*
|
2025-01-22 15:00:13 +00:00
|
|
|
* Copyright (c) 2023-2025, Sam Atkins <sam@ladybird.org>
|
2023-03-30 16:57:49 +01:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "CalculatedOr.h"
|
2023-12-28 17:37:37 +00:00
|
|
|
#include <LibWeb/CSS/StyleValues/AngleStyleValue.h>
|
|
|
|
#include <LibWeb/CSS/StyleValues/FlexStyleValue.h>
|
|
|
|
#include <LibWeb/CSS/StyleValues/FrequencyStyleValue.h>
|
|
|
|
#include <LibWeb/CSS/StyleValues/IntegerStyleValue.h>
|
|
|
|
#include <LibWeb/CSS/StyleValues/LengthStyleValue.h>
|
|
|
|
#include <LibWeb/CSS/StyleValues/NumberStyleValue.h>
|
|
|
|
#include <LibWeb/CSS/StyleValues/PercentageStyleValue.h>
|
|
|
|
#include <LibWeb/CSS/StyleValues/ResolutionStyleValue.h>
|
|
|
|
#include <LibWeb/CSS/StyleValues/TimeStyleValue.h>
|
2023-03-30 16:57:49 +01:00
|
|
|
|
|
|
|
namespace Web::CSS {
|
|
|
|
|
2025-01-22 15:00:13 +00:00
|
|
|
Optional<Angle> AngleOrCalculated::resolve_calculated(NonnullRefPtr<CalculatedStyleValue> const& calculated, CalculationResolutionContext const& context) const
|
2023-03-30 16:57:49 +01:00
|
|
|
{
|
2025-01-22 15:00:13 +00:00
|
|
|
return calculated->resolve_angle(context);
|
2023-03-30 16:57:49 +01:00
|
|
|
}
|
|
|
|
|
2024-08-14 11:10:54 +01:00
|
|
|
NonnullRefPtr<CSSStyleValue> AngleOrCalculated::create_style_value() const
|
2023-12-28 17:37:37 +00:00
|
|
|
{
|
|
|
|
return AngleStyleValue::create(value());
|
|
|
|
}
|
|
|
|
|
2025-01-22 15:00:13 +00:00
|
|
|
Optional<Flex> FlexOrCalculated::resolve_calculated(NonnullRefPtr<CalculatedStyleValue> const& calculated, CalculationResolutionContext const& context) const
|
2023-12-27 12:56:00 +00:00
|
|
|
{
|
2025-01-22 15:00:13 +00:00
|
|
|
return calculated->resolve_flex(context);
|
2023-12-27 12:56:00 +00:00
|
|
|
}
|
|
|
|
|
2024-08-14 11:10:54 +01:00
|
|
|
NonnullRefPtr<CSSStyleValue> FlexOrCalculated::create_style_value() const
|
2023-12-28 17:37:37 +00:00
|
|
|
{
|
|
|
|
return FlexStyleValue::create(value());
|
|
|
|
}
|
|
|
|
|
2025-01-22 15:00:13 +00:00
|
|
|
Optional<Frequency> FrequencyOrCalculated::resolve_calculated(NonnullRefPtr<CalculatedStyleValue> const& calculated, CalculationResolutionContext const& context) const
|
2023-03-30 16:57:49 +01:00
|
|
|
{
|
2025-01-22 15:00:13 +00:00
|
|
|
return calculated->resolve_frequency(context);
|
2023-03-30 16:57:49 +01:00
|
|
|
}
|
|
|
|
|
2024-08-14 11:10:54 +01:00
|
|
|
NonnullRefPtr<CSSStyleValue> FrequencyOrCalculated::create_style_value() const
|
2023-12-28 17:37:37 +00:00
|
|
|
{
|
|
|
|
return FrequencyStyleValue::create(value());
|
|
|
|
}
|
|
|
|
|
2025-01-22 15:00:13 +00:00
|
|
|
Optional<i64> IntegerOrCalculated::resolve_calculated(NonnullRefPtr<CalculatedStyleValue> const& calculated, CalculationResolutionContext const& context) const
|
2023-12-27 12:56:00 +00:00
|
|
|
{
|
2025-01-22 15:00:13 +00:00
|
|
|
return calculated->resolve_integer(context);
|
2024-11-29 13:16:15 +01:00
|
|
|
}
|
|
|
|
|
2024-08-14 11:10:54 +01:00
|
|
|
NonnullRefPtr<CSSStyleValue> IntegerOrCalculated::create_style_value() const
|
2023-12-28 17:37:37 +00:00
|
|
|
{
|
|
|
|
return IntegerStyleValue::create(value());
|
|
|
|
}
|
|
|
|
|
2025-01-22 15:00:13 +00:00
|
|
|
Optional<Length> LengthOrCalculated::resolve_calculated(NonnullRefPtr<CalculatedStyleValue> const& calculated, CalculationResolutionContext const& context) const
|
2023-03-30 16:57:49 +01:00
|
|
|
{
|
2025-01-22 15:00:13 +00:00
|
|
|
return calculated->resolve_length(context);
|
2023-07-28 15:52:06 +02:00
|
|
|
}
|
|
|
|
|
2024-08-14 11:10:54 +01:00
|
|
|
NonnullRefPtr<CSSStyleValue> LengthOrCalculated::create_style_value() const
|
2023-12-28 17:37:37 +00:00
|
|
|
{
|
|
|
|
return LengthStyleValue::create(value());
|
|
|
|
}
|
|
|
|
|
2025-01-22 15:00:13 +00:00
|
|
|
Optional<double> NumberOrCalculated::resolve_calculated(NonnullRefPtr<CalculatedStyleValue> const& calculated, CalculationResolutionContext const& context) const
|
2023-12-27 12:56:00 +00:00
|
|
|
{
|
2025-01-22 15:00:13 +00:00
|
|
|
return calculated->resolve_number(context);
|
2023-12-27 12:56:00 +00:00
|
|
|
}
|
|
|
|
|
2024-08-14 11:10:54 +01:00
|
|
|
NonnullRefPtr<CSSStyleValue> NumberOrCalculated::create_style_value() const
|
2023-12-28 17:37:37 +00:00
|
|
|
{
|
|
|
|
return NumberStyleValue::create(value());
|
|
|
|
}
|
|
|
|
|
2025-01-22 15:00:13 +00:00
|
|
|
Optional<Percentage> PercentageOrCalculated::resolve_calculated(NonnullRefPtr<CalculatedStyleValue> const& calculated, CalculationResolutionContext const& context) const
|
2023-03-30 16:57:49 +01:00
|
|
|
{
|
2025-01-22 15:00:13 +00:00
|
|
|
return calculated->resolve_percentage(context);
|
2023-03-30 16:57:49 +01:00
|
|
|
}
|
|
|
|
|
2024-08-14 11:10:54 +01:00
|
|
|
NonnullRefPtr<CSSStyleValue> PercentageOrCalculated::create_style_value() const
|
2023-12-28 17:37:37 +00:00
|
|
|
{
|
|
|
|
return PercentageStyleValue::create(value());
|
|
|
|
}
|
|
|
|
|
2025-01-22 15:00:13 +00:00
|
|
|
Optional<Resolution> ResolutionOrCalculated::resolve_calculated(NonnullRefPtr<CalculatedStyleValue> const& calculated, CalculationResolutionContext const& context) const
|
2024-11-29 13:16:15 +01:00
|
|
|
{
|
2025-01-22 15:00:13 +00:00
|
|
|
return calculated->resolve_resolution(context);
|
2024-11-29 13:16:15 +01:00
|
|
|
}
|
|
|
|
|
2024-08-14 11:10:54 +01:00
|
|
|
NonnullRefPtr<CSSStyleValue> ResolutionOrCalculated::create_style_value() const
|
2023-12-28 17:37:37 +00:00
|
|
|
{
|
|
|
|
return ResolutionStyleValue::create(value());
|
|
|
|
}
|
|
|
|
|
2025-01-22 15:00:13 +00:00
|
|
|
Optional<Time> TimeOrCalculated::resolve_calculated(NonnullRefPtr<CalculatedStyleValue> const& calculated, CalculationResolutionContext const& context) const
|
2023-03-30 16:57:49 +01:00
|
|
|
{
|
2025-01-22 15:00:13 +00:00
|
|
|
return calculated->resolve_time(context);
|
2023-03-30 16:57:49 +01:00
|
|
|
}
|
|
|
|
|
2024-08-14 11:10:54 +01:00
|
|
|
NonnullRefPtr<CSSStyleValue> TimeOrCalculated::create_style_value() const
|
2023-12-28 17:37:37 +00:00
|
|
|
{
|
|
|
|
return TimeStyleValue::create(value());
|
|
|
|
}
|
|
|
|
|
2023-03-30 16:57:49 +01:00
|
|
|
}
|