| 
									
										
										
										
											2022-10-05 14:32:17 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2022, Andreas Kling <kling@serenityos.org> | 
					
						
							| 
									
										
										
										
											2023-01-12 20:22:14 +00:00
										 |  |  |  * Copyright (c) 2023, Linus Groh <linusg@serenityos.org> | 
					
						
							| 
									
										
										
										
											2022-10-05 14:32:17 +02:00
										 |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <AK/Forward.h>
 | 
					
						
							| 
									
										
										
										
											2023-05-17 12:37:31 -04:00
										 |  |  | #include <AK/Function.h>
 | 
					
						
							| 
									
										
										
										
											2023-12-09 16:57:57 -05:00
										 |  |  | #include <AK/LexicalPath.h>
 | 
					
						
							| 
									
										
										
										
											2023-01-12 20:22:14 +00:00
										 |  |  | #include <AK/String.h>
 | 
					
						
							| 
									
										
										
										
											2022-10-05 14:32:17 +02:00
										 |  |  | #include <LibGfx/Forward.h>
 | 
					
						
							|  |  |  | #include <LibGfx/StandardCursor.h>
 | 
					
						
							|  |  |  | #include <LibWeb/Forward.h>
 | 
					
						
							| 
									
										
										
										
											2023-03-20 18:39:20 -04:00
										 |  |  | #include <LibWeb/HTML/ActivateTab.h>
 | 
					
						
							| 
									
										
										
										
											2023-12-07 15:53:49 +01:00
										 |  |  | #include <LibWeb/HTML/SelectItem.h>
 | 
					
						
							| 
									
										
										
										
											2022-10-05 14:32:17 +02:00
										 |  |  | #include <LibWebView/Forward.h>
 | 
					
						
							| 
									
										
										
										
											2023-01-12 19:27:17 +00:00
										 |  |  | #include <LibWebView/WebContentClient.h>
 | 
					
						
							| 
									
										
										
										
											2022-10-05 14:32:17 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace WebView { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class ViewImplementation { | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     virtual ~ViewImplementation() { } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-12 20:22:14 +00:00
										 |  |  |     struct DOMNodeProperties { | 
					
						
							|  |  |  |         String computed_style_json; | 
					
						
							|  |  |  |         String resolved_style_json; | 
					
						
							|  |  |  |         String custom_properties_json; | 
					
						
							|  |  |  |         String node_box_sizing_json; | 
					
						
							| 
									
										
										
										
											2023-05-21 08:52:03 -05:00
										 |  |  |         String aria_properties_state_json; | 
					
						
							| 
									
										
										
										
											2023-01-12 20:22:14 +00:00
										 |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-17 12:37:31 -04:00
										 |  |  |     void set_url(Badge<WebContentClient>, AK::URL url) { m_url = move(url); } | 
					
						
							| 
									
										
										
										
											2023-01-12 20:30:06 +00:00
										 |  |  |     AK::URL const& url() const { return m_url; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-16 18:24:30 +03:00
										 |  |  |     String const& handle() const { return m_client_state.client_handle; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-20 10:50:05 -04:00
										 |  |  |     void server_did_paint(Badge<WebContentClient>, i32 bitmap_id, Gfx::IntSize size); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-12 20:30:06 +00:00
										 |  |  |     void load(AK::URL const&); | 
					
						
							| 
									
										
										
										
											2023-09-17 17:12:17 +02:00
										 |  |  |     void load_html(StringView); | 
					
						
							| 
									
										
										
										
											2023-01-12 20:30:06 +00:00
										 |  |  |     void load_empty_document(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-12 19:49:49 +00:00
										 |  |  |     void zoom_in(); | 
					
						
							|  |  |  |     void zoom_out(); | 
					
						
							|  |  |  |     void reset_zoom(); | 
					
						
							| 
									
										
										
										
											2023-03-26 19:41:56 +01:00
										 |  |  |     float zoom_level() const { return m_zoom_level; } | 
					
						
							| 
									
										
										
										
											2023-12-12 22:33:36 +01:00
										 |  |  |     float device_pixel_ratio() const { return m_device_pixel_ratio; } | 
					
						
							| 
									
										
										
										
											2023-01-12 20:22:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-12 20:44:42 +00:00
										 |  |  |     void set_preferred_color_scheme(Web::CSS::PreferredColorScheme); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-16 17:49:34 +03:30
										 |  |  |     ByteString selected_text(); | 
					
						
							| 
									
										
										
										
											2023-10-23 16:52:57 -04:00
										 |  |  |     Optional<String> selected_text_with_whitespace_collapsed(); | 
					
						
							| 
									
										
										
										
											2023-01-12 20:42:42 +00:00
										 |  |  |     void select_all(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-12 19:58:00 +00:00
										 |  |  |     void get_source(); | 
					
						
							| 
									
										
										
										
											2023-01-12 19:49:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-12 20:22:14 +00:00
										 |  |  |     void inspect_dom_tree(); | 
					
						
							|  |  |  |     void inspect_accessibility_tree(); | 
					
						
							| 
									
										
										
										
											2023-12-10 21:00:03 +13:00
										 |  |  |     ErrorOr<DOMNodeProperties> inspect_dom_node(i32 node_id, Optional<Web::CSS::Selector::PseudoElement::Type> pseudo_element); | 
					
						
							| 
									
										
										
										
											2023-01-12 20:22:14 +00:00
										 |  |  |     void clear_inspected_dom_node(); | 
					
						
							|  |  |  |     i32 get_hovered_node_id(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-19 10:42:11 -05:00
										 |  |  |     void set_dom_node_text(i32 node_id, String text); | 
					
						
							|  |  |  |     Optional<i32> set_dom_node_tag(i32 node_id, String name); | 
					
						
							| 
									
										
										
										
											2023-12-05 16:49:47 -05:00
										 |  |  |     void add_dom_node_attributes(i32 node_id, Vector<Attribute> attributes); | 
					
						
							| 
									
										
										
										
											2023-11-19 10:42:11 -05:00
										 |  |  |     void replace_dom_node_attribute(i32 node_id, String name, Vector<Attribute> replacement_attributes); | 
					
						
							| 
									
										
										
										
											2023-12-07 11:00:57 -05:00
										 |  |  |     Optional<i32> create_child_element(i32 node_id); | 
					
						
							|  |  |  |     Optional<i32> create_child_text_node(i32 node_id); | 
					
						
							| 
									
										
										
										
											2023-12-07 11:12:43 -05:00
										 |  |  |     Optional<i32> clone_dom_node(i32 node_id); | 
					
						
							| 
									
										
										
										
											2023-12-05 14:59:54 -05:00
										 |  |  |     void remove_dom_node(i32 node_id); | 
					
						
							| 
									
										
										
										
											2023-12-06 10:36:27 -05:00
										 |  |  |     Optional<String> get_dom_node_html(i32 node_id); | 
					
						
							| 
									
										
										
										
											2023-11-19 10:42:11 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-16 17:49:34 +03:30
										 |  |  |     void debug_request(ByteString const& request, ByteString const& argument = {}); | 
					
						
							| 
									
										
										
										
											2023-01-12 20:34:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-12 20:39:08 +00:00
										 |  |  |     void run_javascript(StringView); | 
					
						
							| 
									
										
										
										
											2023-12-16 17:49:34 +03:30
										 |  |  |     void js_console_input(ByteString const& js_source); | 
					
						
							| 
									
										
										
										
											2023-05-17 11:54:36 -04:00
										 |  |  |     void js_console_request_messages(i32 start_index); | 
					
						
							| 
									
										
										
										
											2023-01-12 20:39:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-17 14:23:34 -04:00
										 |  |  |     void alert_closed(); | 
					
						
							|  |  |  |     void confirm_closed(bool accepted); | 
					
						
							|  |  |  |     void prompt_closed(Optional<String> response); | 
					
						
							| 
									
										
										
										
											2023-09-04 11:32:40 +02:00
										 |  |  |     void color_picker_closed(Optional<Color> picked_color); | 
					
						
							| 
									
										
										
										
											2023-12-07 15:53:49 +01:00
										 |  |  |     void select_dropdown_closed(Optional<String> value); | 
					
						
							| 
									
										
										
										
											2023-05-17 14:23:34 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-16 10:51:38 -04:00
										 |  |  |     void toggle_media_play_state(); | 
					
						
							| 
									
										
										
										
											2023-06-16 11:29:54 -04:00
										 |  |  |     void toggle_media_mute_state(); | 
					
						
							| 
									
										
										
										
											2023-06-16 10:51:38 -04:00
										 |  |  |     void toggle_media_loop_state(); | 
					
						
							|  |  |  |     void toggle_media_controls_state(); | 
					
						
							| 
									
										
										
										
											2023-05-15 11:17:58 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-17 09:53:13 -04:00
										 |  |  |     enum class ScreenshotType { | 
					
						
							|  |  |  |         Visible, | 
					
						
							|  |  |  |         Full, | 
					
						
							|  |  |  |     }; | 
					
						
							| 
									
										
										
										
											2023-12-09 16:57:57 -05:00
										 |  |  |     ErrorOr<LexicalPath> take_screenshot(ScreenshotType); | 
					
						
							|  |  |  |     ErrorOr<LexicalPath> take_dom_node_screenshot(i32); | 
					
						
							| 
									
										
										
										
											2023-05-17 09:53:13 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-12 13:25:06 +01:00
										 |  |  |     ErrorOr<LexicalPath> dump_gc_graph(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-26 13:34:59 -04:00
										 |  |  |     void set_user_style_sheet(String source); | 
					
						
							|  |  |  |     // Load Native.css as the User style sheet, which attempts to make WebView content look as close to
 | 
					
						
							|  |  |  |     // native GUI widgets as possible.
 | 
					
						
							|  |  |  |     void use_native_user_style_sheet(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-23 12:22:23 -05:00
										 |  |  |     void enable_inspector_prototype(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-23 10:33:26 -04:00
										 |  |  |     Function<void(Gfx::IntSize)> on_did_layout; | 
					
						
							| 
									
										
										
										
											2023-05-20 10:50:05 -04:00
										 |  |  |     Function<void()> on_ready_to_paint; | 
					
						
							| 
									
										
										
										
											2023-05-17 12:37:31 -04:00
										 |  |  |     Function<String(Web::HTML::ActivateTab)> on_new_tab; | 
					
						
							|  |  |  |     Function<void()> on_activate_tab; | 
					
						
							|  |  |  |     Function<void()> on_close; | 
					
						
							|  |  |  |     Function<void(Gfx::IntPoint screen_position)> on_context_menu_request; | 
					
						
							|  |  |  |     Function<void(const AK::URL&, Gfx::IntPoint screen_position)> on_link_context_menu_request; | 
					
						
							|  |  |  |     Function<void(const AK::URL&, Gfx::IntPoint screen_position, Gfx::ShareableBitmap const&)> on_image_context_menu_request; | 
					
						
							| 
									
										
										
										
											2023-06-16 10:51:38 -04:00
										 |  |  |     Function<void(Gfx::IntPoint screen_position, Web::Page::MediaContextMenu const&)> on_media_context_menu_request; | 
					
						
							| 
									
										
										
										
											2023-05-17 12:37:31 -04:00
										 |  |  |     Function<void(const AK::URL&)> on_link_hover; | 
					
						
							|  |  |  |     Function<void()> on_link_unhover; | 
					
						
							| 
									
										
										
										
											2023-12-16 17:49:34 +03:30
										 |  |  |     Function<void(const AK::URL&, ByteString const& target, unsigned modifiers)> on_link_click; | 
					
						
							|  |  |  |     Function<void(const AK::URL&, ByteString const& target, unsigned modifiers)> on_link_middle_click; | 
					
						
							|  |  |  |     Function<void(ByteString const&)> on_title_change; | 
					
						
							| 
									
										
										
										
											2023-05-17 12:37:31 -04:00
										 |  |  |     Function<void(const AK::URL&, bool)> on_load_start; | 
					
						
							|  |  |  |     Function<void(const AK::URL&)> on_load_finish; | 
					
						
							| 
									
										
										
										
											2023-12-16 17:49:34 +03:30
										 |  |  |     Function<void(ByteString const& path, i32)> on_request_file; | 
					
						
							| 
									
										
										
										
											2023-05-17 12:37:31 -04:00
										 |  |  |     Function<void()> on_navigate_back; | 
					
						
							|  |  |  |     Function<void()> on_navigate_forward; | 
					
						
							|  |  |  |     Function<void()> on_refresh; | 
					
						
							|  |  |  |     Function<void(Gfx::Bitmap const&)> on_favicon_change; | 
					
						
							| 
									
										
										
										
											2023-08-23 10:57:09 -04:00
										 |  |  |     Function<void(i32, i32)> on_scroll_by_delta; | 
					
						
							|  |  |  |     Function<void(Gfx::IntPoint)> on_scroll_to_point; | 
					
						
							| 
									
										
										
										
											2023-08-23 10:43:27 -04:00
										 |  |  |     Function<void(Gfx::StandardCursor)> on_cursor_change; | 
					
						
							| 
									
										
										
										
											2023-12-16 17:49:34 +03:30
										 |  |  |     Function<void(Gfx::IntPoint, ByteString const&)> on_enter_tooltip_area; | 
					
						
							| 
									
										
										
										
											2023-08-23 11:11:39 -04:00
										 |  |  |     Function<void()> on_leave_tooltip_area; | 
					
						
							| 
									
										
										
										
											2023-05-17 14:23:34 -04:00
										 |  |  |     Function<void(String const& message)> on_request_alert; | 
					
						
							|  |  |  |     Function<void(String const& message)> on_request_confirm; | 
					
						
							|  |  |  |     Function<void(String const& message, String const& default_)> on_request_prompt; | 
					
						
							|  |  |  |     Function<void(String const& message)> on_request_set_prompt_text; | 
					
						
							|  |  |  |     Function<void()> on_request_accept_dialog; | 
					
						
							|  |  |  |     Function<void()> on_request_dismiss_dialog; | 
					
						
							| 
									
										
										
										
											2023-12-16 17:49:34 +03:30
										 |  |  |     Function<void(const AK::URL&, ByteString const&)> on_received_source; | 
					
						
							|  |  |  |     Function<void(ByteString const&)> on_received_dom_tree; | 
					
						
							|  |  |  |     Function<void(ByteString const&)> on_received_accessibility_tree; | 
					
						
							| 
									
										
										
										
											2023-08-23 11:25:24 -04:00
										 |  |  |     Function<void(i32 message_id)> on_received_console_message; | 
					
						
							| 
									
										
										
										
											2023-12-16 17:49:34 +03:30
										 |  |  |     Function<void(i32 start_index, Vector<ByteString> const& message_types, Vector<ByteString> const& messages)> on_received_console_messages; | 
					
						
							| 
									
										
										
										
											2023-05-17 12:37:31 -04:00
										 |  |  |     Function<Vector<Web::Cookie::Cookie>(AK::URL const& url)> on_get_all_cookies; | 
					
						
							| 
									
										
										
										
											2023-12-16 17:49:34 +03:30
										 |  |  |     Function<Optional<Web::Cookie::Cookie>(AK::URL const& url, ByteString const& name)> on_get_named_cookie; | 
					
						
							|  |  |  |     Function<ByteString(const AK::URL& url, Web::Cookie::Source source)> on_get_cookie; | 
					
						
							| 
									
										
										
										
											2023-05-17 12:37:31 -04:00
										 |  |  |     Function<void(const AK::URL& url, Web::Cookie::ParsedCookie const& cookie, Web::Cookie::Source source)> on_set_cookie; | 
					
						
							|  |  |  |     Function<void(Web::Cookie::Cookie const& cookie)> on_update_cookie; | 
					
						
							|  |  |  |     Function<void(i32 count_waiting)> on_resource_status_change; | 
					
						
							|  |  |  |     Function<void()> on_restore_window; | 
					
						
							|  |  |  |     Function<Gfx::IntPoint(Gfx::IntPoint)> on_reposition_window; | 
					
						
							|  |  |  |     Function<Gfx::IntSize(Gfx::IntSize)> on_resize_window; | 
					
						
							|  |  |  |     Function<Gfx::IntRect()> on_maximize_window; | 
					
						
							|  |  |  |     Function<Gfx::IntRect()> on_minimize_window; | 
					
						
							|  |  |  |     Function<Gfx::IntRect()> on_fullscreen_window; | 
					
						
							| 
									
										
										
										
											2023-09-04 11:32:40 +02:00
										 |  |  |     Function<void(Color current_color)> on_request_color_picker; | 
					
						
							| 
									
										
										
										
											2023-12-07 15:53:49 +01:00
										 |  |  |     Function<void(Gfx::IntPoint content_position, i32 minimum_width, Vector<Web::HTML::SelectItem> items)> on_request_select_dropdown; | 
					
						
							| 
									
										
										
										
											2023-08-23 11:19:21 -04:00
										 |  |  |     Function<void(bool)> on_finish_handling_input_event; | 
					
						
							| 
									
										
										
										
											2023-09-14 19:17:32 +02:00
										 |  |  |     Function<void()> on_text_test_finish; | 
					
						
							| 
									
										
										
										
											2023-09-19 01:51:48 +02:00
										 |  |  |     Function<void(Gfx::Color)> on_theme_color_change; | 
					
						
							| 
									
										
										
										
											2023-11-10 13:35:41 -05:00
										 |  |  |     Function<void(String const&, String const&, String const&)> on_insert_clipboard_entry; | 
					
						
							| 
									
										
										
										
											2023-11-23 12:22:23 -05:00
										 |  |  |     Function<void()> on_inspector_loaded; | 
					
						
							| 
									
										
										
										
											2023-12-10 21:00:03 +13:00
										 |  |  |     Function<void(i32, Optional<Web::CSS::Selector::PseudoElement::Type> const&)> on_inspector_selected_dom_node; | 
					
						
							| 
									
										
										
										
											2023-12-03 11:49:08 -05:00
										 |  |  |     Function<void(i32, String const&)> on_inspector_set_dom_node_text; | 
					
						
							|  |  |  |     Function<void(i32, String const&)> on_inspector_set_dom_node_tag; | 
					
						
							| 
									
										
										
										
											2023-12-05 16:43:14 -05:00
										 |  |  |     Function<void(i32, Vector<Attribute> const&)> on_inspector_added_dom_node_attributes; | 
					
						
							| 
									
										
										
										
											2023-12-03 11:49:08 -05:00
										 |  |  |     Function<void(i32, String const&, Vector<Attribute> const&)> on_inspector_replaced_dom_node_attribute; | 
					
						
							| 
									
										
										
										
											2023-12-06 09:34:53 -05:00
										 |  |  |     Function<void(i32, Gfx::IntPoint, String const&, Optional<String> const&, Optional<Attribute> const&)> on_inspector_requested_dom_tree_context_menu; | 
					
						
							| 
									
										
										
										
											2023-11-30 19:27:32 -05:00
										 |  |  |     Function<void(String const&)> on_inspector_executed_console_script; | 
					
						
							| 
									
										
										
										
											2023-01-12 19:27:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-14 07:17:00 +01:00
										 |  |  |     virtual Web::DevicePixelRect viewport_rect() const = 0; | 
					
						
							| 
									
										
										
										
											2023-05-17 10:12:13 -04:00
										 |  |  |     virtual Gfx::IntPoint to_content_position(Gfx::IntPoint widget_position) const = 0; | 
					
						
							|  |  |  |     virtual Gfx::IntPoint to_widget_position(Gfx::IntPoint content_position) const = 0; | 
					
						
							| 
									
										
										
										
											2023-05-15 07:59:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-12 19:27:17 +00:00
										 |  |  | protected: | 
					
						
							| 
									
										
										
										
											2023-01-12 19:49:49 +00:00
										 |  |  |     static constexpr auto ZOOM_MIN_LEVEL = 0.3f; | 
					
						
							|  |  |  |     static constexpr auto ZOOM_MAX_LEVEL = 5.0f; | 
					
						
							|  |  |  |     static constexpr auto ZOOM_STEP = 0.1f; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-07 16:44:20 +02:00
										 |  |  |     ViewImplementation(); | 
					
						
							| 
									
										
										
										
											2023-05-15 07:59:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-12 19:27:17 +00:00
										 |  |  |     WebContentClient& client(); | 
					
						
							|  |  |  |     WebContentClient const& client() const; | 
					
						
							| 
									
										
										
										
											2023-01-12 19:49:49 +00:00
										 |  |  |     virtual void update_zoom() = 0; | 
					
						
							| 
									
										
										
										
											2023-01-12 19:27:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-15 07:59:51 +02:00
										 |  |  |     enum class WindowResizeInProgress { | 
					
						
							|  |  |  |         No, | 
					
						
							|  |  |  |         Yes, | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |     void resize_backing_stores_if_needed(WindowResizeInProgress); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     void handle_resize(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-01 12:18:40 -05:00
										 |  |  |     virtual void create_client() { } | 
					
						
							| 
									
										
										
										
											2023-04-15 01:04:28 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-17 09:53:13 -04:00
										 |  |  |     void handle_web_content_process_crash(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-12 19:27:17 +00:00
										 |  |  |     struct SharedBitmap { | 
					
						
							|  |  |  |         i32 id { -1 }; | 
					
						
							| 
									
										
										
										
											2023-12-14 07:17:00 +01:00
										 |  |  |         Web::DevicePixelSize last_painted_size; | 
					
						
							| 
									
										
										
										
											2023-01-12 19:27:17 +00:00
										 |  |  |         RefPtr<Gfx::Bitmap> bitmap; | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     struct ClientState { | 
					
						
							|  |  |  |         RefPtr<WebContentClient> client; | 
					
						
							| 
									
										
										
										
											2023-03-16 18:24:30 +03:00
										 |  |  |         String client_handle; | 
					
						
							| 
									
										
										
										
											2023-01-12 19:27:17 +00:00
										 |  |  |         SharedBitmap front_bitmap; | 
					
						
							|  |  |  |         SharedBitmap back_bitmap; | 
					
						
							|  |  |  |         i32 next_bitmap_id { 0 }; | 
					
						
							|  |  |  |         bool has_usable_bitmap { false }; | 
					
						
							|  |  |  |     } m_client_state; | 
					
						
							| 
									
										
										
										
											2023-01-12 19:49:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-12 20:30:06 +00:00
										 |  |  |     AK::URL m_url; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-12 19:49:49 +00:00
										 |  |  |     float m_zoom_level { 1.0 }; | 
					
						
							|  |  |  |     float m_device_pixel_ratio { 1.0 }; | 
					
						
							| 
									
										
										
										
											2023-05-15 07:59:51 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     RefPtr<Core::Timer> m_backing_store_shrink_timer; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     RefPtr<Gfx::Bitmap> m_backup_bitmap; | 
					
						
							| 
									
										
										
										
											2023-12-14 07:17:00 +01:00
										 |  |  |     Web::DevicePixelSize m_backup_bitmap_size; | 
					
						
							| 
									
										
										
										
											2023-05-27 10:46:45 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  |     size_t m_crash_count = 0; | 
					
						
							|  |  |  |     RefPtr<Core::Timer> m_repeated_crash_timer; | 
					
						
							| 
									
										
										
										
											2022-10-05 14:32:17 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |