| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2021-05-21 18:10:23 +02:00
										 |  |  |  * Copyright (c) 2020-2021, Andreas Kling <kling@serenityos.org> | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2021-04-22 01:24:48 -07:00
										 |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-17 16:20:47 +02:00
										 |  |  | #include "OutOfProcessWebView.h"
 | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  | #include "WebContentClient.h"
 | 
					
						
							| 
									
										
										
										
											2021-01-30 21:57:16 +01:00
										 |  |  | #include <AK/String.h>
 | 
					
						
							| 
									
										
										
										
											2022-02-26 17:50:31 +01:00
										 |  |  | #include <LibFileSystemAccessClient/Client.h>
 | 
					
						
							| 
									
										
										
										
											2021-03-30 12:10:06 -04:00
										 |  |  | #include <LibGUI/Application.h>
 | 
					
						
							| 
									
										
										
										
											2021-04-04 00:12:37 +02:00
										 |  |  | #include <LibGUI/Desktop.h>
 | 
					
						
							| 
									
										
										
										
											2021-02-20 12:05:18 +01:00
										 |  |  | #include <LibGUI/InputBox.h>
 | 
					
						
							| 
									
										
										
										
											2020-09-12 11:56:13 +02:00
										 |  |  | #include <LibGUI/MessageBox.h>
 | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  | #include <LibGUI/Painter.h>
 | 
					
						
							| 
									
										
										
										
											2021-04-13 16:18:20 +02:00
										 |  |  | #include <LibGUI/Scrollbar.h>
 | 
					
						
							| 
									
										
										
										
											2020-07-06 23:32:12 +02:00
										 |  |  | #include <LibGUI/Window.h>
 | 
					
						
							| 
									
										
										
										
											2022-04-09 09:28:38 +02:00
										 |  |  | #include <LibGfx/Font/FontDatabase.h>
 | 
					
						
							| 
									
										
										
										
											2020-12-29 00:44:58 +01:00
										 |  |  | #include <LibGfx/Palette.h>
 | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  | #include <LibGfx/SystemTheme.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-30 10:46:33 +02:00
										 |  |  | REGISTER_WIDGET(WebView, OutOfProcessWebView) | 
					
						
							| 
									
										
										
										
											2020-10-08 21:11:32 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-30 10:46:33 +02:00
										 |  |  | namespace WebView { | 
					
						
							| 
									
										
										
										
											2020-08-24 15:33:18 +04:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-17 16:20:47 +02:00
										 |  |  | OutOfProcessWebView::OutOfProcessWebView() | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-07-06 22:02:38 +02:00
										 |  |  |     set_should_hide_unnecessary_scrollbars(true); | 
					
						
							| 
									
										
										
										
											2020-10-30 10:58:27 +01:00
										 |  |  |     set_focus_policy(GUI::FocusPolicy::StrongFocus); | 
					
						
							| 
									
										
										
										
											2021-01-30 18:20:40 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     create_client(); | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-14 13:21:51 -06:00
										 |  |  | OutOfProcessWebView::~OutOfProcessWebView() = default; | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-22 11:07:40 +01:00
										 |  |  | void OutOfProcessWebView::handle_web_content_process_crash() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     create_client(); | 
					
						
							| 
									
										
										
										
											2021-02-23 20:42:32 +01:00
										 |  |  |     VERIFY(m_client_state.client); | 
					
						
							| 
									
										
										
										
											2021-02-22 11:07:40 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // Don't keep a stale backup bitmap around.
 | 
					
						
							|  |  |  |     m_backup_bitmap = nullptr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     handle_resize(); | 
					
						
							|  |  |  |     StringBuilder builder; | 
					
						
							| 
									
										
										
										
											2022-07-11 17:32:29 +00:00
										 |  |  |     builder.append("<html><head><title>Crashed: "sv); | 
					
						
							| 
									
										
										
										
											2021-02-22 11:07:40 +01:00
										 |  |  |     builder.append(escape_html_entities(m_url.to_string())); | 
					
						
							| 
									
										
										
										
											2022-07-11 17:32:29 +00:00
										 |  |  |     builder.append("</title></head><body>"sv); | 
					
						
							|  |  |  |     builder.append("<h1>Web page crashed"sv); | 
					
						
							| 
									
										
										
										
											2021-02-22 11:07:40 +01:00
										 |  |  |     if (!m_url.host().is_empty()) { | 
					
						
							|  |  |  |         builder.appendff(" on {}", escape_html_entities(m_url.host())); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-07-11 17:32:29 +00:00
										 |  |  |     builder.append("</h1>"sv); | 
					
						
							| 
									
										
										
										
											2021-06-01 11:11:05 +02:00
										 |  |  |     auto escaped_url = escape_html_entities(m_url.to_string()); | 
					
						
							|  |  |  |     builder.appendff("The web page <a href=\"{}\">{}</a> has crashed.<br><br>You can reload the page to try again.", escaped_url, escaped_url); | 
					
						
							| 
									
										
										
										
											2022-07-11 17:32:29 +00:00
										 |  |  |     builder.append("</body></html>"sv); | 
					
						
							| 
									
										
										
										
											2021-02-22 11:07:40 +01:00
										 |  |  |     load_html(builder.to_string(), m_url); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-30 18:20:40 +01:00
										 |  |  | void OutOfProcessWebView::create_client() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_client_state = {}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-14 13:12:49 +00:00
										 |  |  |     m_client_state.client = WebContentClient::try_create(*this).release_value_but_fixme_should_propagate_errors(); | 
					
						
							| 
									
										
										
										
											2021-01-30 18:20:40 +01:00
										 |  |  |     m_client_state.client->on_web_content_process_crash = [this] { | 
					
						
							| 
									
										
										
										
											2021-08-30 18:12:48 +00:00
										 |  |  |         deferred_invoke([this] { | 
					
						
							| 
									
										
										
										
											2021-02-22 11:07:40 +01:00
										 |  |  |             handle_web_content_process_crash(); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2021-01-30 18:20:40 +01:00
										 |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-03 13:33:59 +02:00
										 |  |  |     client().async_update_system_theme(Gfx::current_system_theme_buffer()); | 
					
						
							| 
									
										
										
										
											2022-07-31 18:41:07 +02:00
										 |  |  |     client().async_update_system_fonts(Gfx::FontDatabase::default_font_query(), Gfx::FontDatabase::fixed_width_font_query(), Gfx::FontDatabase::window_title_font_query()); | 
					
						
							| 
									
										
										
										
											2021-06-13 06:16:06 -06:00
										 |  |  |     client().async_update_screen_rects(GUI::Desktop::the().rects(), GUI::Desktop::the().main_screen_index()); | 
					
						
							| 
									
										
										
										
											2021-01-30 18:20:40 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-13 00:33:23 +03:00
										 |  |  | void OutOfProcessWebView::load(const AK::URL& url) | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-07-06 21:46:37 +02:00
										 |  |  |     m_url = url; | 
					
						
							| 
									
										
										
										
											2021-05-03 13:33:59 +02:00
										 |  |  |     client().async_load_url(url); | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-11 00:55:02 +01:00
										 |  |  | void OutOfProcessWebView::load_html(StringView html, const AK::URL& url) | 
					
						
							| 
									
										
										
										
											2020-10-08 21:11:01 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     m_url = url; | 
					
						
							| 
									
										
										
										
											2021-05-03 13:33:59 +02:00
										 |  |  |     client().async_load_html(html, url); | 
					
						
							| 
									
										
										
										
											2020-10-08 21:11:01 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-08 21:58:00 +01:00
										 |  |  | void OutOfProcessWebView::load_empty_document() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_url = {}; | 
					
						
							| 
									
										
										
										
											2021-05-03 13:33:59 +02:00
										 |  |  |     client().async_load_html("", {}); | 
					
						
							| 
									
										
										
										
											2020-10-08 21:58:00 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-17 16:20:47 +02:00
										 |  |  | void OutOfProcessWebView::paint_event(GUI::PaintEvent& event) | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-05-03 20:31:58 +02:00
										 |  |  |     GUI::AbstractScrollableWidget::paint_event(event); | 
					
						
							| 
									
										
										
										
											2020-07-04 23:27:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-08 15:07:57 +00:00
										 |  |  |     // If the available size is empty, we don't have a front or back bitmap to draw.
 | 
					
						
							|  |  |  |     if (available_size().is_empty()) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  |     GUI::Painter painter(*this); | 
					
						
							|  |  |  |     painter.add_clip_rect(event.rect()); | 
					
						
							| 
									
										
										
										
											2020-12-29 00:44:58 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-17 14:30:49 +02:00
										 |  |  |     if (auto* bitmap = m_client_state.has_usable_bitmap ? m_client_state.front_bitmap.bitmap.ptr() : m_backup_bitmap.ptr()) { | 
					
						
							| 
									
										
										
										
											2021-02-09 22:07:36 +01:00
										 |  |  |         painter.add_clip_rect(frame_inner_rect()); | 
					
						
							|  |  |  |         painter.translate(frame_thickness(), frame_thickness()); | 
					
						
							|  |  |  |         painter.blit({ 0, 0 }, *bitmap, bitmap->rect()); | 
					
						
							| 
									
										
										
										
											2020-12-29 00:44:58 +01:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-09 22:07:36 +01:00
										 |  |  |     painter.fill_rect(frame_inner_rect(), palette().base()); | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-17 16:20:47 +02:00
										 |  |  | void OutOfProcessWebView::resize_event(GUI::ResizeEvent& event) | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-05-03 20:31:58 +02:00
										 |  |  |     GUI::AbstractScrollableWidget::resize_event(event); | 
					
						
							| 
									
										
										
										
											2021-01-30 18:20:40 +01:00
										 |  |  |     handle_resize(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-07-05 12:45:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-30 18:20:40 +01:00
										 |  |  | void OutOfProcessWebView::handle_resize() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-05-03 13:33:59 +02:00
										 |  |  |     client().async_set_viewport_rect(Gfx::IntRect({ horizontal_scrollbar().value(), vertical_scrollbar().value() }, available_size())); | 
					
						
							| 
									
										
										
										
											2020-11-08 15:07:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-09 22:07:36 +01:00
										 |  |  |     if (m_client_state.has_usable_bitmap) { | 
					
						
							|  |  |  |         // NOTE: We keep the outgoing front bitmap as a backup so we have something to paint until we get a new one.
 | 
					
						
							| 
									
										
										
										
											2021-09-17 14:30:49 +02:00
										 |  |  |         m_backup_bitmap = m_client_state.front_bitmap.bitmap; | 
					
						
							| 
									
										
										
										
											2021-02-09 22:07:36 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-17 14:54:51 +02:00
										 |  |  |     if (m_client_state.front_bitmap.bitmap) | 
					
						
							| 
									
										
										
										
											2021-09-17 14:30:49 +02:00
										 |  |  |         client().async_remove_backing_store(m_client_state.front_bitmap.id); | 
					
						
							| 
									
										
										
										
											2021-01-16 23:15:32 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-17 14:54:51 +02:00
										 |  |  |     if (m_client_state.back_bitmap.bitmap) | 
					
						
							| 
									
										
										
										
											2021-09-17 14:30:49 +02:00
										 |  |  |         client().async_remove_backing_store(m_client_state.back_bitmap.id); | 
					
						
							| 
									
										
										
										
											2021-01-16 23:15:32 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-17 14:54:51 +02:00
										 |  |  |     m_client_state.front_bitmap = {}; | 
					
						
							|  |  |  |     m_client_state.back_bitmap = {}; | 
					
						
							| 
									
										
										
										
											2021-01-30 18:20:40 +01:00
										 |  |  |     m_client_state.has_usable_bitmap = false; | 
					
						
							| 
									
										
										
										
											2020-11-08 14:53:36 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-08 15:07:57 +00:00
										 |  |  |     if (available_size().is_empty()) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-06 11:44:05 +01:00
										 |  |  |     if (auto new_bitmap_or_error = Gfx::Bitmap::try_create_shareable(Gfx::BitmapFormat::BGRx8888, available_size()); !new_bitmap_or_error.is_error()) { | 
					
						
							|  |  |  |         m_client_state.front_bitmap.bitmap = new_bitmap_or_error.release_value(); | 
					
						
							| 
									
										
										
										
											2021-09-17 14:30:49 +02:00
										 |  |  |         m_client_state.front_bitmap.id = m_client_state.next_bitmap_id++; | 
					
						
							|  |  |  |         client().async_add_backing_store(m_client_state.front_bitmap.id, m_client_state.front_bitmap.bitmap->to_shareable_bitmap()); | 
					
						
							| 
									
										
										
										
											2020-11-08 14:53:36 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-06 11:44:05 +01:00
										 |  |  |     if (auto new_bitmap_or_error = Gfx::Bitmap::try_create_shareable(Gfx::BitmapFormat::BGRx8888, available_size()); !new_bitmap_or_error.is_error()) { | 
					
						
							|  |  |  |         m_client_state.back_bitmap.bitmap = new_bitmap_or_error.release_value(); | 
					
						
							| 
									
										
										
										
											2021-09-17 14:30:49 +02:00
										 |  |  |         m_client_state.back_bitmap.id = m_client_state.next_bitmap_id++; | 
					
						
							|  |  |  |         client().async_add_backing_store(m_client_state.back_bitmap.id, m_client_state.back_bitmap.bitmap->to_shareable_bitmap()); | 
					
						
							| 
									
										
										
										
											2020-11-08 14:53:36 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-07-05 16:31:50 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-04 23:19:32 +02:00
										 |  |  |     request_repaint(); | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-17 16:20:47 +02:00
										 |  |  | void OutOfProcessWebView::keydown_event(GUI::KeyEvent& event) | 
					
						
							| 
									
										
										
										
											2020-08-03 19:58:59 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-05-03 13:33:59 +02:00
										 |  |  |     client().async_key_down(event.key(), event.modifiers(), event.code_point()); | 
					
						
							| 
									
										
										
										
											2020-08-03 19:58:59 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-28 15:39:35 +02:00
										 |  |  | void OutOfProcessWebView::keyup_event(GUI::KeyEvent& event) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_key_up(event.key(), event.modifiers(), event.code_point()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-17 16:20:47 +02:00
										 |  |  | void OutOfProcessWebView::mousedown_event(GUI::MouseEvent& event) | 
					
						
							| 
									
										
										
										
											2020-06-17 18:05:08 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-05-03 13:33:59 +02:00
										 |  |  |     client().async_mouse_down(to_content_position(event.position()), event.button(), event.buttons(), event.modifiers()); | 
					
						
							| 
									
										
										
										
											2020-06-17 18:05:08 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-17 16:20:47 +02:00
										 |  |  | void OutOfProcessWebView::mouseup_event(GUI::MouseEvent& event) | 
					
						
							| 
									
										
										
										
											2020-06-17 18:05:08 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-05-03 13:33:59 +02:00
										 |  |  |     client().async_mouse_up(to_content_position(event.position()), event.button(), event.buttons(), event.modifiers()); | 
					
						
							| 
									
										
										
										
											2020-06-17 18:05:08 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-17 16:20:47 +02:00
										 |  |  | void OutOfProcessWebView::mousemove_event(GUI::MouseEvent& event) | 
					
						
							| 
									
										
										
										
											2020-06-17 18:05:08 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-05-03 13:33:59 +02:00
										 |  |  |     client().async_mouse_move(to_content_position(event.position()), event.button(), event.buttons(), event.modifiers()); | 
					
						
							| 
									
										
										
										
											2020-06-17 18:05:08 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-22 19:45:41 +01:00
										 |  |  | void OutOfProcessWebView::mousewheel_event(GUI::MouseEvent& event) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-13 23:22:28 +01:00
										 |  |  |     client().async_mouse_wheel(to_content_position(event.position()), event.button(), event.buttons(), event.modifiers(), event.wheel_delta_x(), event.wheel_delta_y()); | 
					
						
							| 
									
										
										
										
											2021-02-22 19:45:41 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-14 19:38:32 +02:00
										 |  |  | void OutOfProcessWebView::doubleclick_event(GUI::MouseEvent& event) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_doubleclick(to_content_position(event.position()), event.button(), event.buttons(), event.modifiers()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-08 22:13:54 +01:00
										 |  |  | void OutOfProcessWebView::theme_change_event(GUI::ThemeChangeEvent& event) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-05-03 20:31:58 +02:00
										 |  |  |     GUI::AbstractScrollableWidget::theme_change_event(event); | 
					
						
							| 
									
										
										
										
											2021-05-03 13:33:59 +02:00
										 |  |  |     client().async_update_system_theme(Gfx::current_system_theme_buffer()); | 
					
						
							| 
									
										
										
										
											2020-10-08 22:13:54 +01:00
										 |  |  |     request_repaint(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-13 06:16:06 -06:00
										 |  |  | void OutOfProcessWebView::screen_rects_change_event(GUI::ScreenRectsChangeEvent& event) | 
					
						
							| 
									
										
										
										
											2021-04-04 00:12:37 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-13 06:16:06 -06:00
										 |  |  |     client().async_update_screen_rects(event.rects(), event.main_screen_index()); | 
					
						
							| 
									
										
										
										
											2021-04-04 00:12:37 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-16 23:15:32 +01:00
										 |  |  | void OutOfProcessWebView::notify_server_did_paint(Badge<WebContentClient>, i32 bitmap_id) | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-09-17 14:30:49 +02:00
										 |  |  |     if (m_client_state.back_bitmap.id == bitmap_id) { | 
					
						
							| 
									
										
										
										
											2021-01-30 18:20:40 +01:00
										 |  |  |         m_client_state.has_usable_bitmap = true; | 
					
						
							| 
									
										
										
										
											2021-09-17 14:54:51 +02:00
										 |  |  |         m_client_state.back_bitmap.pending_paints--; | 
					
						
							| 
									
										
										
										
											2021-01-30 18:20:40 +01:00
										 |  |  |         swap(m_client_state.back_bitmap, m_client_state.front_bitmap); | 
					
						
							| 
									
										
										
										
											2021-02-09 22:07:36 +01:00
										 |  |  |         // We don't need the backup bitmap anymore, so drop it.
 | 
					
						
							|  |  |  |         m_backup_bitmap = nullptr; | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  |         update(); | 
					
						
							| 
									
										
										
										
											2021-10-18 10:25:13 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (m_client_state.got_repaint_requests_while_painting) { | 
					
						
							|  |  |  |             m_client_state.got_repaint_requests_while_painting = false; | 
					
						
							|  |  |  |             request_repaint(); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-07-05 16:31:50 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-01 20:58:27 +03:00
										 |  |  | void OutOfProcessWebView::notify_server_did_invalidate_content_rect(Badge<WebContentClient>, [[maybe_unused]] Gfx::IntRect const& content_rect) | 
					
						
							| 
									
										
										
										
											2020-06-17 18:00:18 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-07-04 20:57:57 +02:00
										 |  |  |     request_repaint(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-17 16:20:47 +02:00
										 |  |  | void OutOfProcessWebView::notify_server_did_change_selection(Badge<WebContentClient>) | 
					
						
							| 
									
										
										
										
											2020-07-04 20:57:57 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     request_repaint(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-27 21:12:12 +00:00
										 |  |  | void OutOfProcessWebView::notify_server_did_request_cursor_change(Badge<WebContentClient>, Gfx::StandardCursor cursor) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     set_override_cursor(cursor); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-01 20:58:27 +03:00
										 |  |  | void OutOfProcessWebView::notify_server_did_layout(Badge<WebContentClient>, Gfx::IntSize const& content_size) | 
					
						
							| 
									
										
										
										
											2020-07-04 23:19:32 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     set_content_size(content_size); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-01 20:58:27 +03:00
										 |  |  | void OutOfProcessWebView::notify_server_did_change_title(Badge<WebContentClient>, String const& title) | 
					
						
							| 
									
										
										
										
											2020-07-04 23:40:17 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     if (on_title_change) | 
					
						
							|  |  |  |         on_title_change(title); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-08 11:22:44 +01:00
										 |  |  | void OutOfProcessWebView::notify_server_did_request_scroll(Badge<WebContentClient>, i32 x_delta, i32 y_delta) | 
					
						
							| 
									
										
										
										
											2021-03-02 08:39:07 +11:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-28 21:47:26 -06:00
										 |  |  |     horizontal_scrollbar().increase_slider_by(x_delta); | 
					
						
							|  |  |  |     vertical_scrollbar().increase_slider_by(y_delta); | 
					
						
							| 
									
										
										
										
											2021-03-02 08:39:07 +11:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-08 11:44:36 +01:00
										 |  |  | void OutOfProcessWebView::notify_server_did_request_scroll_to(Badge<WebContentClient>, Gfx::IntPoint const& scroll_position) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     horizontal_scrollbar().set_value(scroll_position.x()); | 
					
						
							|  |  |  |     vertical_scrollbar().set_value(scroll_position.y()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-01 20:58:27 +03:00
										 |  |  | void OutOfProcessWebView::notify_server_did_request_scroll_into_view(Badge<WebContentClient>, Gfx::IntRect const& rect) | 
					
						
							| 
									
										
										
										
											2020-07-05 15:43:43 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     scroll_into_view(rect, true, true); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-01 20:58:27 +03:00
										 |  |  | void OutOfProcessWebView::notify_server_did_enter_tooltip_area(Badge<WebContentClient>, Gfx::IntPoint const&, String const& title) | 
					
						
							| 
									
										
										
										
											2021-03-30 12:10:06 -04:00
										 |  |  | { | 
					
						
							|  |  |  |     GUI::Application::the()->show_tooltip(title, nullptr); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OutOfProcessWebView::notify_server_did_leave_tooltip_area(Badge<WebContentClient>) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     GUI::Application::the()->hide_tooltip(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-13 00:33:23 +03:00
										 |  |  | void OutOfProcessWebView::notify_server_did_hover_link(Badge<WebContentClient>, const AK::URL& url) | 
					
						
							| 
									
										
										
										
											2020-07-05 16:59:20 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     if (on_link_hover) | 
					
						
							|  |  |  |         on_link_hover(url); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-17 16:20:47 +02:00
										 |  |  | void OutOfProcessWebView::notify_server_did_unhover_link(Badge<WebContentClient>) | 
					
						
							| 
									
										
										
										
											2020-07-05 16:59:20 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-09-11 14:28:05 +02:00
										 |  |  |     set_override_cursor(Gfx::StandardCursor::None); | 
					
						
							| 
									
										
										
										
											2020-07-05 16:59:20 +02:00
										 |  |  |     if (on_link_hover) | 
					
						
							|  |  |  |         on_link_hover({}); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-01 20:58:27 +03:00
										 |  |  | void OutOfProcessWebView::notify_server_did_click_link(Badge<WebContentClient>, const AK::URL& url, String const& target, unsigned int modifiers) | 
					
						
							| 
									
										
										
										
											2020-07-06 20:01:46 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     if (on_link_click) | 
					
						
							|  |  |  |         on_link_click(url, target, modifiers); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-01 20:58:27 +03:00
										 |  |  | void OutOfProcessWebView::notify_server_did_middle_click_link(Badge<WebContentClient>, const AK::URL& url, String const& target, unsigned int modifiers) | 
					
						
							| 
									
										
										
										
											2020-07-06 20:01:46 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     if (on_link_middle_click) | 
					
						
							|  |  |  |         on_link_middle_click(url, target, modifiers); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-13 00:33:23 +03:00
										 |  |  | void OutOfProcessWebView::notify_server_did_start_loading(Badge<WebContentClient>, const AK::URL& url) | 
					
						
							| 
									
										
										
										
											2020-07-06 21:58:16 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     if (on_load_start) | 
					
						
							|  |  |  |         on_load_start(url); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-13 00:33:23 +03:00
										 |  |  | void OutOfProcessWebView::notify_server_did_finish_loading(Badge<WebContentClient>, const AK::URL& url) | 
					
						
							| 
									
										
										
										
											2020-12-08 21:44:42 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     if (on_load_finish) | 
					
						
							|  |  |  |         on_load_finish(url); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-01 20:58:27 +03:00
										 |  |  | void OutOfProcessWebView::notify_server_did_request_context_menu(Badge<WebContentClient>, Gfx::IntPoint const& content_position) | 
					
						
							| 
									
										
										
										
											2020-07-07 12:24:29 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     if (on_context_menu_request) | 
					
						
							|  |  |  |         on_context_menu_request(screen_relative_rect().location().translated(to_widget_position(content_position))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-01 20:58:27 +03:00
										 |  |  | void OutOfProcessWebView::notify_server_did_request_link_context_menu(Badge<WebContentClient>, Gfx::IntPoint const& content_position, const AK::URL& url, String const&, unsigned) | 
					
						
							| 
									
										
										
										
											2020-07-07 12:24:29 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     if (on_link_context_menu_request) | 
					
						
							|  |  |  |         on_link_context_menu_request(url, screen_relative_rect().location().translated(to_widget_position(content_position))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-01 20:58:27 +03:00
										 |  |  | void OutOfProcessWebView::notify_server_did_request_image_context_menu(Badge<WebContentClient>, Gfx::IntPoint const& content_position, const AK::URL& url, String const&, unsigned, Gfx::ShareableBitmap const& bitmap) | 
					
						
							| 
									
										
										
										
											2021-04-11 16:49:25 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     if (on_image_context_menu_request) | 
					
						
							|  |  |  |         on_image_context_menu_request(url, screen_relative_rect().location().translated(to_widget_position(content_position)), bitmap); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-01 20:58:27 +03:00
										 |  |  | void OutOfProcessWebView::notify_server_did_request_alert(Badge<WebContentClient>, String const& message) | 
					
						
							| 
									
										
										
										
											2020-09-12 11:56:13 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2022-07-11 17:32:29 +00:00
										 |  |  |     GUI::MessageBox::show(window(), message, "Alert"sv, GUI::MessageBox::Type::Information); | 
					
						
							| 
									
										
										
										
											2020-09-12 11:56:13 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-01 20:58:27 +03:00
										 |  |  | bool OutOfProcessWebView::notify_server_did_request_confirm(Badge<WebContentClient>, String const& message) | 
					
						
							| 
									
										
										
										
											2021-02-10 08:48:28 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2022-07-11 17:32:29 +00:00
										 |  |  |     auto confirm_result = GUI::MessageBox::show(window(), message, "Confirm"sv, GUI::MessageBox::Type::Warning, GUI::MessageBox::InputType::OKCancel); | 
					
						
							| 
									
										
										
										
											2022-05-13 13:10:27 +01:00
										 |  |  |     return confirm_result == GUI::Dialog::ExecResult::OK; | 
					
						
							| 
									
										
										
										
											2021-02-10 08:48:28 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-01 20:58:27 +03:00
										 |  |  | String OutOfProcessWebView::notify_server_did_request_prompt(Badge<WebContentClient>, String const& message, String const& default_) | 
					
						
							| 
									
										
										
										
											2021-02-20 12:05:18 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     String response { default_ }; | 
					
						
							| 
									
										
										
										
											2022-07-11 17:32:29 +00:00
										 |  |  |     if (GUI::InputBox::show(window(), response, message, "Prompt"sv) == GUI::InputBox::ExecResult::OK) | 
					
						
							| 
									
										
										
										
											2021-02-20 12:05:18 +01:00
										 |  |  |         return response; | 
					
						
							|  |  |  |     return {}; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-01 20:58:27 +03:00
										 |  |  | void OutOfProcessWebView::notify_server_did_get_source(const AK::URL& url, String const& source) | 
					
						
							| 
									
										
										
										
											2021-02-23 06:17:23 -06:00
										 |  |  | { | 
					
						
							|  |  |  |     if (on_get_source) | 
					
						
							|  |  |  |         on_get_source(url, source); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-01 20:58:27 +03:00
										 |  |  | void OutOfProcessWebView::notify_server_did_get_dom_tree(String const& dom_tree) | 
					
						
							| 
									
										
										
										
											2021-06-07 16:35:10 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     if (on_get_dom_tree) | 
					
						
							|  |  |  |         on_get_dom_tree(dom_tree); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-27 01:38:12 +01:00
										 |  |  | void OutOfProcessWebView::notify_server_did_get_dom_node_properties(i32 node_id, String const& specified_style, String const& computed_style, String const& custom_properties, String const& node_box_sizing) | 
					
						
							| 
									
										
										
										
											2021-08-27 12:47:30 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     if (on_get_dom_node_properties) | 
					
						
							| 
									
										
										
										
											2022-02-27 01:38:12 +01:00
										 |  |  |         on_get_dom_node_properties(node_id, specified_style, computed_style, custom_properties, node_box_sizing); | 
					
						
							| 
									
										
										
										
											2021-08-27 12:47:30 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-04 11:14:25 +01:00
										 |  |  | void OutOfProcessWebView::notify_server_did_output_js_console_message(i32 message_index) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (on_js_console_new_message) | 
					
						
							|  |  |  |         on_js_console_new_message(message_index); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-01 20:58:27 +03:00
										 |  |  | void OutOfProcessWebView::notify_server_did_get_js_console_messages(i32 start_index, Vector<String> const& message_types, Vector<String> const& messages) | 
					
						
							| 
									
										
										
										
											2021-09-04 11:14:25 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     if (on_get_js_console_messages) | 
					
						
							|  |  |  |         on_get_js_console_messages(start_index, message_types, messages); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-01 20:58:27 +03:00
										 |  |  | void OutOfProcessWebView::notify_server_did_change_favicon(Gfx::Bitmap const& favicon) | 
					
						
							| 
									
										
										
										
											2021-03-26 10:41:25 -04:00
										 |  |  | { | 
					
						
							|  |  |  |     if (on_favicon_change) | 
					
						
							|  |  |  |         on_favicon_change(favicon); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-30 10:46:33 +02:00
										 |  |  | String OutOfProcessWebView::notify_server_did_request_cookie(Badge<WebContentClient>, const AK::URL& url, Web::Cookie::Source source) | 
					
						
							| 
									
										
										
										
											2021-04-11 10:54:11 -04:00
										 |  |  | { | 
					
						
							|  |  |  |     if (on_get_cookie) | 
					
						
							| 
									
										
										
										
											2021-04-13 17:30:41 -04:00
										 |  |  |         return on_get_cookie(url, source); | 
					
						
							| 
									
										
										
										
											2021-04-11 10:54:11 -04:00
										 |  |  |     return {}; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-30 10:46:33 +02:00
										 |  |  | void OutOfProcessWebView::notify_server_did_set_cookie(Badge<WebContentClient>, const AK::URL& url, Web::Cookie::ParsedCookie const& cookie, Web::Cookie::Source source) | 
					
						
							| 
									
										
										
										
											2021-04-11 10:54:11 -04:00
										 |  |  | { | 
					
						
							|  |  |  |     if (on_set_cookie) | 
					
						
							| 
									
										
										
										
											2021-04-13 17:30:41 -04:00
										 |  |  |         on_set_cookie(url, cookie, source); | 
					
						
							| 
									
										
										
										
											2022-02-20 17:03:39 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OutOfProcessWebView::notify_server_did_update_resource_count(i32 count_waiting) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (on_resource_status_change) | 
					
						
							|  |  |  |         on_resource_status_change(count_waiting); | 
					
						
							| 
									
										
										
										
											2021-04-11 10:54:11 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-26 17:50:31 +01:00
										 |  |  | void OutOfProcessWebView::notify_server_did_request_file(Badge<WebContentClient>, String const& path, i32 request_id) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     auto file = FileSystemAccessClient::Client::the().try_request_file_read_only_approved(window(), path); | 
					
						
							|  |  |  |     if (file.is_error()) | 
					
						
							|  |  |  |         client().async_handle_file_return(file.error().code(), {}, request_id); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         client().async_handle_file_return(0, IPC::File(file.value()->leak_fd()), request_id); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-17 16:20:47 +02:00
										 |  |  | void OutOfProcessWebView::did_scroll() | 
					
						
							| 
									
										
										
										
											2020-07-04 23:19:32 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-05-03 13:33:59 +02:00
										 |  |  |     client().async_set_viewport_rect(visible_content_rect()); | 
					
						
							| 
									
										
										
										
											2020-07-04 23:19:32 +02:00
										 |  |  |     request_repaint(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-17 16:20:47 +02:00
										 |  |  | void OutOfProcessWebView::request_repaint() | 
					
						
							| 
									
										
										
										
											2020-07-04 20:57:57 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-10-24 12:28:38 +02:00
										 |  |  |     // If this widget was instantiated but not yet added to a window,
 | 
					
						
							|  |  |  |     // it won't have a back bitmap yet, so we can just skip repaint requests.
 | 
					
						
							| 
									
										
										
										
											2021-09-17 14:30:49 +02:00
										 |  |  |     if (!m_client_state.back_bitmap.bitmap) | 
					
						
							| 
									
										
										
										
											2020-10-24 12:28:38 +02:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2021-09-17 14:54:51 +02:00
										 |  |  |     // Don't request a repaint until pending paint requests have finished.
 | 
					
						
							| 
									
										
										
										
											2021-10-18 10:25:13 +02:00
										 |  |  |     if (m_client_state.back_bitmap.pending_paints) { | 
					
						
							|  |  |  |         m_client_state.got_repaint_requests_while_painting = true; | 
					
						
							| 
									
										
										
										
											2021-09-17 14:54:51 +02:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2021-10-18 10:25:13 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-09-17 14:54:51 +02:00
										 |  |  |     m_client_state.back_bitmap.pending_paints++; | 
					
						
							| 
									
										
										
										
											2021-09-17 14:30:49 +02:00
										 |  |  |     client().async_paint(m_client_state.back_bitmap.bitmap->rect().translated(horizontal_scrollbar().value(), vertical_scrollbar().value()), m_client_state.back_bitmap.id); | 
					
						
							| 
									
										
										
										
											2020-06-17 18:00:18 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-17 16:20:47 +02:00
										 |  |  | WebContentClient& OutOfProcessWebView::client() | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-02-23 20:42:32 +01:00
										 |  |  |     VERIFY(m_client_state.client); | 
					
						
							| 
									
										
										
										
											2021-01-30 18:20:40 +01:00
										 |  |  |     return *m_client_state.client; | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-08-24 15:33:18 +04:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-01 20:58:27 +03:00
										 |  |  | void OutOfProcessWebView::debug_request(String const& request, String const& argument) | 
					
						
							| 
									
										
										
										
											2021-01-31 09:06:25 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-05-03 13:33:59 +02:00
										 |  |  |     client().async_debug_request(request, argument); | 
					
						
							| 
									
										
										
										
											2021-01-31 09:06:25 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-23 06:17:23 -06:00
										 |  |  | void OutOfProcessWebView::get_source() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-05-03 13:33:59 +02:00
										 |  |  |     client().async_get_source(); | 
					
						
							| 
									
										
										
										
											2021-02-23 06:17:23 -06:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-02 20:55:16 -04:00
										 |  |  | String OutOfProcessWebView::serialize_source() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return client().serialize_source(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-07 16:35:10 +01:00
										 |  |  | void OutOfProcessWebView::inspect_dom_tree() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_inspect_dom_tree(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-30 10:46:33 +02:00
										 |  |  | Optional<OutOfProcessWebView::DOMNodeProperties> OutOfProcessWebView::inspect_dom_node(i32 node_id, Optional<Web::CSS::Selector::PseudoElement> pseudo_element) | 
					
						
							| 
									
										
										
										
											2021-08-27 12:31:55 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2022-03-04 16:29:05 +00:00
										 |  |  |     auto response = client().inspect_dom_node(node_id, pseudo_element); | 
					
						
							| 
									
										
										
										
											2021-08-27 12:31:55 +01:00
										 |  |  |     if (!response.has_style()) | 
					
						
							|  |  |  |         return {}; | 
					
						
							|  |  |  |     return DOMNodeProperties { | 
					
						
							|  |  |  |         .specified_values_json = response.specified_style(), | 
					
						
							| 
									
										
										
										
											2021-12-08 11:51:26 +00:00
										 |  |  |         .computed_values_json = response.computed_style(), | 
					
						
							| 
									
										
										
										
											2022-02-27 01:38:12 +01:00
										 |  |  |         .custom_properties_json = response.custom_properties(), | 
					
						
							|  |  |  |         .node_box_sizing_json = response.node_box_sizing() | 
					
						
							| 
									
										
										
										
											2021-08-27 12:31:55 +01:00
										 |  |  |     }; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OutOfProcessWebView::clear_inspected_dom_node() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-03-04 16:29:05 +00:00
										 |  |  |     client().inspect_dom_node(0, {}); | 
					
						
							| 
									
										
										
										
											2021-08-27 12:31:55 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-27 17:33:10 +01:00
										 |  |  | i32 OutOfProcessWebView::get_hovered_node_id() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return client().get_hovered_node_id(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-01 20:58:27 +03:00
										 |  |  | void OutOfProcessWebView::js_console_input(String const& js_source) | 
					
						
							| 
									
										
										
										
											2021-02-27 21:47:14 -06:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-05-03 15:52:56 +02:00
										 |  |  |     client().async_js_console_input(js_source); | 
					
						
							| 
									
										
										
										
											2021-02-27 21:47:14 -06:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-04 11:14:25 +01:00
										 |  |  | void OutOfProcessWebView::js_console_request_messages(i32 start_index) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_js_console_request_messages(start_index); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-24 16:56:42 +02:00
										 |  |  | void OutOfProcessWebView::run_javascript(StringView js_source) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_run_javascript(js_source); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-14 08:32:55 -04:00
										 |  |  | String OutOfProcessWebView::selected_text() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return client().get_selected_text(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-14 08:53:55 -04:00
										 |  |  | void OutOfProcessWebView::select_all() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_select_all(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-08 00:55:35 +02:00
										 |  |  | String OutOfProcessWebView::dump_layout_tree() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return client().dump_layout_tree(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-02 00:14:04 +03:00
										 |  |  | OrderedHashMap<String, String> OutOfProcessWebView::get_local_storage_entries() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return client().get_local_storage_entries(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-07 22:45:43 +02:00
										 |  |  | OrderedHashMap<String, String> OutOfProcessWebView::get_session_storage_entries() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return client().get_session_storage_entries(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-18 12:44:21 +02:00
										 |  |  | Optional<i32> OutOfProcessWebView::get_document_element() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return client().get_document_element(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Optional<Vector<i32>> OutOfProcessWebView::query_selector_all(i32 start_node_id, String const& selector) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return client().query_selector_all(start_node_id, selector); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-03 17:04:24 -04:00
										 |  |  | bool OutOfProcessWebView::is_element_selected(i32 element_id) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return client().is_element_selected(element_id); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-19 16:56:08 +02:00
										 |  |  | Optional<String> OutOfProcessWebView::get_element_attribute(i32 element_id, String const& name) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return client().get_element_attribute(element_id, name); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-19 20:45:25 +02:00
										 |  |  | Optional<String> OutOfProcessWebView::get_element_property(i32 element_id, String const& name) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return client().get_element_property(element_id, name); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-20 12:02:47 +02:00
										 |  |  | String OutOfProcessWebView::get_active_documents_type() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return client().get_active_documents_type(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | String OutOfProcessWebView::get_computed_value_for_element(i32 element_id, String const& property_name) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return client().get_computed_value_for_element(element_id, property_name); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-01 10:10:51 +01:00
										 |  |  | String OutOfProcessWebView::get_element_text(i32 element_id) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return client().get_element_text(element_id); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-20 22:39:41 +02:00
										 |  |  | String OutOfProcessWebView::get_element_tag_name(i32 element_id) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return client().get_element_tag_name(element_id); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-03 12:51:44 -04:00
										 |  |  | Gfx::IntRect OutOfProcessWebView::get_element_rect(i32 element_id) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return client().get_element_rect(element_id); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-03 13:30:11 -04:00
										 |  |  | bool OutOfProcessWebView::is_element_enabled(i32 element_id) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return client().is_element_enabled(element_id); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 11:39:17 +02:00
										 |  |  | void OutOfProcessWebView::set_content_filters(Vector<String> filters) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_set_content_filters(filters); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-08 01:46:47 +04:30
										 |  |  | void OutOfProcessWebView::set_proxy_mappings(Vector<String> proxies, HashMap<String, size_t> mappings) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_set_proxy_mappings(move(proxies), move(mappings)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-26 17:00:10 +01:00
										 |  |  | void OutOfProcessWebView::set_preferred_color_scheme(Web::CSS::PreferredColorScheme color_scheme) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_set_preferred_color_scheme(color_scheme); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-12 23:49:23 +02:00
										 |  |  | void OutOfProcessWebView::set_is_webdriver_active(bool is_webdriver_enabled) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_set_is_webdriver_active(is_webdriver_enabled); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-01 14:55:53 -04:00
										 |  |  | void OutOfProcessWebView::set_window_position(Gfx::IntPoint const& position) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_set_window_position(position); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OutOfProcessWebView::set_window_size(Gfx::IntSize const& size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_set_window_size(size); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-02 12:58:22 -04:00
										 |  |  | Gfx::ShareableBitmap OutOfProcessWebView::take_screenshot() const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (auto* bitmap = m_client_state.has_usable_bitmap ? m_client_state.front_bitmap.bitmap.ptr() : m_backup_bitmap.ptr()) | 
					
						
							|  |  |  |         return bitmap->to_shareable_bitmap(); | 
					
						
							|  |  |  |     return {}; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-02 18:08:48 +00:00
										 |  |  | Messages::WebContentServer::WebdriverExecuteScriptResponse OutOfProcessWebView::webdriver_execute_script(String const& body, Vector<String> const& json_arguments, Optional<u64> const& timeout, bool async) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return client().webdriver_execute_script(body, json_arguments, timeout, async); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-06 19:03:13 +01:00
										 |  |  | void OutOfProcessWebView::focusin_event(GUI::FocusEvent&) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_set_has_focus(true); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OutOfProcessWebView::focusout_event(GUI::FocusEvent&) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_set_has_focus(false); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-19 20:50:33 +02:00
										 |  |  | void OutOfProcessWebView::show_event(GUI::ShowEvent&) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_set_system_visibility_state(true); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OutOfProcessWebView::hide_event(GUI::HideEvent&) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_set_system_visibility_state(false); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-24 15:33:18 +04:30
										 |  |  | } |