| 
									
										
										
										
											2025-03-27 17:35:06 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2025, Sam Atkins <sam@ladybird.org> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <LibGfx/Font/UnicodeRange.h>
 | 
					
						
							| 
									
										
										
										
											2025-08-08 10:11:51 +01:00
										 |  |  | #include <LibWeb/CSS/StyleValues/StyleValue.h>
 | 
					
						
							| 
									
										
										
										
											2025-03-27 17:35:06 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace Web::CSS { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class UnicodeRangeStyleValue final : public StyleValueWithDefaultOperators<UnicodeRangeStyleValue> { | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2025-04-15 15:18:27 -06:00
										 |  |  |     static ValueComparingNonnullRefPtr<UnicodeRangeStyleValue const> create(Gfx::UnicodeRange unicode_range) | 
					
						
							| 
									
										
										
										
											2025-03-27 17:35:06 +00:00
										 |  |  |     { | 
					
						
							|  |  |  |         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; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |