| 
									
										
										
										
											2024-08-20 15:12:55 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2024, Tim Ledbetter <tim.ledbetter@ladybird.org> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-15 04:01:23 +13:00
										 |  |  | #include <LibGC/Ptr.h>
 | 
					
						
							| 
									
										
										
										
											2024-08-20 15:12:55 +01:00
										 |  |  | #include <LibWeb/Layout/ImageProvider.h>
 | 
					
						
							|  |  |  | #include <LibWeb/SVG/SVGAnimatedLength.h>
 | 
					
						
							|  |  |  | #include <LibWeb/SVG/SVGGraphicsElement.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace Web::SVG { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class SVGImageElement | 
					
						
							|  |  |  |     : public SVGGraphicsElement | 
					
						
							|  |  |  |     , public SVGURIReferenceMixin<SupportsXLinkHref::Yes> | 
					
						
							|  |  |  |     , public Layout::ImageProvider { | 
					
						
							| 
									
										
										
										
											2024-08-29 11:17:12 +01:00
										 |  |  |     WEB_PLATFORM_OBJECT(SVGImageElement, SVGGraphicsElement); | 
					
						
							| 
									
										
										
										
											2024-08-20 15:12:55 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							| 
									
										
										
										
											2024-08-20 15:12:55 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-15 04:01:23 +13:00
										 |  |  |     GC::Ref<SVG::SVGAnimatedLength> x(); | 
					
						
							|  |  |  |     GC::Ref<SVG::SVGAnimatedLength> y(); | 
					
						
							|  |  |  |     GC::Ref<SVG::SVGAnimatedLength> width(); | 
					
						
							|  |  |  |     GC::Ref<SVG::SVGAnimatedLength> height(); | 
					
						
							| 
									
										
										
										
											2024-08-20 15:12:55 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     Gfx::Rect<CSSPixels> bounding_box() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // ^Layout::ImageProvider
 | 
					
						
							|  |  |  |     virtual bool is_image_available() const override; | 
					
						
							|  |  |  |     virtual Optional<CSSPixels> intrinsic_width() const override; | 
					
						
							|  |  |  |     virtual Optional<CSSPixels> intrinsic_height() const override; | 
					
						
							|  |  |  |     virtual Optional<CSSPixelFraction> intrinsic_aspect_ratio() const override; | 
					
						
							|  |  |  |     virtual RefPtr<Gfx::ImmutableBitmap> current_image_bitmap(Gfx::IntSize = {}) const override; | 
					
						
							|  |  |  |     virtual void set_visible_in_viewport(bool) override { } | 
					
						
							| 
									
										
										
										
											2024-11-15 04:01:23 +13:00
										 |  |  |     virtual GC::Ref<DOM::Element const> to_html_element() const override { return *this; } | 
					
						
							| 
									
										
										
										
											2024-08-20 15:12:55 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | protected: | 
					
						
							|  |  |  |     SVGImageElement(DOM::Document&, DOM::QualifiedName); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     virtual void initialize(JS::Realm&) override; | 
					
						
							|  |  |  |     virtual void visit_edges(Cell::Visitor&) override; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     void process_the_url(Optional<String> const& href); | 
					
						
							|  |  |  |     void fetch_the_document(URL::URL const& url); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2024-11-15 04:01:23 +13:00
										 |  |  |     virtual GC::Ptr<Layout::Node> create_layout_node(CSS::StyleProperties) override; | 
					
						
							| 
									
										
										
										
											2024-08-29 21:41:22 +01:00
										 |  |  |     void animate(); | 
					
						
							| 
									
										
										
										
											2024-08-20 15:12:55 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-15 04:01:23 +13:00
										 |  |  |     GC::Ptr<SVG::SVGAnimatedLength> m_x; | 
					
						
							|  |  |  |     GC::Ptr<SVG::SVGAnimatedLength> m_y; | 
					
						
							|  |  |  |     GC::Ptr<SVG::SVGAnimatedLength> m_width; | 
					
						
							|  |  |  |     GC::Ptr<SVG::SVGAnimatedLength> m_height; | 
					
						
							| 
									
										
										
										
											2024-08-20 15:12:55 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-29 21:41:22 +01:00
										 |  |  |     RefPtr<Core::Timer> m_animation_timer; | 
					
						
							|  |  |  |     size_t m_current_frame_index { 0 }; | 
					
						
							|  |  |  |     size_t m_loops_completed { 0 }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-20 15:12:55 +01:00
										 |  |  |     URL::URL m_href; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-15 04:01:23 +13:00
										 |  |  |     GC::Ptr<HTML::SharedResourceRequest> m_resource_request; | 
					
						
							| 
									
										
										
										
											2024-08-20 15:12:55 +01:00
										 |  |  |     Optional<DOM::DocumentLoadEventDelayer> m_load_event_delayer; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |