2023-03-25 00:12:21 +00:00
|
|
|
/*
|
2024-10-04 13:19:50 +02:00
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <andreas@ladybird.org>
|
2023-03-25 00:12:21 +00:00
|
|
|
* Copyright (c) 2021, Tobias Christiansen <tobyase@serenityos.org>
|
2025-04-10 16:35:59 +01:00
|
|
|
* Copyright (c) 2021-2025, Sam Atkins <sam@ladybird.org>
|
2023-03-25 00:12:21 +00:00
|
|
|
* 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-25 00:12:21 +00:00
|
|
|
|
|
|
|
namespace Web::CSS {
|
|
|
|
|
|
|
|
class StyleValueList final : public StyleValueWithDefaultOperators<StyleValueList> {
|
|
|
|
public:
|
|
|
|
enum class Separator {
|
|
|
|
Space,
|
|
|
|
Comma,
|
|
|
|
};
|
2023-08-19 14:00:10 +01:00
|
|
|
static ValueComparingNonnullRefPtr<StyleValueList> create(StyleValueVector&& values, Separator separator)
|
2023-05-05 15:02:03 +01:00
|
|
|
{
|
2023-08-19 14:00:10 +01:00
|
|
|
return adopt_ref(*new (nothrow) StyleValueList(move(values), separator));
|
2023-05-05 15:02:03 +01:00
|
|
|
}
|
2023-03-25 00:12:21 +00:00
|
|
|
|
|
|
|
size_t size() const { return m_properties.values.size(); }
|
|
|
|
StyleValueVector const& values() const { return m_properties.values; }
|
2025-08-08 10:11:51 +01:00
|
|
|
ValueComparingNonnullRefPtr<StyleValue const> value_at(size_t i, bool allow_loop) const
|
2023-03-25 00:12:21 +00:00
|
|
|
{
|
|
|
|
if (allow_loop)
|
|
|
|
return m_properties.values[i % size()];
|
|
|
|
return m_properties.values[i];
|
|
|
|
}
|
|
|
|
|
2024-12-07 00:59:49 +01:00
|
|
|
virtual String to_string(SerializationMode) const override;
|
2025-07-10 12:17:27 +01:00
|
|
|
virtual Vector<Parser::ComponentValue> tokenize() const override;
|
2023-03-25 00:12:21 +00:00
|
|
|
|
2025-08-08 10:11:51 +01:00
|
|
|
virtual ValueComparingNonnullRefPtr<StyleValue const> absolutized(CSSPixelRect const& viewport_rect, Length::FontMetrics const& font_metrics, Length::FontMetrics const& root_font_metrics) const override;
|
2025-08-04 20:13:18 +12:00
|
|
|
|
2023-03-25 00:12:21 +00:00
|
|
|
bool properties_equal(StyleValueList const& other) const { return m_properties == other.m_properties; }
|
|
|
|
|
2023-04-03 18:25:13 +01:00
|
|
|
Separator separator() const { return m_properties.separator; }
|
|
|
|
|
2025-08-04 14:19:23 +01:00
|
|
|
virtual void set_style_sheet(GC::Ptr<CSSStyleSheet>) override;
|
|
|
|
|
2023-03-25 00:12:21 +00:00
|
|
|
private:
|
|
|
|
StyleValueList(StyleValueVector&& values, Separator separator)
|
|
|
|
: StyleValueWithDefaultOperators(Type::ValueList)
|
|
|
|
, m_properties { .separator = separator, .values = move(values) }
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Properties {
|
|
|
|
Separator separator;
|
|
|
|
StyleValueVector values;
|
|
|
|
bool operator==(Properties const&) const;
|
|
|
|
} m_properties;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|