| 
									
										
										
										
											2022-02-11 16:56:36 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2022, Sam Atkins <atkinssj@serenityos.org> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-28 13:42:07 +02:00
										 |  |  | #include <LibWeb/HTML/Window.h>
 | 
					
						
							| 
									
										
										
										
											2022-02-11 16:56:36 +00:00
										 |  |  | #include <LibWeb/SVG/AttributeNames.h>
 | 
					
						
							|  |  |  | #include <LibWeb/SVG/AttributeParser.h>
 | 
					
						
							| 
									
										
										
										
											2022-08-28 13:42:07 +02:00
										 |  |  | #include <LibWeb/SVG/SVGLineElement.h>
 | 
					
						
							| 
									
										
										
										
											2022-02-11 16:56:36 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace Web::SVG { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-18 21:00:52 +01:00
										 |  |  | SVGLineElement::SVGLineElement(DOM::Document& document, DOM::QualifiedName qualified_name) | 
					
						
							| 
									
										
										
										
											2022-02-11 16:56:36 +00:00
										 |  |  |     : SVGGeometryElement(document, qualified_name) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-09-03 18:43:24 +02:00
										 |  |  |     set_prototype(&window().cached_web_prototype("SVGLineElement")); | 
					
						
							| 
									
										
										
										
											2022-02-11 16:56:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SVGLineElement::parse_attribute(FlyString const& name, String const& value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     SVGGeometryElement::parse_attribute(name, value); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (name == SVG::AttributeNames::x1) { | 
					
						
							|  |  |  |         m_x1 = AttributeParser::parse_coordinate(value); | 
					
						
							|  |  |  |         m_path.clear(); | 
					
						
							|  |  |  |     } else if (name == SVG::AttributeNames::y1) { | 
					
						
							|  |  |  |         m_y1 = AttributeParser::parse_coordinate(value); | 
					
						
							|  |  |  |         m_path.clear(); | 
					
						
							|  |  |  |     } else if (name == SVG::AttributeNames::x2) { | 
					
						
							|  |  |  |         m_x2 = AttributeParser::parse_coordinate(value); | 
					
						
							|  |  |  |         m_path.clear(); | 
					
						
							|  |  |  |     } else if (name == SVG::AttributeNames::y2) { | 
					
						
							|  |  |  |         m_y2 = AttributeParser::parse_coordinate(value); | 
					
						
							|  |  |  |         m_path.clear(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Gfx::Path& SVGLineElement::get_path() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (m_path.has_value()) | 
					
						
							|  |  |  |         return m_path.value(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Gfx::Path path; | 
					
						
							|  |  |  |     float x1 = m_x1.value_or(0); | 
					
						
							|  |  |  |     float y1 = m_y1.value_or(0); | 
					
						
							|  |  |  |     float x2 = m_x2.value_or(0); | 
					
						
							|  |  |  |     float y2 = m_y2.value_or(0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // 1. perform an absolute moveto operation to absolute location (x1,y1)
 | 
					
						
							|  |  |  |     path.move_to({ x1, y1 }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // 2. perform an absolute lineto operation to absolute location (x2,y2)
 | 
					
						
							|  |  |  |     path.line_to({ x2, y2 }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     m_path = move(path); | 
					
						
							|  |  |  |     return m_path.value(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-22 16:31:52 +00:00
										 |  |  | // https://www.w3.org/TR/SVG11/shapes.html#LineElementX1Attribute
 | 
					
						
							| 
									
										
										
										
											2022-09-02 14:04:59 +02:00
										 |  |  | JS::NonnullGCPtr<SVGAnimatedLength> SVGLineElement::x1() const | 
					
						
							| 
									
										
										
										
											2022-03-22 16:31:52 +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.
 | 
					
						
							| 
									
										
										
										
											2022-09-02 14:04:59 +02:00
										 |  |  |     auto base_length = SVGLength::create(window(), 0, m_x1.value_or(0)); | 
					
						
							|  |  |  |     auto anim_length = SVGLength::create(window(), 0, m_x1.value_or(0)); | 
					
						
							|  |  |  |     return SVGAnimatedLength::create(window(), move(base_length), move(anim_length)); | 
					
						
							| 
									
										
										
										
											2022-03-22 16:31:52 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // https://www.w3.org/TR/SVG11/shapes.html#LineElementY1Attribute
 | 
					
						
							| 
									
										
										
										
											2022-09-02 14:04:59 +02:00
										 |  |  | JS::NonnullGCPtr<SVGAnimatedLength> SVGLineElement::y1() const | 
					
						
							| 
									
										
										
										
											2022-03-22 16:31:52 +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.
 | 
					
						
							| 
									
										
										
										
											2022-09-02 14:04:59 +02:00
										 |  |  |     auto base_length = SVGLength::create(window(), 0, m_y1.value_or(0)); | 
					
						
							|  |  |  |     auto anim_length = SVGLength::create(window(), 0, m_y1.value_or(0)); | 
					
						
							|  |  |  |     return SVGAnimatedLength::create(window(), move(base_length), move(anim_length)); | 
					
						
							| 
									
										
										
										
											2022-03-22 16:31:52 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // https://www.w3.org/TR/SVG11/shapes.html#LineElementX2Attribute
 | 
					
						
							| 
									
										
										
										
											2022-09-02 14:04:59 +02:00
										 |  |  | JS::NonnullGCPtr<SVGAnimatedLength> SVGLineElement::x2() const | 
					
						
							| 
									
										
										
										
											2022-03-22 16:31:52 +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.
 | 
					
						
							| 
									
										
										
										
											2022-09-02 14:04:59 +02:00
										 |  |  |     auto base_length = SVGLength::create(window(), 0, m_x2.value_or(0)); | 
					
						
							|  |  |  |     auto anim_length = SVGLength::create(window(), 0, m_x2.value_or(0)); | 
					
						
							|  |  |  |     return SVGAnimatedLength::create(window(), move(base_length), move(anim_length)); | 
					
						
							| 
									
										
										
										
											2022-03-22 16:31:52 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // https://www.w3.org/TR/SVG11/shapes.html#LineElementY2Attribute
 | 
					
						
							| 
									
										
										
										
											2022-09-02 14:04:59 +02:00
										 |  |  | JS::NonnullGCPtr<SVGAnimatedLength> SVGLineElement::y2() const | 
					
						
							| 
									
										
										
										
											2022-03-22 16:31:52 +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.
 | 
					
						
							| 
									
										
										
										
											2022-09-02 14:04:59 +02:00
										 |  |  |     auto base_length = SVGLength::create(window(), 0, m_y2.value_or(0)); | 
					
						
							|  |  |  |     auto anim_length = SVGLength::create(window(), 0, m_y2.value_or(0)); | 
					
						
							|  |  |  |     return SVGAnimatedLength::create(window(), move(base_length), move(anim_length)); | 
					
						
							| 
									
										
										
										
											2022-03-22 16:31:52 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-11 16:56:36 +00:00
										 |  |  | } |