ladybird/Libraries/LibWeb/SVG/SVGAnimatedRect.h
Shannon Booth f87041bf3a LibGC+Everywhere: Factor out a LibGC from LibJS
Resulting in a massive rename across almost everywhere! Alongside the
namespace change, we now have the following names:

 * JS::NonnullGCPtr -> GC::Ref
 * JS::GCPtr -> GC::Ptr
 * JS::HeapFunction -> GC::Function
 * JS::CellImpl -> GC::Cell
 * JS::Handle -> GC::Root
2024-11-15 14:49:20 +01:00

41 lines
942 B
C++

/*
* Copyright (c) 2024, Andreas Kling <andreas@ladybird.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);
GC_DECLARE_ALLOCATOR(SVGAnimatedRect);
public:
virtual ~SVGAnimatedRect();
GC::Ptr<Geometry::DOMRect> base_val() const;
GC::Ptr<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&);
GC::Ptr<Geometry::DOMRect> m_base_val;
GC::Ptr<Geometry::DOMRect> m_anim_val;
bool m_nulled { true };
};
}