| 
									
										
										
										
											2022-02-11 16:45:59 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2022, Sam Atkins <atkinssj@serenityos.org> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-27 12:09:58 +12:00
										 |  |  | #include <LibWeb/Bindings/SVGEllipseElementPrototype.h>
 | 
					
						
							| 
									
										
										
										
											2022-08-28 13:42:07 +02:00
										 |  |  | #include <LibWeb/HTML/Window.h>
 | 
					
						
							| 
									
										
										
										
											2022-02-11 16:45:59 +00:00
										 |  |  | #include <LibWeb/SVG/AttributeNames.h>
 | 
					
						
							|  |  |  | #include <LibWeb/SVG/AttributeParser.h>
 | 
					
						
							| 
									
										
										
										
											2022-08-28 13:42:07 +02:00
										 |  |  | #include <LibWeb/SVG/SVGEllipseElement.h>
 | 
					
						
							| 
									
										
										
										
											2022-02-11 16:45:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace Web::SVG { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-19 19:47:52 +01:00
										 |  |  | JS_DEFINE_ALLOCATOR(SVGEllipseElement); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-18 21:00:52 +01:00
										 |  |  | SVGEllipseElement::SVGEllipseElement(DOM::Document& document, DOM::QualifiedName qualified_name) | 
					
						
							| 
									
										
										
										
											2022-02-11 16:45:59 +00:00
										 |  |  |     : SVGGeometryElement(document, qualified_name) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2023-01-10 06:28:20 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-07 08:41:28 +02:00
										 |  |  | void SVGEllipseElement::initialize(JS::Realm& realm) | 
					
						
							| 
									
										
										
										
											2023-01-10 06:28:20 -05:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-08-07 08:41:28 +02:00
										 |  |  |     Base::initialize(realm); | 
					
						
							| 
									
										
										
										
											2024-03-16 13:13:08 +01:00
										 |  |  |     WEB_SET_PROTOTYPE_FOR_INTERFACE(SVGEllipseElement); | 
					
						
							| 
									
										
										
										
											2022-02-11 16:45:59 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-19 18:10:36 +13:00
										 |  |  | void SVGEllipseElement::attribute_changed(FlyString const& name, Optional<String> const& value) | 
					
						
							| 
									
										
										
										
											2022-02-11 16:45:59 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-07-03 17:08:37 +02:00
										 |  |  |     SVGGeometryElement::attribute_changed(name, value); | 
					
						
							| 
									
										
										
										
											2022-02-11 16:45:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (name == SVG::AttributeNames::cx) { | 
					
						
							| 
									
										
										
										
											2023-11-19 18:10:36 +13:00
										 |  |  |         m_center_x = AttributeParser::parse_coordinate(value.value_or(String {})); | 
					
						
							| 
									
										
										
										
											2022-02-11 16:45:59 +00:00
										 |  |  |     } else if (name == SVG::AttributeNames::cy) { | 
					
						
							| 
									
										
										
										
											2023-11-19 18:10:36 +13:00
										 |  |  |         m_center_y = AttributeParser::parse_coordinate(value.value_or(String {})); | 
					
						
							| 
									
										
										
										
											2022-02-11 16:45:59 +00:00
										 |  |  |     } else if (name == SVG::AttributeNames::rx) { | 
					
						
							| 
									
										
										
										
											2023-11-19 18:10:36 +13:00
										 |  |  |         m_radius_x = AttributeParser::parse_positive_length(value.value_or(String {})); | 
					
						
							| 
									
										
										
										
											2022-02-11 16:45:59 +00:00
										 |  |  |     } else if (name == SVG::AttributeNames::ry) { | 
					
						
							| 
									
										
										
										
											2023-11-19 18:10:36 +13:00
										 |  |  |         m_radius_y = AttributeParser::parse_positive_length(value.value_or(String {})); | 
					
						
							| 
									
										
										
										
											2022-02-11 16:45:59 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-03 20:15:06 +00:00
										 |  |  | Gfx::Path SVGEllipseElement::get_path(CSSPixelSize) | 
					
						
							| 
									
										
										
										
											2022-02-11 16:45:59 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     float rx = m_radius_x.value_or(0); | 
					
						
							|  |  |  |     float ry = m_radius_y.value_or(0); | 
					
						
							|  |  |  |     float cx = m_center_x.value_or(0); | 
					
						
							|  |  |  |     float cy = m_center_y.value_or(0); | 
					
						
							|  |  |  |     Gfx::Path path; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // A computed value of zero for either dimension, or a computed value of auto for both dimensions, disables rendering of the element.
 | 
					
						
							| 
									
										
										
										
											2024-03-03 20:15:06 +00:00
										 |  |  |     if (rx == 0 || ry == 0) | 
					
						
							|  |  |  |         return path; | 
					
						
							| 
									
										
										
										
											2022-02-11 16:45:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-10 10:52:14 +01:00
										 |  |  |     Gfx::FloatSize radii = { rx, ry }; | 
					
						
							| 
									
										
										
										
											2022-02-11 16:45:59 +00:00
										 |  |  |     double x_axis_rotation = 0; | 
					
						
							|  |  |  |     bool large_arc = false; | 
					
						
							|  |  |  |     bool sweep = true; // Note: Spec says it should be false, but it's wrong. https://github.com/w3c/svgwg/issues/765
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // 1. A move-to command to the point cx+rx,cy;
 | 
					
						
							|  |  |  |     path.move_to({ cx + rx, cy }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // 2. arc to cx,cy+ry;
 | 
					
						
							|  |  |  |     path.elliptical_arc_to({ cx, cy + ry }, radii, x_axis_rotation, large_arc, sweep); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // 3. arc to cx-rx,cy;
 | 
					
						
							|  |  |  |     path.elliptical_arc_to({ cx - rx, cy }, radii, x_axis_rotation, large_arc, sweep); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // 4. arc to cx,cy-ry;
 | 
					
						
							|  |  |  |     path.elliptical_arc_to({ cx, cy - ry }, radii, x_axis_rotation, large_arc, sweep); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // 5. arc with a segment-completing close path operation.
 | 
					
						
							|  |  |  |     path.elliptical_arc_to({ cx + rx, cy }, radii, x_axis_rotation, large_arc, sweep); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-03 20:15:06 +00:00
										 |  |  |     return path; | 
					
						
							| 
									
										
										
										
											2022-02-11 16:45:59 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-22 16:57:00 +00:00
										 |  |  | // https://www.w3.org/TR/SVG11/shapes.html#EllipseElementCXAttribute
 | 
					
						
							| 
									
										
										
										
											2022-09-02 14:04:59 +02:00
										 |  |  | JS::NonnullGCPtr<SVGAnimatedLength> SVGEllipseElement::cx() const | 
					
						
							| 
									
										
										
										
											2022-03-22 16:57:00 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     // FIXME: Populate the unit type when it is parsed (0 here is "unknown").
 | 
					
						
							|  |  |  |     // FIXME: Create a proper animated value when animations are supported.
 | 
					
						
							| 
									
										
										
										
											2023-08-13 13:05:26 +02:00
										 |  |  |     auto base_length = SVGLength::create(realm(), 0, m_center_x.value_or(0)); | 
					
						
							|  |  |  |     auto anim_length = SVGLength::create(realm(), 0, m_center_x.value_or(0)); | 
					
						
							|  |  |  |     return SVGAnimatedLength::create(realm(), move(base_length), move(anim_length)); | 
					
						
							| 
									
										
										
										
											2022-03-22 16:57:00 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // https://www.w3.org/TR/SVG11/shapes.html#EllipseElementCYAttribute
 | 
					
						
							| 
									
										
										
										
											2022-09-02 14:04:59 +02:00
										 |  |  | JS::NonnullGCPtr<SVGAnimatedLength> SVGEllipseElement::cy() const | 
					
						
							| 
									
										
										
										
											2022-03-22 16:57:00 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     // FIXME: Populate the unit type when it is parsed (0 here is "unknown").
 | 
					
						
							|  |  |  |     // FIXME: Create a proper animated value when animations are supported.
 | 
					
						
							| 
									
										
										
										
											2023-08-13 13:05:26 +02:00
										 |  |  |     auto base_length = SVGLength::create(realm(), 0, m_center_y.value_or(0)); | 
					
						
							|  |  |  |     auto anim_length = SVGLength::create(realm(), 0, m_center_y.value_or(0)); | 
					
						
							|  |  |  |     return SVGAnimatedLength::create(realm(), move(base_length), move(anim_length)); | 
					
						
							| 
									
										
										
										
											2022-03-22 16:57:00 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // https://www.w3.org/TR/SVG11/shapes.html#EllipseElementRXAttribute
 | 
					
						
							| 
									
										
										
										
											2022-09-02 14:04:59 +02:00
										 |  |  | JS::NonnullGCPtr<SVGAnimatedLength> SVGEllipseElement::rx() const | 
					
						
							| 
									
										
										
										
											2022-03-22 16:57:00 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     // FIXME: Populate the unit type when it is parsed (0 here is "unknown").
 | 
					
						
							|  |  |  |     // FIXME: Create a proper animated value when animations are supported.
 | 
					
						
							| 
									
										
										
										
											2023-08-13 13:05:26 +02:00
										 |  |  |     auto base_length = SVGLength::create(realm(), 0, m_radius_x.value_or(0)); | 
					
						
							|  |  |  |     auto anim_length = SVGLength::create(realm(), 0, m_radius_x.value_or(0)); | 
					
						
							|  |  |  |     return SVGAnimatedLength::create(realm(), move(base_length), move(anim_length)); | 
					
						
							| 
									
										
										
										
											2022-03-22 16:57:00 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // https://www.w3.org/TR/SVG11/shapes.html#EllipseElementRYAttribute
 | 
					
						
							| 
									
										
										
										
											2022-09-02 14:04:59 +02:00
										 |  |  | JS::NonnullGCPtr<SVGAnimatedLength> SVGEllipseElement::ry() const | 
					
						
							| 
									
										
										
										
											2022-03-22 16:57:00 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     // FIXME: Populate the unit type when it is parsed (0 here is "unknown").
 | 
					
						
							|  |  |  |     // FIXME: Create a proper animated value when animations are supported.
 | 
					
						
							| 
									
										
										
										
											2023-08-13 13:05:26 +02:00
										 |  |  |     auto base_length = SVGLength::create(realm(), 0, m_radius_y.value_or(0)); | 
					
						
							|  |  |  |     auto anim_length = SVGLength::create(realm(), 0, m_radius_y.value_or(0)); | 
					
						
							|  |  |  |     return SVGAnimatedLength::create(realm(), move(base_length), move(anim_length)); | 
					
						
							| 
									
										
										
										
											2022-03-22 16:57:00 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-11 16:45:59 +00:00
										 |  |  | } |