
https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#cother-other-default-operation-rules "The compiler is more likely to get the default semantics right and you cannot implement these functions better than the compiler."
32 lines
769 B
C++
32 lines
769 B
C++
/*
|
|
* Copyright (c) 2021, Sam Atkins <atkinssj@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/NonnullRefPtr.h>
|
|
#include <LibWeb/CSS/CSSGroupingRule.h>
|
|
#include <LibWeb/Forward.h>
|
|
|
|
namespace Web::CSS {
|
|
|
|
class CSSConditionRule : public CSSGroupingRule {
|
|
AK_MAKE_NONCOPYABLE(CSSConditionRule);
|
|
AK_MAKE_NONMOVABLE(CSSConditionRule);
|
|
|
|
public:
|
|
~CSSConditionRule() = default;
|
|
|
|
virtual String condition_text() const = 0;
|
|
virtual void set_condition_text(String) = 0;
|
|
virtual bool condition_matches() const = 0;
|
|
|
|
virtual void for_each_effective_style_rule(Function<void(CSSStyleRule const&)> const& callback) const override;
|
|
|
|
protected:
|
|
explicit CSSConditionRule(NonnullRefPtrVector<CSSRule>&&);
|
|
};
|
|
|
|
}
|