2023-03-23 21:17:43 +00:00
|
|
|
/*
|
2024-10-04 13:19:50 +02:00
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <andreas@ladybird.org>
|
2023-03-23 21:17:43 +00:00
|
|
|
* Copyright (c) 2021, Tobias Christiansen <tobyase@serenityos.org>
|
|
|
|
* Copyright (c) 2021-2023, Sam Atkins <atkinssj@serenityos.org>
|
|
|
|
* Copyright (c) 2022-2023, MacDue <macdue@dueutil.tech>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2025-08-08 10:11:51 +01:00
|
|
|
#include <LibWeb/CSS/StyleValues/StyleValue.h>
|
2023-03-23 21:17:43 +00:00
|
|
|
|
|
|
|
namespace Web::CSS {
|
|
|
|
|
|
|
|
class ContentStyleValue final : public StyleValueWithDefaultOperators<ContentStyleValue> {
|
|
|
|
public:
|
2025-04-15 15:18:27 -06:00
|
|
|
static ValueComparingNonnullRefPtr<ContentStyleValue const> create(ValueComparingNonnullRefPtr<StyleValueList const> content, ValueComparingRefPtr<StyleValueList const> alt_text)
|
2023-03-23 21:17:43 +00:00
|
|
|
{
|
2023-08-19 14:00:10 +01:00
|
|
|
return adopt_ref(*new (nothrow) ContentStyleValue(move(content), move(alt_text)));
|
2023-03-23 21:17:43 +00:00
|
|
|
}
|
|
|
|
virtual ~ContentStyleValue() override = default;
|
|
|
|
|
|
|
|
StyleValueList const& content() const { return *m_properties.content; }
|
|
|
|
bool has_alt_text() const { return !m_properties.alt_text.is_null(); }
|
|
|
|
StyleValueList const* alt_text() const { return m_properties.alt_text; }
|
|
|
|
|
2024-12-07 00:59:49 +01:00
|
|
|
virtual String to_string(SerializationMode) const override;
|
2023-03-23 21:17:43 +00:00
|
|
|
|
2023-07-07 22:48:11 -04:00
|
|
|
bool properties_equal(ContentStyleValue const& other) const { return m_properties == other.m_properties; }
|
2023-03-23 21:17:43 +00:00
|
|
|
|
2025-08-04 14:19:23 +01:00
|
|
|
virtual void set_style_sheet(GC::Ptr<CSSStyleSheet>) override;
|
|
|
|
|
2023-03-23 21:17:43 +00:00
|
|
|
private:
|
2025-04-15 15:18:27 -06:00
|
|
|
ContentStyleValue(ValueComparingNonnullRefPtr<StyleValueList const> content, ValueComparingRefPtr<StyleValueList const> alt_text)
|
2023-03-23 21:17:43 +00:00
|
|
|
: StyleValueWithDefaultOperators(Type::Content)
|
|
|
|
, m_properties { .content = move(content), .alt_text = move(alt_text) }
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Properties {
|
2025-04-15 15:18:27 -06:00
|
|
|
ValueComparingNonnullRefPtr<StyleValueList const> content;
|
|
|
|
ValueComparingRefPtr<StyleValueList const> alt_text;
|
2023-03-26 12:08:36 -06:00
|
|
|
bool operator==(Properties const&) const = default;
|
2023-03-23 21:17:43 +00:00
|
|
|
} m_properties;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|