2020-06-08 18:31:49 +00:00
|
|
|
/*
|
2021-02-10 07:25:35 +00:00
|
|
|
* Copyright (c) 2020-2021, Andreas Kling <kling@serenityos.org>
|
2020-06-08 18:31:49 +00:00
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-06-08 18:31:49 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/Noncopyable.h>
|
|
|
|
#include <AK/OwnPtr.h>
|
|
|
|
#include <AK/RefPtr.h>
|
2020-09-28 09:55:26 +00:00
|
|
|
#include <AK/URL.h>
|
2021-02-10 07:25:35 +00:00
|
|
|
#include <AK/WeakPtr.h>
|
|
|
|
#include <AK/Weakable.h>
|
2020-08-02 10:10:01 +00:00
|
|
|
#include <Kernel/API/KeyCode.h>
|
2020-06-08 18:31:49 +00:00
|
|
|
#include <LibGfx/Forward.h>
|
|
|
|
#include <LibGfx/Palette.h>
|
2021-02-10 07:25:35 +00:00
|
|
|
#include <LibGfx/StandardCursor.h>
|
2021-10-26 16:00:10 +00:00
|
|
|
#include <LibWeb/CSS/PreferredColorScheme.h>
|
2020-06-08 18:31:49 +00:00
|
|
|
#include <LibWeb/Forward.h>
|
2022-02-26 16:50:31 +00:00
|
|
|
#include <LibWeb/Loader/FileRequest.h>
|
2020-06-08 18:31:49 +00:00
|
|
|
|
|
|
|
namespace Web {
|
|
|
|
|
|
|
|
class PageClient;
|
|
|
|
|
2020-11-12 17:23:05 +00:00
|
|
|
class Page : public Weakable<Page> {
|
2020-06-08 18:31:49 +00:00
|
|
|
AK_MAKE_NONCOPYABLE(Page);
|
|
|
|
AK_MAKE_NONMOVABLE(Page);
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit Page(PageClient&);
|
|
|
|
~Page();
|
|
|
|
|
|
|
|
PageClient& client() { return m_client; }
|
2022-04-01 17:58:27 +00:00
|
|
|
PageClient const& client() const { return m_client; }
|
2020-06-08 18:31:49 +00:00
|
|
|
|
2021-11-18 14:01:28 +00:00
|
|
|
HTML::BrowsingContext& top_level_browsing_context() { return *m_top_level_browsing_context; }
|
|
|
|
HTML::BrowsingContext const& top_level_browsing_context() const { return *m_top_level_browsing_context; }
|
2020-06-08 18:31:49 +00:00
|
|
|
|
2021-11-18 14:01:28 +00:00
|
|
|
HTML::BrowsingContext& focused_context();
|
|
|
|
HTML::BrowsingContext const& focused_context() const { return const_cast<Page*>(this)->focused_context(); }
|
2020-08-14 09:33:20 +00:00
|
|
|
|
2021-11-18 14:01:28 +00:00
|
|
|
void set_focused_browsing_context(Badge<EventHandler>, HTML::BrowsingContext&);
|
2020-08-14 09:33:20 +00:00
|
|
|
|
2021-09-12 21:33:23 +00:00
|
|
|
void load(const AK::URL&);
|
2021-09-12 04:15:15 +00:00
|
|
|
void load(LoadRequest&);
|
2020-06-08 18:31:49 +00:00
|
|
|
|
2021-11-10 23:55:02 +00:00
|
|
|
void load_html(StringView, const AK::URL&);
|
2020-10-08 20:11:01 +00:00
|
|
|
|
2022-04-01 17:58:27 +00:00
|
|
|
bool handle_mouseup(Gfx::IntPoint const&, unsigned button, unsigned modifiers);
|
|
|
|
bool handle_mousedown(Gfx::IntPoint const&, unsigned button, unsigned modifiers);
|
|
|
|
bool handle_mousemove(Gfx::IntPoint const&, unsigned buttons, unsigned modifiers);
|
|
|
|
bool handle_mousewheel(Gfx::IntPoint const&, unsigned button, unsigned modifiers, int wheel_delta_x, int wheel_delta_y);
|
2022-06-14 17:38:32 +00:00
|
|
|
bool handle_doubleclick(Gfx::IntPoint const&, unsigned buttons, unsigned modifiers);
|
2020-06-08 18:31:49 +00:00
|
|
|
|
2020-08-02 10:10:01 +00:00
|
|
|
bool handle_keydown(KeyCode, unsigned modifiers, u32 code_point);
|
2021-09-28 13:39:35 +00:00
|
|
|
bool handle_keyup(KeyCode, unsigned modifiers, u32 code_point);
|
2020-08-02 10:10:01 +00:00
|
|
|
|
2020-06-08 18:31:49 +00:00
|
|
|
Gfx::Palette palette() const;
|
2021-04-03 22:12:37 +00:00
|
|
|
Gfx::IntRect screen_rect() const;
|
2021-10-26 16:00:10 +00:00
|
|
|
CSS::PreferredColorScheme preferred_color_scheme() const;
|
2020-06-08 18:31:49 +00:00
|
|
|
|
2021-09-12 00:10:43 +00:00
|
|
|
bool is_same_origin_policy_enabled() const { return m_same_origin_policy_enabled; }
|
|
|
|
void set_same_origin_policy_enabled(bool b) { m_same_origin_policy_enabled = b; }
|
|
|
|
|
2022-03-30 21:42:09 +00:00
|
|
|
bool is_scripting_enabled() const { return m_is_scripting_enabled; }
|
|
|
|
void set_is_scripting_enabled(bool b) { m_is_scripting_enabled = b; }
|
|
|
|
|
2020-06-08 18:31:49 +00:00
|
|
|
private:
|
|
|
|
PageClient& m_client;
|
|
|
|
|
2021-11-18 14:01:28 +00:00
|
|
|
RefPtr<HTML::BrowsingContext> m_top_level_browsing_context;
|
|
|
|
WeakPtr<HTML::BrowsingContext> m_focused_context;
|
2021-09-12 00:10:43 +00:00
|
|
|
|
2021-10-03 21:39:07 +00:00
|
|
|
// FIXME: Enable this by default once CORS preflight checks are supported.
|
|
|
|
bool m_same_origin_policy_enabled { false };
|
2022-03-30 21:42:09 +00:00
|
|
|
|
|
|
|
bool m_is_scripting_enabled { true };
|
2020-06-08 18:31:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class PageClient {
|
|
|
|
public:
|
2020-06-17 18:26:59 +00:00
|
|
|
virtual Gfx::Palette palette() const = 0;
|
2021-04-03 22:12:37 +00:00
|
|
|
virtual Gfx::IntRect screen_rect() const = 0;
|
2021-10-26 16:00:10 +00:00
|
|
|
virtual CSS::PreferredColorScheme preferred_color_scheme() const = 0;
|
2022-04-01 17:58:27 +00:00
|
|
|
virtual void page_did_change_title(String const&) { }
|
2021-09-12 21:33:23 +00:00
|
|
|
virtual void page_did_start_loading(const AK::URL&) { }
|
2022-09-21 15:12:00 +00:00
|
|
|
virtual void page_did_create_main_document() { }
|
2021-09-12 21:33:23 +00:00
|
|
|
virtual void page_did_finish_loading(const AK::URL&) { }
|
2020-06-08 18:31:49 +00:00
|
|
|
virtual void page_did_change_selection() { }
|
2020-09-10 17:25:13 +00:00
|
|
|
virtual void page_did_request_cursor_change(Gfx::StandardCursor) { }
|
2022-04-01 17:58:27 +00:00
|
|
|
virtual void page_did_request_context_menu(Gfx::IntPoint const&) { }
|
|
|
|
virtual void page_did_request_link_context_menu(Gfx::IntPoint const&, const AK::URL&, [[maybe_unused]] String const& target, [[maybe_unused]] unsigned modifiers) { }
|
|
|
|
virtual void page_did_request_image_context_menu(Gfx::IntPoint const&, const AK::URL&, [[maybe_unused]] String const& target, [[maybe_unused]] unsigned modifiers, Gfx::Bitmap const*) { }
|
|
|
|
virtual void page_did_click_link(const AK::URL&, [[maybe_unused]] String const& target, [[maybe_unused]] unsigned modifiers) { }
|
|
|
|
virtual void page_did_middle_click_link(const AK::URL&, [[maybe_unused]] String const& target, [[maybe_unused]] unsigned modifiers) { }
|
|
|
|
virtual void page_did_enter_tooltip_area(Gfx::IntPoint const&, String const&) { }
|
2020-06-08 18:31:49 +00:00
|
|
|
virtual void page_did_leave_tooltip_area() { }
|
2021-09-12 21:33:23 +00:00
|
|
|
virtual void page_did_hover_link(const AK::URL&) { }
|
2020-06-08 18:31:49 +00:00
|
|
|
virtual void page_did_unhover_link() { }
|
2022-04-01 17:58:27 +00:00
|
|
|
virtual void page_did_invalidate(Gfx::IntRect const&) { }
|
|
|
|
virtual void page_did_change_favicon(Gfx::Bitmap const&) { }
|
2020-06-23 16:02:08 +00:00
|
|
|
virtual void page_did_layout() { }
|
2021-09-08 10:22:44 +00:00
|
|
|
virtual void page_did_request_scroll(i32, i32) { }
|
2021-09-08 10:44:36 +00:00
|
|
|
virtual void page_did_request_scroll_to(Gfx::IntPoint const&) { }
|
2022-04-01 17:58:27 +00:00
|
|
|
virtual void page_did_request_scroll_into_view(Gfx::IntRect const&) { }
|
|
|
|
virtual void page_did_request_alert(String const&) { }
|
|
|
|
virtual bool page_did_request_confirm(String const&) { return false; }
|
|
|
|
virtual String page_did_request_prompt(String const&, String const&) { return {}; }
|
2021-09-12 21:33:23 +00:00
|
|
|
virtual String page_did_request_cookie(const AK::URL&, Cookie::Source) { return {}; }
|
2022-04-01 17:58:27 +00:00
|
|
|
virtual void page_did_set_cookie(const AK::URL&, Cookie::ParsedCookie const&, Cookie::Source) { }
|
2022-02-20 22:03:39 +00:00
|
|
|
virtual void page_did_update_resource_count(i32) { }
|
2022-09-20 23:17:01 +00:00
|
|
|
virtual void page_did_close_browsing_context(HTML::BrowsingContext const&) { }
|
2021-04-15 17:43:29 +00:00
|
|
|
|
2022-02-26 16:50:31 +00:00
|
|
|
virtual void request_file(NonnullRefPtr<FileRequest>&) = 0;
|
|
|
|
|
2021-04-15 17:43:29 +00:00
|
|
|
protected:
|
|
|
|
virtual ~PageClient() = default;
|
2020-06-08 18:31:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|