2023-03-25 00:02:50 +00:00
|
|
|
/*
|
2024-10-04 13:19:50 +02:00
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <andreas@ladybird.org>
|
2023-03-25 00:02:50 +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
|
|
|
|
|
2024-08-14 11:10:54 +01:00
|
|
|
#include <LibWeb/CSS/CSSStyleValue.h>
|
2023-03-30 14:22:39 +01:00
|
|
|
#include <LibWeb/CSS/EdgeRect.h>
|
2023-03-25 00:02:50 +00:00
|
|
|
|
|
|
|
namespace Web::CSS {
|
|
|
|
|
|
|
|
class RectStyleValue : public StyleValueWithDefaultOperators<RectStyleValue> {
|
|
|
|
public:
|
2025-04-15 15:18:27 -06:00
|
|
|
static ValueComparingNonnullRefPtr<RectStyleValue const> create(EdgeRect rect);
|
2023-03-25 00:02:50 +00:00
|
|
|
virtual ~RectStyleValue() override = default;
|
|
|
|
|
|
|
|
EdgeRect rect() const { return m_rect; }
|
2024-12-07 00:59:49 +01:00
|
|
|
virtual String to_string(SerializationMode) const override;
|
2023-03-25 00:02:50 +00:00
|
|
|
|
|
|
|
bool properties_equal(RectStyleValue const& other) const { return m_rect == other.m_rect; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
explicit RectStyleValue(EdgeRect rect)
|
|
|
|
: StyleValueWithDefaultOperators(Type::Rect)
|
2023-05-05 15:02:03 +01:00
|
|
|
, m_rect(move(rect))
|
2023-03-25 00:02:50 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
EdgeRect m_rect;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|