/* * Copyright (c) 2018-2020, Andreas Kling * Copyright (c) 2021, Tobias Christiansen * Copyright (c) 2021-2023, Sam Atkins * Copyright (c) 2022-2023, MacDue * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include namespace Web::CSS { class PositionStyleValue final : public StyleValueWithDefaultOperators { public: static ValueComparingNonnullRefPtr create(ValueComparingNonnullRefPtr edge_x, ValueComparingNonnullRefPtr edge_y) { return adopt_ref(*new (nothrow) PositionStyleValue(move(edge_x), move(edge_y))); } virtual ~PositionStyleValue() override = default; ValueComparingNonnullRefPtr edge_x() const { return m_properties.edge_x; } ValueComparingNonnullRefPtr edge_y() const { return m_properties.edge_y; } virtual String to_string() const override; bool properties_equal(PositionStyleValue const& other) const { return m_properties == other.m_properties; } private: PositionStyleValue(ValueComparingNonnullRefPtr edge_x, ValueComparingNonnullRefPtr edge_y) : StyleValueWithDefaultOperators(Type::Position) , m_properties { .edge_x = edge_x, .edge_y = edge_y } { } struct Properties { ValueComparingNonnullRefPtr edge_x; ValueComparingNonnullRefPtr edge_y; bool operator==(Properties const&) const = default; } m_properties; }; }