mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-17 07:41:54 +00:00
LibWeb/CSS: Implement UnicodeRangeStyleValue
This is preparation for storing at-rule descriptors as style values.
This commit is contained in:
parent
e0a03147c6
commit
09b8f73e11
Notes:
github-actions[bot]
2025-03-28 09:15:53 +00:00
Author: https://github.com/AtkinsSJ
Commit: 09b8f73e11
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4125
8 changed files with 86 additions and 0 deletions
34
Libraries/LibWeb/CSS/StyleValues/UnicodeRangeStyleValue.h
Normal file
34
Libraries/LibWeb/CSS/StyleValues/UnicodeRangeStyleValue.h
Normal file
|
@ -0,0 +1,34 @@
|
|||
/*
|
||||
* Copyright (c) 2025, Sam Atkins <sam@ladybird.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <LibGfx/Font/UnicodeRange.h>
|
||||
#include <LibWeb/CSS/CSSStyleValue.h>
|
||||
|
||||
namespace Web::CSS {
|
||||
|
||||
class UnicodeRangeStyleValue final : public StyleValueWithDefaultOperators<UnicodeRangeStyleValue> {
|
||||
public:
|
||||
static ValueComparingNonnullRefPtr<UnicodeRangeStyleValue> create(Gfx::UnicodeRange unicode_range)
|
||||
{
|
||||
return adopt_ref(*new (nothrow) UnicodeRangeStyleValue(unicode_range));
|
||||
}
|
||||
virtual ~UnicodeRangeStyleValue() override;
|
||||
|
||||
Gfx::UnicodeRange const& unicode_range() const { return m_unicode_range; }
|
||||
|
||||
virtual String to_string(SerializationMode) const override;
|
||||
|
||||
bool properties_equal(UnicodeRangeStyleValue const&) const;
|
||||
|
||||
private:
|
||||
UnicodeRangeStyleValue(Gfx::UnicodeRange);
|
||||
|
||||
Gfx::UnicodeRange m_unicode_range;
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue