mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-05 07:39:16 +00:00
These will be used for the mask-repeat property as well in an upcoming commit, hence the more generic names. Also, this more closely matches the names used in the spec.
42 lines
1.3 KiB
C++
42 lines
1.3 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <andreas@ladybird.org>
|
|
* 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
|
|
|
|
#include <LibWeb/CSS/CSSStyleValue.h>
|
|
#include <LibWeb/CSS/Enums.h>
|
|
|
|
namespace Web::CSS {
|
|
|
|
class RepeatStyleStyleValue final : public StyleValueWithDefaultOperators<RepeatStyleStyleValue> {
|
|
public:
|
|
static ValueComparingNonnullRefPtr<RepeatStyleStyleValue const> create(Repetition repeat_x, Repetition repeat_y)
|
|
{
|
|
return adopt_ref(*new (nothrow) RepeatStyleStyleValue(repeat_x, repeat_y));
|
|
}
|
|
virtual ~RepeatStyleStyleValue() override;
|
|
|
|
Repetition repeat_x() const { return m_properties.repeat_x; }
|
|
Repetition repeat_y() const { return m_properties.repeat_y; }
|
|
|
|
virtual String to_string(SerializationMode) const override;
|
|
|
|
bool properties_equal(RepeatStyleStyleValue const& other) const { return m_properties == other.m_properties; }
|
|
|
|
private:
|
|
RepeatStyleStyleValue(Repetition repeat_x, Repetition repeat_y);
|
|
|
|
struct Properties {
|
|
Repetition repeat_x;
|
|
Repetition repeat_y;
|
|
bool operator==(Properties const&) const = default;
|
|
} m_properties;
|
|
};
|
|
|
|
}
|