diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2022-03-22 16:37:16 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-03-22 22:33:17 +0100 |
commit | 1a3d6c68ef4978e3e471a8592a1f45f46bcd4f90 (patch) | |
tree | 6177c5b720379ec378e7998084d5a2c052dbee5f /Userland/Libraries/LibWeb | |
parent | b51ea3a67c640a564740438ceb19f9c7e0bb516e (diff) | |
download | serenity-1a3d6c68ef4978e3e471a8592a1f45f46bcd4f90.zip |
LibWeb: Expose SVGCircleElement attributes to JS
Diffstat (limited to 'Userland/Libraries/LibWeb')
-rw-r--r-- | Userland/Libraries/LibWeb/SVG/SVGCircleElement.cpp | 30 | ||||
-rw-r--r-- | Userland/Libraries/LibWeb/SVG/SVGCircleElement.h | 5 | ||||
-rw-r--r-- | Userland/Libraries/LibWeb/SVG/SVGCircleElement.idl | 7 |
3 files changed, 39 insertions, 3 deletions
diff --git a/Userland/Libraries/LibWeb/SVG/SVGCircleElement.cpp b/Userland/Libraries/LibWeb/SVG/SVGCircleElement.cpp index 5516d78e71..265d362541 100644 --- a/Userland/Libraries/LibWeb/SVG/SVGCircleElement.cpp +++ b/Userland/Libraries/LibWeb/SVG/SVGCircleElement.cpp @@ -70,4 +70,34 @@ Gfx::Path& SVGCircleElement::get_path() return m_path.value(); } +// https://www.w3.org/TR/SVG11/shapes.html#CircleElementCXAttribute +NonnullRefPtr<SVGAnimatedLength> SVGCircleElement::cx() const +{ + // FIXME: Populate the unit type when it is parsed (0 here is "unknown"). + // FIXME: Create a proper animated value when animations are supported. + auto base_length = SVGLength::create(0, m_center_x.value_or(0)); + auto anim_length = SVGLength::create(0, m_center_x.value_or(0)); + return SVGAnimatedLength::create(move(base_length), move(anim_length)); +} + +// https://www.w3.org/TR/SVG11/shapes.html#CircleElementCYAttribute +NonnullRefPtr<SVGAnimatedLength> SVGCircleElement::cy() const +{ + // FIXME: Populate the unit type when it is parsed (0 here is "unknown"). + // FIXME: Create a proper animated value when animations are supported. + auto base_length = SVGLength::create(0, m_center_y.value_or(0)); + auto anim_length = SVGLength::create(0, m_center_y.value_or(0)); + return SVGAnimatedLength::create(move(base_length), move(anim_length)); +} + +// https://www.w3.org/TR/SVG11/shapes.html#CircleElementRAttribute +NonnullRefPtr<SVGAnimatedLength> SVGCircleElement::r() const +{ + // FIXME: Populate the unit type when it is parsed (0 here is "unknown"). + // FIXME: Create a proper animated value when animations are supported. + auto base_length = SVGLength::create(0, m_radius.value_or(0)); + auto anim_length = SVGLength::create(0, m_radius.value_or(0)); + return SVGAnimatedLength::create(move(base_length), move(anim_length)); +} + } diff --git a/Userland/Libraries/LibWeb/SVG/SVGCircleElement.h b/Userland/Libraries/LibWeb/SVG/SVGCircleElement.h index d03820c5bc..4899a59cf6 100644 --- a/Userland/Libraries/LibWeb/SVG/SVGCircleElement.h +++ b/Userland/Libraries/LibWeb/SVG/SVGCircleElement.h @@ -6,6 +6,7 @@ #pragma once +#include <LibWeb/SVG/SVGAnimatedLength.h> #include <LibWeb/SVG/SVGGeometryElement.h> namespace Web::SVG { @@ -21,6 +22,10 @@ public: virtual Gfx::Path& get_path() override; + NonnullRefPtr<SVGAnimatedLength> cx() const; + NonnullRefPtr<SVGAnimatedLength> cy() const; + NonnullRefPtr<SVGAnimatedLength> r() const; + private: Optional<Gfx::Path> m_path; diff --git a/Userland/Libraries/LibWeb/SVG/SVGCircleElement.idl b/Userland/Libraries/LibWeb/SVG/SVGCircleElement.idl index 0e28614626..bb4f0a5178 100644 --- a/Userland/Libraries/LibWeb/SVG/SVGCircleElement.idl +++ b/Userland/Libraries/LibWeb/SVG/SVGCircleElement.idl @@ -1,8 +1,9 @@ +#import <SVG/SVGAnimatedLength.idl> #import <SVG/SVGGeometryElement.idl> [Exposed=Window] interface SVGCircleElement : SVGGeometryElement { - // [SameObject] readonly attribute SVGAnimatedLength cx; - // [SameObject] readonly attribute SVGAnimatedLength cy; - // [SameObject] readonly attribute SVGAnimatedLength r; + [SameObject] readonly attribute SVGAnimatedLength cx; + [SameObject] readonly attribute SVGAnimatedLength cy; + [SameObject] readonly attribute SVGAnimatedLength r; }; |