2020-06-17 12:31:42 -03:00
|
|
|
/*
|
2022-04-06 10:15:07 -03:00
|
|
|
* Copyright (c) 2020-2022, Andreas Kling <kling@serenityos.org>
|
2020-06-17 12:31:42 -03:00
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-06-17 12:31:42 -03:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2020-07-06 16:18:16 -03:00
|
|
|
#include <AK/URL.h>
|
2021-05-03 15:31:58 -03:00
|
|
|
#include <LibGUI/AbstractScrollableWidget.h>
|
2020-06-17 12:31:42 -03:00
|
|
|
#include <LibGUI/Widget.h>
|
2022-03-04 13:29:05 -03:00
|
|
|
#include <LibWeb/CSS/Selector.h>
|
2021-10-26 13:00:10 -03:00
|
|
|
#include <LibWeb/Page/Page.h>
|
2020-06-17 12:31:42 -03:00
|
|
|
|
2022-04-30 05:46:33 -03:00
|
|
|
namespace WebView {
|
2020-08-24 08:03:18 -03:00
|
|
|
|
2020-06-17 12:31:42 -03:00
|
|
|
class WebContentClient;
|
|
|
|
|
|
2022-04-06 10:15:07 -03:00
|
|
|
class OutOfProcessWebView final : public GUI::AbstractScrollableWidget {
|
2020-08-17 11:20:47 -03:00
|
|
|
C_OBJECT(OutOfProcessWebView);
|
2020-06-17 12:31:42 -03:00
|
|
|
|
|
|
|
|
public:
|
2020-08-17 11:20:47 -03:00
|
|
|
virtual ~OutOfProcessWebView() override;
|
2020-06-17 12:31:42 -03:00
|
|
|
|
2021-09-12 18:33:23 -03:00
|
|
|
AK::URL url() const { return m_url; }
|
|
|
|
|
void load(const AK::URL&);
|
2020-06-17 12:31:42 -03:00
|
|
|
|
2021-11-10 20:55:02 -03:00
|
|
|
void load_html(StringView, const AK::URL&);
|
2020-10-08 17:58:00 -03:00
|
|
|
void load_empty_document();
|
2020-10-08 17:11:01 -03:00
|
|
|
|
2022-04-01 14:58:27 -03:00
|
|
|
void debug_request(String const& request, String const& argument = {});
|
2021-02-23 09:17:23 -03:00
|
|
|
void get_source();
|
2021-08-27 08:31:55 -03:00
|
|
|
|
2021-06-07 12:35:10 -03:00
|
|
|
void inspect_dom_tree();
|
2021-08-27 08:31:55 -03:00
|
|
|
struct DOMNodeProperties {
|
|
|
|
|
String specified_values_json;
|
|
|
|
|
String computed_values_json;
|
2021-12-08 08:51:26 -03:00
|
|
|
String custom_properties_json;
|
2022-02-26 21:38:12 -03:00
|
|
|
String node_box_sizing_json;
|
2021-08-27 08:31:55 -03:00
|
|
|
};
|
2022-04-30 05:46:33 -03:00
|
|
|
Optional<DOMNodeProperties> inspect_dom_node(i32 node_id, Optional<Web::CSS::Selector::PseudoElement>);
|
2021-08-27 08:31:55 -03:00
|
|
|
void clear_inspected_dom_node();
|
2021-08-27 13:33:10 -03:00
|
|
|
i32 get_hovered_node_id();
|
2021-08-27 08:31:55 -03:00
|
|
|
|
2022-04-01 14:58:27 -03:00
|
|
|
void js_console_input(String const& js_source);
|
2021-09-04 07:14:25 -03:00
|
|
|
void js_console_request_messages(i32 start_index);
|
2021-01-31 05:06:25 -03:00
|
|
|
|
2021-08-24 11:56:42 -03:00
|
|
|
void run_javascript(StringView);
|
|
|
|
|
|
2021-07-14 09:32:55 -03:00
|
|
|
String selected_text();
|
2021-07-14 09:53:55 -03:00
|
|
|
void select_all();
|
2021-07-14 09:32:55 -03:00
|
|
|
|
2021-09-07 19:55:35 -03:00
|
|
|
String dump_layout_tree();
|
|
|
|
|
|
2022-04-01 18:14:04 -03:00
|
|
|
OrderedHashMap<String, String> get_local_storage_entries();
|
2022-05-07 17:45:43 -03:00
|
|
|
OrderedHashMap<String, String> get_session_storage_entries();
|
2022-04-01 18:14:04 -03:00
|
|
|
|
2021-09-27 06:39:17 -03:00
|
|
|
void set_content_filters(Vector<String>);
|
2022-04-07 18:16:47 -03:00
|
|
|
void set_proxy_mappings(Vector<String> proxies, HashMap<String, size_t> mappings);
|
2021-10-26 13:00:10 -03:00
|
|
|
void set_preferred_color_scheme(Web::CSS::PreferredColorScheme);
|
2021-09-27 06:39:17 -03:00
|
|
|
|
2022-04-06 10:15:07 -03: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 05:46:33 -03:00
|
|
|
Function<void(Web::DOM::Document*)> on_set_document;
|
2022-04-06 10:15:07 -03: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 05:46:33 -03: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 10:15:07 -03:00
|
|
|
Function<void(i32 count_waiting)> on_resource_status_change;
|
|
|
|
|
|
2022-04-01 14:58:27 -03:00
|
|
|
void notify_server_did_layout(Badge<WebContentClient>, Gfx::IntSize const& content_size);
|
2021-01-16 19:15:32 -03:00
|
|
|
void notify_server_did_paint(Badge<WebContentClient>, i32 bitmap_id);
|
2022-04-01 14:58:27 -03:00
|
|
|
void notify_server_did_invalidate_content_rect(Badge<WebContentClient>, Gfx::IntRect const&);
|
2020-07-04 15:57:57 -03:00
|
|
|
void notify_server_did_change_selection(Badge<WebContentClient>);
|
2021-02-27 18:12:12 -03:00
|
|
|
void notify_server_did_request_cursor_change(Badge<WebContentClient>, Gfx::StandardCursor cursor);
|
2022-04-01 14:58:27 -03:00
|
|
|
void notify_server_did_change_title(Badge<WebContentClient>, String const&);
|
2021-09-08 07:22:44 -03:00
|
|
|
void notify_server_did_request_scroll(Badge<WebContentClient>, i32, i32);
|
2021-09-08 07:44:36 -03:00
|
|
|
void notify_server_did_request_scroll_to(Badge<WebContentClient>, Gfx::IntPoint const&);
|
2022-04-01 14: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 13:10:06 -03:00
|
|
|
void notify_server_did_leave_tooltip_area(Badge<WebContentClient>);
|
2021-09-12 18:33:23 -03:00
|
|
|
void notify_server_did_hover_link(Badge<WebContentClient>, const AK::URL&);
|
2020-07-05 11:59:20 -03:00
|
|
|
void notify_server_did_unhover_link(Badge<WebContentClient>);
|
2022-04-01 14: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-12 18: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 14: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-26 21:38:12 -03: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 07:14:25 -03: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 14:58:27 -03:00
|
|
|
void notify_server_did_change_favicon(Gfx::Bitmap const& favicon);
|
2022-04-30 05:46:33 -03: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 19:03:39 -03:00
|
|
|
void notify_server_did_update_resource_count(i32 count_waiting);
|
2022-02-26 13:50:31 -03:00
|
|
|
void notify_server_did_request_file(Badge<WebContentClient>, String const& path, i32);
|
2020-06-17 12:31:42 -03:00
|
|
|
|
|
|
|
|
private:
|
2020-08-17 11:20:47 -03:00
|
|
|
OutOfProcessWebView();
|
2020-06-17 12:31:42 -03:00
|
|
|
|
2020-07-04 18:19:32 -03:00
|
|
|
// ^Widget
|
2020-06-17 12:31:42 -03:00
|
|
|
virtual void paint_event(GUI::PaintEvent&) override;
|
|
|
|
|
virtual void resize_event(GUI::ResizeEvent&) override;
|
2020-06-17 13:05:08 -03: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 15:45:41 -03:00
|
|
|
virtual void mousewheel_event(GUI::MouseEvent&) override;
|
2022-06-14 14:38:32 -03:00
|
|
|
virtual void doubleclick_event(GUI::MouseEvent&) override;
|
2020-08-03 14:58:59 -03:00
|
|
|
virtual void keydown_event(GUI::KeyEvent&) override;
|
2021-09-28 10:39:35 -03:00
|
|
|
virtual void keyup_event(GUI::KeyEvent&) override;
|
2020-10-08 18:13:54 -03:00
|
|
|
virtual void theme_change_event(GUI::ThemeChangeEvent&) override;
|
2021-06-13 09:16:06 -03:00
|
|
|
virtual void screen_rects_change_event(GUI::ScreenRectsChangeEvent&) override;
|
2022-02-06 15:03:13 -03:00
|
|
|
virtual void focusin_event(GUI::FocusEvent&) override;
|
|
|
|
|
virtual void focusout_event(GUI::FocusEvent&) override;
|
2022-09-19 15:50:33 -03:00
|
|
|
virtual void show_event(GUI::ShowEvent&) override;
|
|
|
|
|
virtual void hide_event(GUI::HideEvent&) override;
|
2020-06-17 12:31:42 -03:00
|
|
|
|
2021-05-03 15:31:58 -03:00
|
|
|
// ^AbstractScrollableWidget
|
2020-07-04 18:19:32 -03:00
|
|
|
virtual void did_scroll() override;
|
|
|
|
|
|
2020-07-04 15:57:57 -03:00
|
|
|
void request_repaint();
|
2021-01-30 14:20:40 -03:00
|
|
|
void handle_resize();
|
2020-07-04 15:57:57 -03:00
|
|
|
|
2021-01-30 14:20:40 -03:00
|
|
|
void create_client();
|
2020-06-17 12:31:42 -03:00
|
|
|
WebContentClient& client();
|
|
|
|
|
|
2021-02-22 07:07:40 -03:00
|
|
|
void handle_web_content_process_crash();
|
|
|
|
|
|
2021-09-12 18:33:23 -03:00
|
|
|
AK::URL m_url;
|
2020-07-06 16:46:37 -03:00
|
|
|
|
2021-09-17 09:30:49 -03:00
|
|
|
struct SharedBitmap {
|
|
|
|
|
i32 id { -1 };
|
2021-09-17 09:54:51 -03:00
|
|
|
i32 pending_paints { 0 };
|
2021-09-17 09:30:49 -03:00
|
|
|
RefPtr<Gfx::Bitmap> bitmap;
|
|
|
|
|
};
|
|
|
|
|
|
2021-01-30 14:20:40 -03:00
|
|
|
struct ClientState {
|
|
|
|
|
RefPtr<WebContentClient> client;
|
2021-09-17 09:30:49 -03:00
|
|
|
SharedBitmap front_bitmap;
|
|
|
|
|
SharedBitmap back_bitmap;
|
2021-01-30 14:20:40 -03:00
|
|
|
i32 next_bitmap_id { 0 };
|
|
|
|
|
bool has_usable_bitmap { false };
|
2021-10-18 05:25:13 -03:00
|
|
|
bool got_repaint_requests_while_painting { false };
|
2021-01-30 14:20:40 -03:00
|
|
|
} m_client_state;
|
2021-02-09 18:07:36 -03:00
|
|
|
|
|
|
|
|
RefPtr<Gfx::Bitmap> m_backup_bitmap;
|
2020-06-17 12:31:42 -03:00
|
|
|
};
|
2020-08-24 08:03:18 -03:00
|
|
|
|
|
|
|
|
}
|