| 
									
										
										
										
											2023-02-28 00:23:53 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2023, Luke Wilde <lukew@serenityos.org> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-09 16:05:03 -07:00
										 |  |  | #include <LibWeb/Bindings/PlatformObject.h>
 | 
					
						
							| 
									
										
										
										
											2023-02-28 00:23:53 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace Web::HTML { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // https://html.spec.whatwg.org/multipage/system-state.html#dom-plugin
 | 
					
						
							| 
									
										
										
										
											2024-01-09 16:05:03 -07:00
										 |  |  | class Plugin : public Bindings::PlatformObject { | 
					
						
							|  |  |  |     WEB_PLATFORM_OBJECT(Plugin, Bindings::PlatformObject); | 
					
						
							| 
									
										
										
										
											2024-11-15 04:01:23 +13:00
										 |  |  |     GC_DECLARE_ALLOCATOR(Plugin); | 
					
						
							| 
									
										
										
										
											2023-02-28 00:23:53 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     virtual ~Plugin() override; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     String const& name() const; | 
					
						
							| 
									
										
										
										
											2023-08-07 11:12:38 +02:00
										 |  |  |     String description() const; | 
					
						
							|  |  |  |     String filename() const; | 
					
						
							| 
									
										
										
										
											2023-02-28 00:23:53 +00:00
										 |  |  |     size_t length() const; | 
					
						
							| 
									
										
										
										
											2024-11-15 04:01:23 +13:00
										 |  |  |     GC::Ptr<MimeType> item(u32 index) const; | 
					
						
							|  |  |  |     GC::Ptr<MimeType> named_item(FlyString const& name) const; | 
					
						
							| 
									
										
										
										
											2023-02-28 00:23:53 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2023-02-28 13:14:51 +01:00
										 |  |  |     Plugin(JS::Realm&, String name); | 
					
						
							| 
									
										
										
										
											2023-02-28 00:23:53 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // https://html.spec.whatwg.org/multipage/system-state.html#concept-plugin-name
 | 
					
						
							|  |  |  |     String m_name; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-07 08:41:28 +02:00
										 |  |  |     virtual void initialize(JS::Realm&) override; | 
					
						
							| 
									
										
										
										
											2023-02-28 00:23:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-09 16:05:03 -07:00
										 |  |  |     // ^Bindings::PlatformObject
 | 
					
						
							| 
									
										
										
										
											2023-12-24 20:59:00 +01:00
										 |  |  |     virtual Vector<FlyString> supported_property_names() const override; | 
					
						
							| 
									
										
										
										
											2024-07-25 18:15:51 +12:00
										 |  |  |     virtual Optional<JS::Value> item_value(size_t index) const override; | 
					
						
							| 
									
										
										
										
											2024-07-25 17:36:10 +12:00
										 |  |  |     virtual JS::Value named_item_value(FlyString const& name) const override; | 
					
						
							| 
									
										
										
										
											2023-02-28 00:23:53 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |