/* * 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 namespace Web::CSS { class TextDecorationStyleValue final : public StyleValueWithDefaultOperators { public: static ValueComparingNonnullRefPtr create( ValueComparingNonnullRefPtr line, ValueComparingNonnullRefPtr thickness, ValueComparingNonnullRefPtr style, ValueComparingNonnullRefPtr color) { return adopt_ref(*new (nothrow) TextDecorationStyleValue(move(line), move(thickness), move(style), move(color))); } virtual ~TextDecorationStyleValue() override = default; ValueComparingNonnullRefPtr line() const { return m_properties.line; } ValueComparingNonnullRefPtr thickness() const { return m_properties.thickness; } ValueComparingNonnullRefPtr style() const { return m_properties.style; } ValueComparingNonnullRefPtr color() const { return m_properties.color; } virtual String to_string() const override; bool properties_equal(TextDecorationStyleValue const& other) const { return m_properties == other.m_properties; } private: TextDecorationStyleValue( ValueComparingNonnullRefPtr line, ValueComparingNonnullRefPtr thickness, ValueComparingNonnullRefPtr style, ValueComparingNonnullRefPtr color) : StyleValueWithDefaultOperators(Type::TextDecoration) , m_properties { .line = move(line), .thickness = move(thickness), .style = move(style), .color = move(color) } { } struct Properties { ValueComparingNonnullRefPtr line; ValueComparingNonnullRefPtr thickness; ValueComparingNonnullRefPtr style; ValueComparingNonnullRefPtr color; bool operator==(Properties const&) const = default; } m_properties; }; }