mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 07:42:43 +00:00 
			
		
		
		
	 776b1f4548
			
		
	
	
		776b1f4548
		
	
	
	
	
		
			
			The end goal is to make the PseudoClass::not_selector be a Selector instead of a String that is repeatedly re-parsed. But since Selector contains a Vector of ComplexSelectors, which each have a Vector of SimpleSelectors, it's probably a good idea to not be passing them around by value anyway. :^)
		
			
				
	
	
		
			46 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | |
|  * Copyright (c) 2021, the SerenityOS developers.
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/NonnullRefPtr.h>
 | |
| #include <AK/NonnullRefPtrVector.h>
 | |
| #include <LibWeb/CSS/CSSRule.h>
 | |
| #include <LibWeb/CSS/CSSStyleDeclaration.h>
 | |
| #include <LibWeb/CSS/Selector.h>
 | |
| 
 | |
| namespace Web::CSS {
 | |
| 
 | |
| class CSSStyleRule : public CSSRule {
 | |
|     AK_MAKE_NONCOPYABLE(CSSStyleRule);
 | |
|     AK_MAKE_NONMOVABLE(CSSStyleRule);
 | |
| 
 | |
| public:
 | |
|     static NonnullRefPtr<CSSStyleRule> create(NonnullRefPtrVector<Selector>&& selectors, NonnullRefPtr<CSSStyleDeclaration>&& declaration)
 | |
|     {
 | |
|         return adopt_ref(*new CSSStyleRule(move(selectors), move(declaration)));
 | |
|     }
 | |
| 
 | |
|     ~CSSStyleRule();
 | |
| 
 | |
|     const NonnullRefPtrVector<Selector>& selectors() const { return m_selectors; }
 | |
|     const CSSStyleDeclaration& declaration() const { return m_declaration; }
 | |
| 
 | |
|     virtual StringView class_name() const { return "CSSStyleRule"; };
 | |
|     virtual Type type() const { return Type::Style; };
 | |
| 
 | |
| private:
 | |
|     CSSStyleRule(NonnullRefPtrVector<Selector>&&, NonnullRefPtr<CSSStyleDeclaration>&&);
 | |
| 
 | |
|     NonnullRefPtrVector<Selector> m_selectors;
 | |
|     NonnullRefPtr<CSSStyleDeclaration> m_declaration;
 | |
| };
 | |
| 
 | |
| template<>
 | |
| inline bool CSSRule::fast_is<CSSStyleRule>() const { return type() == CSSRule::Type::Style; }
 | |
| 
 | |
| }
 |