2020-06-17 17:31:42 +02:00
|
|
|
/*
|
2022-04-06 15:15:07 +02:00
|
|
|
* Copyright (c) 2020-2022, 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
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2020-07-06 21:18:16 +02:00
|
|
|
#include <AK/URL.h>
|
2021-05-03 20:31:58 +02:00
|
|
|
#include <LibGUI/AbstractScrollableWidget.h>
|
2020-06-17 17:31:42 +02:00
|
|
|
#include <LibGUI/Widget.h>
|
2022-03-04 16:29:05 +00:00
|
|
|
#include <LibWeb/CSS/Selector.h>
|
2021-10-26 17:00:10 +01:00
|
|
|
#include <LibWeb/Page/Page.h>
|
2020-06-17 17:31:42 +02:00
|
|
|
|
2022-04-30 10:46:33 +02:00
|
|
|
namespace WebView {
|
2020-08-24 15:33:18 +04:30
|
|
|
|
2020-06-17 17:31:42 +02:00
|
|
|
class WebContentClient;
|
|
|
|
|
|
2022-04-06 15:15:07 +02:00
|
|
|
class OutOfProcessWebView final : public GUI::AbstractScrollableWidget {
|
2020-08-17 16:20:47 +02:00
|
|
|
C_OBJECT(OutOfProcessWebView);
|
2020-06-17 17:31:42 +02:00
|
|
|
|
|
|
|
|
public:
|
2020-08-17 16:20:47 +02:00
|
|
|
virtual ~OutOfProcessWebView() override;
|
2020-06-17 17:31:42 +02:00
|
|
|
|
2021-09-13 00:33:23 +03:00
|
|
|
AK::URL url() const { return m_url; }
|
|
|
|
|
void load(const AK::URL&);
|
2020-06-17 17:31:42 +02:00
|
|
|
|
2021-11-11 00:55:02 +01:00
|
|
|
void load_html(StringView, const AK::URL&);
|
2020-10-08 21:58:00 +01:00
|
|
|
void load_empty_document();
|
2020-10-08 21:11:01 +01:00
|
|
|
|
2022-04-01 20:58:27 +03:00
|
|
|
void debug_request(String const& request, String const& argument = {});
|
2021-02-23 06:17:23 -06:00
|
|
|
void get_source();
|
2021-08-27 12:31:55 +01:00
|
|
|
|
2021-06-07 16:35:10 +01:00
|
|
|
void inspect_dom_tree();
|
2021-08-27 12:31:55 +01:00
|
|
|
struct DOMNodeProperties {
|
|
|
|
|
String specified_values_json;
|
|
|
|
|
String computed_values_json;
|
2021-12-08 11:51:26 +00:00
|
|
|
String custom_properties_json;
|
2022-02-27 01:38:12 +01:00
|
|
|
String node_box_sizing_json;
|
2021-08-27 12:31:55 +01:00
|
|
|
};
|
2022-04-30 10:46:33 +02:00
|
|
|
Optional<DOMNodeProperties> inspect_dom_node(i32 node_id, Optional<Web::CSS::Selector::PseudoElement>);
|
2021-08-27 12:31:55 +01:00
|
|
|
void clear_inspected_dom_node();
|
2021-08-27 17:33:10 +01:00
|
|
|
i32 get_hovered_node_id();
|
2021-08-27 12:31:55 +01:00
|
|
|
|
2022-04-01 20:58:27 +03:00
|
|
|
void js_console_input(String const& js_source);
|
2021-09-04 11:14:25 +01:00
|
|
|
void js_console_request_messages(i32 start_index);
|
2021-01-31 09:06:25 +01:00
|
|
|
|
2021-08-24 16:56:42 +02:00
|
|
|
void run_javascript(StringView);
|
|
|
|
|
|
2021-07-14 08:32:55 -04:00
|
|
|
String selected_text();
|
2021-07-14 08:53:55 -04:00
|
|
|
void select_all();
|
2021-07-14 08:32:55 -04:00
|
|
|
|
2021-09-08 00:55:35 +02:00
|
|
|
String dump_layout_tree();
|
|
|
|
|
|
2022-04-02 00:14:04 +03:00
|
|
|
OrderedHashMap<String, String> get_local_storage_entries();
|
2022-05-07 22:45:43 +02:00
|
|
|
OrderedHashMap<String, String> get_session_storage_entries();
|
2022-04-02 00:14:04 +03:00
|
|
|
|
2021-09-27 11:39:17 +02:00
|
|
|
void set_content_filters(Vector<String>);
|
2022-04-08 01:46:47 +04:30
|
|
|
void set_proxy_mappings(Vector<String> proxies, HashMap<String, size_t> mappings);
|
2021-10-26 17:00:10 +01:00
|
|
|
void set_preferred_color_scheme(Web::CSS::PreferredColorScheme);
|
2021-09-27 11:39:17 +02:00
|
|
|
|
2022-04-06 15:15:07 +02:00
|
|
|
Function<void(Gfx::IntPoint const& screen_position)> on_context_menu_request;
|
|
|
|
|
Function<void(const AK::URL&, String const& target, unsigned modifiers)> on_link_click;
|
|
|
|
|
Function<void(const AK::URL&, Gfx::IntPoint const& screen_position)> on_link_context_menu_request;
|
|
|
|
|
Function<void(const AK::URL&, Gfx::IntPoint const& screen_position, Gfx::ShareableBitmap const&)> on_image_context_menu_request;
|
|
|
|
|
Function<void(const AK::URL&, String const& target, unsigned modifiers)> on_link_middle_click;
|
|
|
|
|
Function<void(const AK::URL&)> on_link_hover;
|
|
|
|
|
Function<void(String const&)> on_title_change;
|
|
|
|
|
Function<void(const AK::URL&)> on_load_start;
|
|
|
|
|
Function<void(const AK::URL&)> on_load_finish;
|
|
|
|
|
Function<void(Gfx::Bitmap const&)> on_favicon_change;
|
|
|
|
|
Function<void(const AK::URL&)> on_url_drop;
|
2022-04-30 10:46:33 +02:00
|
|
|
Function<void(Web::DOM::Document*)> on_set_document;
|
2022-04-06 15:15:07 +02:00
|
|
|
Function<void(const AK::URL&, String const&)> on_get_source;
|
|
|
|
|
Function<void(String const&)> on_get_dom_tree;
|
|
|
|
|
Function<void(i32 node_id, String const& specified_style, String const& computed_style, String const& custom_properties, String const& node_box_sizing)> on_get_dom_node_properties;
|
|
|
|
|
Function<void(i32 message_id)> on_js_console_new_message;
|
|
|
|
|
Function<void(i32 start_index, Vector<String> const& message_types, Vector<String> const& messages)> on_get_js_console_messages;
|
2022-04-30 10:46:33 +02:00
|
|
|
Function<String(const AK::URL& url, Web::Cookie::Source source)> on_get_cookie;
|
|
|
|
|
Function<void(const AK::URL& url, Web::Cookie::ParsedCookie const& cookie, Web::Cookie::Source source)> on_set_cookie;
|
2022-04-06 15:15:07 +02:00
|
|
|
Function<void(i32 count_waiting)> on_resource_status_change;
|
|
|
|
|
|
2022-04-01 20:58:27 +03:00
|
|
|
void notify_server_did_layout(Badge<WebContentClient>, Gfx::IntSize const& content_size);
|
2021-01-16 23:15:32 +01:00
|
|
|
void notify_server_did_paint(Badge<WebContentClient>, i32 bitmap_id);
|
2022-04-01 20:58:27 +03:00
|
|
|
void notify_server_did_invalidate_content_rect(Badge<WebContentClient>, Gfx::IntRect const&);
|
2020-07-04 20:57:57 +02:00
|
|
|
void notify_server_did_change_selection(Badge<WebContentClient>);
|
2021-02-27 21:12:12 +00:00
|
|
|
void notify_server_did_request_cursor_change(Badge<WebContentClient>, Gfx::StandardCursor cursor);
|
2022-04-01 20:58:27 +03:00
|
|
|
void notify_server_did_change_title(Badge<WebContentClient>, String const&);
|
2021-09-08 11:22:44 +01:00
|
|
|
void notify_server_did_request_scroll(Badge<WebContentClient>, i32, i32);
|
2021-09-08 11:44:36 +01:00
|
|
|
void notify_server_did_request_scroll_to(Badge<WebContentClient>, Gfx::IntPoint const&);
|
2022-04-01 20:58:27 +03:00
|
|
|
void notify_server_did_request_scroll_into_view(Badge<WebContentClient>, Gfx::IntRect const&);
|
|
|
|
|
void notify_server_did_enter_tooltip_area(Badge<WebContentClient>, Gfx::IntPoint const&, String const&);
|
2021-03-30 12:10:06 -04:00
|
|
|
void notify_server_did_leave_tooltip_area(Badge<WebContentClient>);
|
2021-09-13 00:33:23 +03:00
|
|
|
void notify_server_did_hover_link(Badge<WebContentClient>, const AK::URL&);
|
2020-07-05 16:59:20 +02:00
|
|
|
void notify_server_did_unhover_link(Badge<WebContentClient>);
|
2022-04-01 20:58:27 +03:00
|
|
|
void notify_server_did_click_link(Badge<WebContentClient>, const AK::URL&, String const& target, unsigned modifiers);
|
|
|
|
|
void notify_server_did_middle_click_link(Badge<WebContentClient>, const AK::URL&, String const& target, unsigned modifiers);
|
2021-09-13 00:33:23 +03:00
|
|
|
void notify_server_did_start_loading(Badge<WebContentClient>, const AK::URL&);
|
|
|
|
|
void notify_server_did_finish_loading(Badge<WebContentClient>, const AK::URL&);
|
2022-04-01 20:58:27 +03:00
|
|
|
void notify_server_did_request_context_menu(Badge<WebContentClient>, Gfx::IntPoint const&);
|
|
|
|
|
void notify_server_did_request_link_context_menu(Badge<WebContentClient>, Gfx::IntPoint const&, const AK::URL&, String const& target, unsigned modifiers);
|
|
|
|
|
void notify_server_did_request_image_context_menu(Badge<WebContentClient>, Gfx::IntPoint const&, const AK::URL&, String const& target, unsigned modifiers, Gfx::ShareableBitmap const&);
|
|
|
|
|
void notify_server_did_request_alert(Badge<WebContentClient>, String const& message);
|
|
|
|
|
bool notify_server_did_request_confirm(Badge<WebContentClient>, String const& message);
|
|
|
|
|
String notify_server_did_request_prompt(Badge<WebContentClient>, String const& message, String const& default_);
|
|
|
|
|
void notify_server_did_get_source(const AK::URL& url, String const& source);
|
|
|
|
|
void notify_server_did_get_dom_tree(String const& dom_tree);
|
2022-02-27 01:38:12 +01:00
|
|
|
void 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-09-04 11:14:25 +01:00
|
|
|
void notify_server_did_output_js_console_message(i32 message_index);
|
|
|
|
|
void notify_server_did_get_js_console_messages(i32 start_index, Vector<String> const& message_types, Vector<String> const& messages);
|
2022-04-01 20:58:27 +03:00
|
|
|
void notify_server_did_change_favicon(Gfx::Bitmap const& favicon);
|
2022-04-30 10:46:33 +02:00
|
|
|
String notify_server_did_request_cookie(Badge<WebContentClient>, const AK::URL& url, Web::Cookie::Source source);
|
|
|
|
|
void notify_server_did_set_cookie(Badge<WebContentClient>, const AK::URL& url, Web::Cookie::ParsedCookie const& cookie, Web::Cookie::Source source);
|
2022-02-20 17:03:39 -05:00
|
|
|
void notify_server_did_update_resource_count(i32 count_waiting);
|
2022-02-26 17:50:31 +01:00
|
|
|
void notify_server_did_request_file(Badge<WebContentClient>, String const& path, i32);
|
2020-06-17 17:31:42 +02:00
|
|
|
|
|
|
|
|
private:
|
2020-08-17 16:20:47 +02:00
|
|
|
OutOfProcessWebView();
|
2020-06-17 17:31:42 +02:00
|
|
|
|
2020-07-04 23:19:32 +02:00
|
|
|
// ^Widget
|
2020-06-17 17:31:42 +02:00
|
|
|
virtual void paint_event(GUI::PaintEvent&) override;
|
|
|
|
|
virtual void resize_event(GUI::ResizeEvent&) override;
|
2020-06-17 18:05:08 +02:00
|
|
|
virtual void mousedown_event(GUI::MouseEvent&) override;
|
|
|
|
|
virtual void mouseup_event(GUI::MouseEvent&) override;
|
|
|
|
|
virtual void mousemove_event(GUI::MouseEvent&) override;
|
2021-02-22 19:45:41 +01:00
|
|
|
virtual void mousewheel_event(GUI::MouseEvent&) override;
|
2022-06-14 19:38:32 +02:00
|
|
|
virtual void doubleclick_event(GUI::MouseEvent&) override;
|
2020-08-03 19:58:59 +02:00
|
|
|
virtual void keydown_event(GUI::KeyEvent&) override;
|
2021-09-28 15:39:35 +02:00
|
|
|
virtual void keyup_event(GUI::KeyEvent&) override;
|
2020-10-08 22:13:54 +01:00
|
|
|
virtual void theme_change_event(GUI::ThemeChangeEvent&) override;
|
2021-06-13 06:16:06 -06:00
|
|
|
virtual void screen_rects_change_event(GUI::ScreenRectsChangeEvent&) override;
|
2022-02-06 19:03:13 +01:00
|
|
|
virtual void focusin_event(GUI::FocusEvent&) override;
|
|
|
|
|
virtual void focusout_event(GUI::FocusEvent&) override;
|
2022-09-19 20:50:33 +02:00
|
|
|
virtual void show_event(GUI::ShowEvent&) override;
|
|
|
|
|
virtual void hide_event(GUI::HideEvent&) override;
|
2020-06-17 17:31:42 +02:00
|
|
|
|
2021-05-03 20:31:58 +02:00
|
|
|
// ^AbstractScrollableWidget
|
2020-07-04 23:19:32 +02:00
|
|
|
virtual void did_scroll() override;
|
|
|
|
|
|
2020-07-04 20:57:57 +02:00
|
|
|
void request_repaint();
|
2021-01-30 18:20:40 +01:00
|
|
|
void handle_resize();
|
2020-07-04 20:57:57 +02:00
|
|
|
|
2021-01-30 18:20:40 +01:00
|
|
|
void create_client();
|
2020-06-17 17:31:42 +02:00
|
|
|
WebContentClient& client();
|
|
|
|
|
|
2021-02-22 11:07:40 +01:00
|
|
|
void handle_web_content_process_crash();
|
|
|
|
|
|
2021-09-13 00:33:23 +03:00
|
|
|
AK::URL m_url;
|
2020-07-06 21:46:37 +02:00
|
|
|
|
2021-09-17 14:30:49 +02:00
|
|
|
struct SharedBitmap {
|
|
|
|
|
i32 id { -1 };
|
2021-09-17 14:54:51 +02:00
|
|
|
i32 pending_paints { 0 };
|
2021-09-17 14:30:49 +02:00
|
|
|
RefPtr<Gfx::Bitmap> bitmap;
|
|
|
|
|
};
|
|
|
|
|
|
2021-01-30 18:20:40 +01:00
|
|
|
struct ClientState {
|
|
|
|
|
RefPtr<WebContentClient> client;
|
2021-09-17 14:30:49 +02:00
|
|
|
SharedBitmap front_bitmap;
|
|
|
|
|
SharedBitmap back_bitmap;
|
2021-01-30 18:20:40 +01:00
|
|
|
i32 next_bitmap_id { 0 };
|
|
|
|
|
bool has_usable_bitmap { false };
|
2021-10-18 10:25:13 +02:00
|
|
|
bool got_repaint_requests_while_painting { false };
|
2021-01-30 18:20:40 +01:00
|
|
|
} m_client_state;
|
2021-02-09 22:07:36 +01:00
|
|
|
|
|
|
|
|
RefPtr<Gfx::Bitmap> m_backup_bitmap;
|
2020-06-17 17:31:42 +02:00
|
|
|
};
|
2020-08-24 15:33:18 +04:30
|
|
|
|
|
|
|
|
}
|