1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /*
- * Copyright (c) 2024, Andreas Kling <kling@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #pragma once
- #include <LibWeb/Bindings/PlatformObject.h>
- #include <LibWeb/Geometry/DOMRect.h>
- namespace Web::SVG {
- class SVGAnimatedRect final : public Bindings::PlatformObject {
- WEB_PLATFORM_OBJECT(SVGAnimatedRect, Bindings::PlatformObject);
- JS_DECLARE_ALLOCATOR(SVGAnimatedRect);
- public:
- virtual ~SVGAnimatedRect();
- JS::GCPtr<Geometry::DOMRect> base_val() const;
- JS::GCPtr<Geometry::DOMRect> anim_val() const;
- void set_base_val(Gfx::DoubleRect const&);
- void set_anim_val(Gfx::DoubleRect const&);
- void set_nulled(bool);
- private:
- virtual void initialize(JS::Realm&) override;
- virtual void visit_edges(Visitor&) override;
- explicit SVGAnimatedRect(JS::Realm&);
- JS::GCPtr<Geometry::DOMRect> m_base_val;
- JS::GCPtr<Geometry::DOMRect> m_anim_val;
- bool m_nulled { true };
- };
- }
|