2022-02-11 17:28:24 +00:00
|
|
|
/*
|
|
|
|
|
* 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 SVGPolylineElement final : public SVGGeometryElement {
|
2022-08-28 13:42:07 +02:00
|
|
|
WEB_PLATFORM_OBJECT(SVGPolylineElement, SVGGeometryElement);
|
2024-11-15 04:01:23 +13:00
|
|
|
GC_DECLARE_ALLOCATOR(SVGPolylineElement);
|
2022-02-11 17:28:24 +00:00
|
|
|
|
2022-08-28 13:42:07 +02:00
|
|
|
public:
|
2022-02-11 17:28:24 +00:00
|
|
|
virtual ~SVGPolylineElement() override = default;
|
|
|
|
|
|
2024-11-14 08:14:16 -05:00
|
|
|
virtual void attribute_changed(FlyString const& name, Optional<String> const& old_value, Optional<String> const& value, Optional<FlyString> const& namespace_) override;
|
2022-02-11 17:28:24 +00:00
|
|
|
|
2024-08-09 14:00:10 +02:00
|
|
|
virtual Gfx::Path get_path(CSSPixelSize viewport_size) override;
|
2022-02-11 17:28:24 +00:00
|
|
|
|
|
|
|
|
private:
|
2022-08-28 13:42:07 +02:00
|
|
|
SVGPolylineElement(DOM::Document&, DOM::QualifiedName);
|
|
|
|
|
|
2023-08-07 08:41:28 +02:00
|
|
|
virtual void initialize(JS::Realm&) override;
|
2023-01-10 06:28:20 -05:00
|
|
|
|
2022-02-11 17:28:24 +00:00
|
|
|
Vector<Gfx::FloatPoint> m_points;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|