mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 17:35:06 +00:00

We have a new, improved string type coming up in AK (OOM aware, no null state), and while it's going to use UTF-8, the name UTF8String is a mouthful - so let's free up the String name by renaming the existing class. Making the old one have an annoying name will hopefully also help with quick adoption :^)
38 lines
918 B
C++
38 lines
918 B
C++
/*
|
|
* Copyright (c) 2022, Sam Atkins <atkinssj@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/SVG/SVGAnimatedLength.h>
|
|
#include <LibWeb/SVG/SVGGeometryElement.h>
|
|
|
|
namespace Web::SVG {
|
|
|
|
class SVGCircleElement final : public SVGGeometryElement {
|
|
WEB_PLATFORM_OBJECT(SVGCircleElement, SVGGraphicsElement);
|
|
|
|
public:
|
|
virtual ~SVGCircleElement() override = default;
|
|
|
|
virtual void parse_attribute(FlyString const& name, DeprecatedString const& value) override;
|
|
|
|
virtual Gfx::Path& get_path() override;
|
|
|
|
JS::NonnullGCPtr<SVGAnimatedLength> cx() const;
|
|
JS::NonnullGCPtr<SVGAnimatedLength> cy() const;
|
|
JS::NonnullGCPtr<SVGAnimatedLength> r() const;
|
|
|
|
private:
|
|
SVGCircleElement(DOM::Document&, DOM::QualifiedName);
|
|
|
|
Optional<Gfx::Path> m_path;
|
|
|
|
Optional<float> m_center_x;
|
|
Optional<float> m_center_y;
|
|
Optional<float> m_radius;
|
|
};
|
|
|
|
}
|