Files
ladybird/Libraries/LibWeb/CSS/CSSMathValue.h
Shannon Booth fd44da6829 LibWeb/Bindings: Emit one bindings header and cpp per IDL
Previously, the LibWeb bindings generator would output multiple per
interface files like Prototype/Constructor/Namespace/GlobalMixin
depending on the contents of that IDL file.

This complicates the build system as it means that it does not know
what files will be generated without knowledge of the contents of that
IDL file.

Instead, for each IDL file only generate a single Bindings/<IDLFile>.h
and Bindings/<IDLFile>.cpp.
2026-04-21 07:36:13 +02:00

46 lines
1.1 KiB
C++

/*
* Copyright (c) 2025, Sam Atkins <sam@ladybird.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibWeb/Bindings/CSSMathValue.h>
#include <LibWeb/CSS/CSSNumericValue.h>
#include <LibWeb/Forward.h>
namespace Web::CSS {
// https://drafts.css-houdini.org/css-typed-om-1/#cssmathvalue
class CSSMathValue : public CSSNumericValue {
WEB_PLATFORM_OBJECT(CSSMathValue, CSSNumericValue);
GC_DECLARE_ALLOCATOR(CSSMathValue);
public:
virtual ~CSSMathValue() override = default;
Bindings::CSSMathOperator operator_() const { return m_operator; }
enum class Nested : u8 {
No,
Yes,
};
enum class Parens : u8 {
With,
Without,
};
virtual void serialize_math_value(StringBuilder&, Nested, Parens) const = 0;
virtual WebIDL::ExceptionOr<NonnullRefPtr<StyleValue const>> create_an_internal_representation(PropertyNameAndID const&, PerformTypeCheck) const final override;
protected:
explicit CSSMathValue(JS::Realm&, Bindings::CSSMathOperator, NumericType);
virtual void initialize(JS::Realm&) override;
Bindings::CSSMathOperator m_operator;
};
}