mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 14:55:08 +00:00

This is a monster patch that turns all EventTargets into GC-allocated PlatformObjects. Their C++ wrapper classes are removed, and the LibJS garbage collector is now responsible for their lifetimes. There's a fair amount of hacks and band-aids in this patch, and we'll have a lot of cleanup to do after this.
33 lines
701 B
C++
33 lines
701 B
C++
/*
|
|
* Copyright (c) 2022, Sam Atkins <atkinssj@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/SVG/SVGGeometryElement.h>
|
|
|
|
namespace Web::SVG {
|
|
|
|
class SVGPolygonElement final : public SVGGeometryElement {
|
|
WEB_PLATFORM_OBJECT(SVGPolygonElement, SVGGeometryElement);
|
|
|
|
public:
|
|
virtual ~SVGPolygonElement() override = default;
|
|
|
|
virtual void parse_attribute(FlyString const& name, String const& value) override;
|
|
|
|
virtual Gfx::Path& get_path() override;
|
|
|
|
private:
|
|
SVGPolygonElement(DOM::Document&, DOM::QualifiedName);
|
|
|
|
Optional<Gfx::Path> m_path;
|
|
|
|
Vector<Gfx::FloatPoint> m_points;
|
|
};
|
|
|
|
}
|
|
|
|
WRAPPER_HACK(SVGPolygonElement, Web::SVG)
|