mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 02:02:45 +00:00 
			
		
		
		
	 b91c49364d
			
		
	
	
		b91c49364d
		
	
	
	
	
		
			
			This makes it more symmetrical with adopt_own() (which is used to create a NonnullOwnPtr from the result of a naked new.)
		
			
				
	
	
		
			45 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
	
		
			1.2 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/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(Vector<Selector>&& selectors, NonnullRefPtr<CSSStyleDeclaration>&& declaration)
 | |
|     {
 | |
|         return adopt_ref(*new CSSStyleRule(move(selectors), move(declaration)));
 | |
|     }
 | |
| 
 | |
|     ~CSSStyleRule();
 | |
| 
 | |
|     const Vector<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(Vector<Selector>&&, NonnullRefPtr<CSSStyleDeclaration>&&);
 | |
| 
 | |
|     Vector<Selector> m_selectors;
 | |
|     NonnullRefPtr<CSSStyleDeclaration> m_declaration;
 | |
| };
 | |
| 
 | |
| template<>
 | |
| inline bool CSSRule::fast_is<CSSStyleRule>() const { return type() == CSSRule::Type::Style; }
 | |
| 
 | |
| }
 |