| 
									
										
										
										
											2021-09-27 00:55:13 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2021, Andreas Kling <kling@serenityos.org> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-08 22:59:15 +02:00
										 |  |  | #include <LibWeb/Geometry/DOMRectReadOnly.h>
 | 
					
						
							| 
									
										
										
										
											2021-09-27 00:55:13 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace Web::Geometry { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // https://drafts.fxtf.org/geometry/#DOMRect
 | 
					
						
							| 
									
										
										
										
											2022-09-04 01:59:58 +02:00
										 |  |  | class DOMRect final : public DOMRectReadOnly { | 
					
						
							|  |  |  |     WEB_PLATFORM_OBJECT(DOMRect, DOMRectReadOnly); | 
					
						
							| 
									
										
										
										
											2023-11-19 19:47:52 +01:00
										 |  |  |     JS_DECLARE_ALLOCATOR(DOMRect); | 
					
						
							| 
									
										
										
										
											2021-09-27 00:55:13 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-04 01:59:58 +02:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2023-02-19 18:21:27 +01:00
										 |  |  |     static WebIDL::ExceptionOr<JS::NonnullGCPtr<DOMRect>> construct_impl(JS::Realm&, double x = 0, double y = 0, double width = 0, double height = 0); | 
					
						
							| 
									
										
										
										
											2023-08-13 13:05:26 +02:00
										 |  |  |     [[nodiscard]] static JS::NonnullGCPtr<DOMRect> create(JS::Realm&, Gfx::FloatRect const&); | 
					
						
							| 
									
										
										
										
											2024-03-10 09:43:00 +01:00
										 |  |  |     [[nodiscard]] static JS::NonnullGCPtr<DOMRect> create(JS::Realm&); | 
					
						
							| 
									
										
										
										
											2023-08-13 13:05:26 +02:00
										 |  |  |     [[nodiscard]] static JS::NonnullGCPtr<DOMRect> from_rect(JS::VM&, DOMRectInit const&); | 
					
						
							| 
									
										
										
										
											2021-09-27 00:55:13 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-04 01:59:58 +02:00
										 |  |  |     virtual ~DOMRect() override; | 
					
						
							| 
									
										
										
										
											2021-09-27 00:55:13 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     double x() const { return m_rect.x(); } | 
					
						
							|  |  |  |     double y() const { return m_rect.y(); } | 
					
						
							|  |  |  |     double width() const { return m_rect.width(); } | 
					
						
							|  |  |  |     double height() const { return m_rect.height(); } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-08 22:59:15 +02:00
										 |  |  |     void set_x(double x) { m_rect.set_x(x); } | 
					
						
							|  |  |  |     void set_y(double y) { m_rect.set_y(y); } | 
					
						
							|  |  |  |     void set_width(double width) { m_rect.set_width(width); } | 
					
						
							|  |  |  |     void set_height(double height) { m_rect.set_height(height); } | 
					
						
							| 
									
										
										
										
											2021-09-27 00:55:13 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-10 09:43:00 +01:00
										 |  |  |     virtual StringView interface_name() const override { return "DOMRect"sv; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 00:55:13 +02:00
										 |  |  | private: | 
					
						
							| 
									
										
										
										
											2022-09-25 18:03:02 -06:00
										 |  |  |     DOMRect(JS::Realm&, double x, double y, double width, double height); | 
					
						
							| 
									
										
										
										
											2024-03-10 09:43:00 +01:00
										 |  |  |     explicit DOMRect(JS::Realm&); | 
					
						
							| 
									
										
										
										
											2023-01-10 06:28:20 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-07 08:41:28 +02:00
										 |  |  |     virtual void initialize(JS::Realm&) override; | 
					
						
							| 
									
										
										
										
											2021-09-27 00:55:13 +02:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2022-09-04 01:59:58 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 00:55:13 +02:00
										 |  |  | } |