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-04-15 15:18:27 -06:00
|
|
|
Optional<Angle> AngleOrCalculated::resolve_calculated(NonnullRefPtr<CalculatedStyleValue const> const& calculated, CalculationResolutionContext const& context) const
|
2023-03-30 16:57:49 +01:00
|
|
|
{
|
2025-07-02 19:12:33 +12:00
|
|
|
return calculated->resolve_angle_deprecated(context);
|
2023-03-30 16:57:49 +01:00
|
|
|
}
|
|
|
|
|
2025-04-15 15:18:27 -06:00
|
|
|
NonnullRefPtr<CSSStyleValue const> AngleOrCalculated::create_style_value() const
|
2023-12-28 17:37:37 +00:00
|
|
|
{
|
|
|
|
return AngleStyleValue::create(value());
|
|
|
|
}
|
|
|
|
|
2025-04-15 15:18:27 -06:00
|
|
|
Optional<Flex> FlexOrCalculated::resolve_calculated(NonnullRefPtr<CalculatedStyleValue const> const& calculated, CalculationResolutionContext const& context) const
|
2023-12-27 12:56:00 +00:00
|
|
|
{
|
2025-07-02 19:12:33 +12:00
|
|
|
return calculated->resolve_flex_deprecated(context);
|
2023-12-27 12:56:00 +00:00
|
|
|
}
|
|
|
|
|
2025-04-15 15:18:27 -06:00
|
|
|
NonnullRefPtr<CSSStyleValue const> FlexOrCalculated::create_style_value() const
|
2023-12-28 17:37:37 +00:00
|
|
|
{
|
|
|
|
return FlexStyleValue::create(value());
|
|
|
|
}
|
|
|
|
|
2025-04-15 15:18:27 -06:00
|
|
|
Optional<Frequency> FrequencyOrCalculated::resolve_calculated(NonnullRefPtr<CalculatedStyleValue const> const& calculated, CalculationResolutionContext const& context) const
|
2023-03-30 16:57:49 +01:00
|
|
|
{
|
2025-07-02 19:12:33 +12:00
|
|
|
return calculated->resolve_frequency_deprecated(context);
|
2023-03-30 16:57:49 +01:00
|
|
|
}
|
|
|
|
|
2025-04-15 15:18:27 -06:00
|
|
|
NonnullRefPtr<CSSStyleValue const> FrequencyOrCalculated::create_style_value() const
|
2023-12-28 17:37:37 +00:00
|
|
|
{
|
|
|
|
return FrequencyStyleValue::create(value());
|
|
|
|
}
|
|
|
|
|
2025-04-15 15:18:27 -06:00
|
|
|
Optional<i64> IntegerOrCalculated::resolve_calculated(NonnullRefPtr<CalculatedStyleValue const> const& calculated, CalculationResolutionContext const& context) const
|
2023-12-27 12:56:00 +00:00
|
|
|
{
|
2025-07-02 19:12:33 +12:00
|
|
|
return calculated->resolve_integer_deprecated(context);
|
2024-11-29 13:16:15 +01:00
|
|
|
}
|
|
|
|
|
2025-04-15 15:18:27 -06:00
|
|
|
NonnullRefPtr<CSSStyleValue const> IntegerOrCalculated::create_style_value() const
|
2023-12-28 17:37:37 +00:00
|
|
|
{
|
|
|
|
return IntegerStyleValue::create(value());
|
|
|
|
}
|
|
|
|
|
2025-04-15 15:18:27 -06:00
|
|
|
Optional<Length> LengthOrCalculated::resolve_calculated(NonnullRefPtr<CalculatedStyleValue const> const& calculated, CalculationResolutionContext const& context) const
|
2023-03-30 16:57:49 +01:00
|
|
|
{
|
2025-07-02 19:12:33 +12:00
|
|
|
return calculated->resolve_length_deprecated(context);
|
2023-07-28 15:52:06 +02:00
|
|
|
}
|
|
|
|
|
2025-04-15 15:18:27 -06:00
|
|
|
NonnullRefPtr<CSSStyleValue const> LengthOrCalculated::create_style_value() const
|
2023-12-28 17:37:37 +00:00
|
|
|
{
|
|
|
|
return LengthStyleValue::create(value());
|
|
|
|
}
|
|
|
|
|
2025-04-15 15:18:27 -06:00
|
|
|
Optional<double> NumberOrCalculated::resolve_calculated(NonnullRefPtr<CalculatedStyleValue const> const& calculated, CalculationResolutionContext const& context) const
|
2023-12-27 12:56:00 +00:00
|
|
|
{
|
2025-07-02 19:12:33 +12:00
|
|
|
return calculated->resolve_number_deprecated(context);
|
2023-12-27 12:56:00 +00:00
|
|
|
}
|
|
|
|
|
2025-04-15 15:18:27 -06:00
|
|
|
NonnullRefPtr<CSSStyleValue const> NumberOrCalculated::create_style_value() const
|
2023-12-28 17:37:37 +00:00
|
|
|
{
|
|
|
|
return NumberStyleValue::create(value());
|
|
|
|
}
|
|
|
|
|
2025-04-15 15:18:27 -06:00
|
|
|
Optional<Percentage> PercentageOrCalculated::resolve_calculated(NonnullRefPtr<CalculatedStyleValue const> const& calculated, CalculationResolutionContext const& context) const
|
2023-03-30 16:57:49 +01:00
|
|
|
{
|
2025-07-02 19:12:33 +12:00
|
|
|
return calculated->resolve_percentage_deprecated(context);
|
2023-03-30 16:57:49 +01:00
|
|
|
}
|
|
|
|
|
2025-04-15 15:18:27 -06:00
|
|
|
NonnullRefPtr<CSSStyleValue const> PercentageOrCalculated::create_style_value() const
|
2023-12-28 17:37:37 +00:00
|
|
|
{
|
|
|
|
return PercentageStyleValue::create(value());
|
|
|
|
}
|
|
|
|
|
2025-04-15 15:18:27 -06:00
|
|
|
Optional<Resolution> ResolutionOrCalculated::resolve_calculated(NonnullRefPtr<CalculatedStyleValue const> const& calculated, CalculationResolutionContext const& context) const
|
2024-11-29 13:16:15 +01:00
|
|
|
{
|
2025-07-02 19:12:33 +12:00
|
|
|
return calculated->resolve_resolution_deprecated(context);
|
2024-11-29 13:16:15 +01:00
|
|
|
}
|
|
|
|
|
2025-04-15 15:18:27 -06:00
|
|
|
NonnullRefPtr<CSSStyleValue const> ResolutionOrCalculated::create_style_value() const
|
2023-12-28 17:37:37 +00:00
|
|
|
{
|
|
|
|
return ResolutionStyleValue::create(value());
|
|
|
|
}
|
|
|
|
|
2025-04-15 15:18:27 -06:00
|
|
|
Optional<Time> TimeOrCalculated::resolve_calculated(NonnullRefPtr<CalculatedStyleValue const> const& calculated, CalculationResolutionContext const& context) const
|
2023-03-30 16:57:49 +01:00
|
|
|
{
|
2025-07-02 19:12:33 +12:00
|
|
|
return calculated->resolve_time_deprecated(context);
|
2023-03-30 16:57:49 +01:00
|
|
|
}
|
|
|
|
|
2025-04-15 15:18:27 -06:00
|
|
|
NonnullRefPtr<CSSStyleValue const> 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
|
|
|
}
|