mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-05 01:42:54 +00:00
37 lines
951 B
C++
37 lines
951 B
C++
/*
|
|
* Copyright (c) 2025, Jelle Raaijmakers <jelle@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Bindings/PlatformObject.h>
|
|
|
|
namespace Web::SVG {
|
|
|
|
// https://svgwg.org/svg2-draft/types.html#InterfaceSVGAnimatedEnumeration
|
|
class SVGAnimatedEnumeration final : public Bindings::PlatformObject {
|
|
WEB_PLATFORM_OBJECT(SVGAnimatedEnumeration, Bindings::PlatformObject);
|
|
GC_DECLARE_ALLOCATOR(SVGAnimatedEnumeration);
|
|
|
|
public:
|
|
[[nodiscard]] static GC::Ref<SVGAnimatedEnumeration> create(JS::Realm&, u16 value);
|
|
virtual ~SVGAnimatedEnumeration() override;
|
|
|
|
u16 base_val() const { return base_or_anim_value(); }
|
|
WebIDL::ExceptionOr<void> set_base_val(u16);
|
|
|
|
u16 anim_val() const { return base_or_anim_value(); }
|
|
|
|
private:
|
|
SVGAnimatedEnumeration(JS::Realm&, u16 value);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
|
|
u16 base_or_anim_value() const;
|
|
|
|
u16 m_value;
|
|
};
|
|
|
|
}
|