2020-04-01 18:53:28 +02:00
|
|
|
/*
|
2022-02-08 19:38:29 +01:00
|
|
|
* Copyright (c) 2020-2022, Andreas Kling <kling@serenityos.org>
|
2020-04-01 18:53:28 +02:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-04-01 18:53:28 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/Badge.h>
|
2020-06-27 18:30:29 +02:00
|
|
|
#include <AK/IDAllocator.h>
|
2022-09-07 20:30:31 +02:00
|
|
|
#include <AK/NonnullRefPtrVector.h>
|
2020-04-01 18:53:28 +02:00
|
|
|
#include <AK/RefPtr.h>
|
2022-09-07 20:30:31 +02:00
|
|
|
#include <AK/TypeCasts.h>
|
2022-08-28 13:42:07 +02:00
|
|
|
#include <AK/URL.h>
|
|
|
|
#include <LibJS/Heap/Heap.h>
|
2022-09-24 15:39:23 -06:00
|
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
2020-10-18 13:43:44 +02:00
|
|
|
#include <LibWeb/DOM/EventTarget.h>
|
2022-08-28 13:42:07 +02:00
|
|
|
#include <LibWeb/Forward.h>
|
2022-05-05 20:08:29 +01:00
|
|
|
#include <LibWeb/HTML/AnimationFrameCallbackDriver.h>
|
2022-09-24 14:02:47 +01:00
|
|
|
#include <LibWeb/HTML/CrossOrigin/CrossOriginPropertyDescriptorMap.h>
|
2021-09-22 16:39:15 +02:00
|
|
|
#include <LibWeb/HTML/GlobalEventHandlers.h>
|
2022-06-27 19:48:54 +01:00
|
|
|
#include <LibWeb/HTML/WindowEventHandlers.h>
|
2020-04-01 18:53:28 +02:00
|
|
|
|
2022-03-07 23:08:26 +01:00
|
|
|
namespace Web::HTML {
|
2020-04-01 18:53:28 +02:00
|
|
|
|
2022-03-31 21:55:01 +02:00
|
|
|
class IdleCallback;
|
2021-09-13 02:03:06 +02:00
|
|
|
|
2022-08-28 13:42:07 +02:00
|
|
|
// https://html.spec.whatwg.org/#timerhandler
|
2022-09-24 16:02:41 +01:00
|
|
|
using TimerHandler = Variant<JS::Handle<WebIDL::CallbackType>, String>;
|
2022-08-28 13:42:07 +02:00
|
|
|
|
2020-10-18 13:43:44 +02:00
|
|
|
class Window final
|
2022-08-28 13:42:07 +02:00
|
|
|
: public DOM::EventTarget
|
2022-06-27 19:48:54 +01:00
|
|
|
, public HTML::GlobalEventHandlers
|
|
|
|
, public HTML::WindowEventHandlers {
|
2022-08-28 13:42:07 +02:00
|
|
|
WEB_PLATFORM_OBJECT(Window, DOM::EventTarget);
|
|
|
|
|
2020-04-01 18:53:28 +02:00
|
|
|
public:
|
2022-08-28 13:42:07 +02:00
|
|
|
static JS::NonnullGCPtr<Window> create(JS::Realm&);
|
2020-04-01 18:53:28 +02:00
|
|
|
|
2022-08-28 13:42:07 +02:00
|
|
|
~Window();
|
2020-10-18 13:43:44 +02:00
|
|
|
|
2022-08-08 22:29:40 +02:00
|
|
|
virtual bool dispatch_event(DOM::Event&) override;
|
2020-10-18 13:43:44 +02:00
|
|
|
|
2021-09-09 13:45:03 +02:00
|
|
|
Page* page();
|
|
|
|
Page const* page() const;
|
|
|
|
|
2022-03-05 00:13:13 +01:00
|
|
|
// https://html.spec.whatwg.org/multipage/window-object.html#concept-document-window
|
2022-03-07 23:08:26 +01:00
|
|
|
DOM::Document const& associated_document() const { return *m_associated_document; }
|
|
|
|
DOM::Document& associated_document() { return *m_associated_document; }
|
2022-08-04 21:19:30 +02:00
|
|
|
void set_associated_document(DOM::Document&);
|
2020-04-01 18:53:28 +02:00
|
|
|
|
2022-03-05 00:13:13 +01:00
|
|
|
// https://html.spec.whatwg.org/multipage/window-object.html#window-bc
|
2022-08-28 13:42:07 +02:00
|
|
|
HTML::BrowsingContext const* browsing_context() const;
|
|
|
|
HTML::BrowsingContext* browsing_context();
|
|
|
|
|
2022-09-06 19:56:29 +02:00
|
|
|
JS::ThrowCompletionOr<size_t> document_tree_child_browsing_context_count() const;
|
|
|
|
|
2022-08-28 13:42:07 +02:00
|
|
|
void alert_impl(String const&);
|
|
|
|
bool confirm_impl(String const&);
|
|
|
|
String prompt_impl(String const&, String const&);
|
2022-09-24 16:02:41 +01:00
|
|
|
i32 request_animation_frame_impl(WebIDL::CallbackType& js_callback);
|
2022-08-28 13:42:07 +02:00
|
|
|
void cancel_animation_frame_impl(i32);
|
2022-05-05 20:08:29 +01:00
|
|
|
bool has_animation_frame_callbacks() const { return m_animation_frame_callback_driver.has_callbacks(); }
|
2020-06-27 18:30:29 +02:00
|
|
|
|
2022-08-28 13:42:07 +02:00
|
|
|
i32 set_timeout_impl(TimerHandler, i32 timeout, JS::MarkedVector<JS::Value> arguments);
|
|
|
|
i32 set_interval_impl(TimerHandler, i32 timeout, JS::MarkedVector<JS::Value> arguments);
|
|
|
|
void clear_timeout_impl(i32);
|
|
|
|
void clear_interval_impl(i32);
|
2020-04-01 18:53:28 +02:00
|
|
|
|
2022-09-24 16:02:41 +01:00
|
|
|
void queue_microtask_impl(WebIDL::CallbackType& callback);
|
2021-09-26 14:36:20 +02:00
|
|
|
|
2021-03-16 17:22:01 +01:00
|
|
|
int inner_width() const;
|
|
|
|
int inner_height() const;
|
|
|
|
|
2021-09-13 00:33:23 +03:00
|
|
|
void did_set_location_href(Badge<Bindings::LocationObject>, AK::URL const& new_href);
|
2020-05-18 22:05:13 +02:00
|
|
|
void did_call_location_reload(Badge<Bindings::LocationObject>);
|
2021-10-03 23:31:52 +02:00
|
|
|
void did_call_location_replace(Badge<Bindings::LocationObject>, String url);
|
2020-05-18 21:52:50 +02:00
|
|
|
|
2022-03-07 23:54:56 +01:00
|
|
|
void deallocate_timer_id(Badge<Timer>, i32);
|
2020-06-27 18:30:29 +02:00
|
|
|
|
2022-08-28 13:42:07 +02:00
|
|
|
HighResolutionTime::Performance& performance();
|
2020-09-29 18:19:18 +02:00
|
|
|
|
2021-09-30 20:02:55 +03:00
|
|
|
Crypto::Crypto& crypto() { return *m_crypto; }
|
|
|
|
|
2022-08-31 18:52:54 +02:00
|
|
|
CSS::Screen& screen();
|
2021-04-04 00:14:39 +02:00
|
|
|
|
2022-08-28 13:42:07 +02:00
|
|
|
DOM::Event* current_event() { return m_current_event.ptr(); }
|
|
|
|
DOM::Event const* current_event() const { return m_current_event.ptr(); }
|
2022-08-08 22:29:40 +02:00
|
|
|
void set_current_event(DOM::Event* event);
|
2020-11-21 18:32:39 +00:00
|
|
|
|
2022-08-28 13:42:07 +02:00
|
|
|
CSS::CSSStyleDeclaration* get_computed_style_impl(DOM::Element&) const;
|
|
|
|
JS::NonnullGCPtr<CSS::MediaQueryList> match_media_impl(String);
|
2022-03-08 16:51:33 +00:00
|
|
|
Optional<CSS::MediaFeatureValue> query_media_feature(CSS::MediaFeatureID) const;
|
2021-09-11 00:33:30 +02:00
|
|
|
|
2021-09-24 21:49:31 +02:00
|
|
|
float scroll_x() const;
|
|
|
|
float scroll_y() const;
|
|
|
|
|
2021-10-01 19:05:28 +03:00
|
|
|
void fire_a_page_transition_event(FlyString const& event_name, bool persisted);
|
2021-09-26 12:39:27 +02:00
|
|
|
|
2021-09-27 16:34:06 +02:00
|
|
|
float device_pixel_ratio() const;
|
|
|
|
|
2021-09-29 00:15:26 +02:00
|
|
|
int screen_x() const;
|
|
|
|
int screen_y() const;
|
|
|
|
|
2022-09-03 19:44:37 +02:00
|
|
|
JS::NonnullGCPtr<HTML::Storage> local_storage();
|
|
|
|
JS::NonnullGCPtr<HTML::Storage> session_storage();
|
2022-02-08 19:38:29 +01:00
|
|
|
|
2022-02-26 15:55:45 +01:00
|
|
|
Window* parent();
|
|
|
|
|
2022-09-25 17:03:42 +01:00
|
|
|
WebIDL::ExceptionOr<void> post_message_impl(JS::Value, String const& target_origin);
|
2022-02-26 17:21:40 +01:00
|
|
|
|
2022-03-16 17:15:11 +01:00
|
|
|
String name() const;
|
|
|
|
void set_name(String const&);
|
|
|
|
|
2022-03-31 21:55:01 +02:00
|
|
|
void start_an_idle_period();
|
|
|
|
|
2022-09-24 16:02:41 +01:00
|
|
|
u32 request_idle_callback_impl(WebIDL::CallbackType& callback);
|
2022-08-28 13:42:07 +02:00
|
|
|
void cancel_idle_callback_impl(u32);
|
2022-04-01 19:46:29 +02:00
|
|
|
|
2022-05-05 20:08:29 +01:00
|
|
|
AnimationFrameCallbackDriver& animation_frame_callback_driver() { return m_animation_frame_callback_driver; }
|
|
|
|
|
2022-09-19 17:46:34 +02:00
|
|
|
// https://html.spec.whatwg.org/multipage/interaction.html#transient-activation
|
|
|
|
bool has_transient_activation() const;
|
|
|
|
|
2022-09-24 15:39:23 -06:00
|
|
|
void initialize_web_interfaces(Badge<WindowEnvironmentSettingsObject>);
|
|
|
|
|
2020-04-01 18:53:28 +02:00
|
|
|
private:
|
2022-08-28 13:42:07 +02:00
|
|
|
explicit Window(JS::Realm&);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
|
|
|
|
|
|
virtual void visit_edges(Cell::Visitor&) override;
|
2020-04-01 18:53:28 +02:00
|
|
|
|
2021-09-22 16:39:15 +02:00
|
|
|
// ^HTML::GlobalEventHandlers
|
2022-06-27 19:20:09 +01:00
|
|
|
virtual DOM::EventTarget& global_event_handlers_to_event_target(FlyString const&) override { return *this; }
|
2021-09-22 16:39:15 +02:00
|
|
|
|
2022-06-27 19:48:54 +01:00
|
|
|
// ^HTML::WindowEventHandlers
|
|
|
|
virtual DOM::EventTarget& window_event_handlers_to_event_target() override { return *this; }
|
|
|
|
|
2022-03-04 10:41:12 -05:00
|
|
|
enum class Repeat {
|
|
|
|
Yes,
|
|
|
|
No,
|
|
|
|
};
|
2022-08-28 13:42:07 +02:00
|
|
|
i32 run_timer_initialization_steps(TimerHandler handler, i32 timeout, JS::MarkedVector<JS::Value> arguments, Repeat repeat, Optional<i32> previous_id = {});
|
2022-03-04 10:41:12 -05:00
|
|
|
|
2022-03-31 21:55:01 +02:00
|
|
|
void invoke_idle_callbacks();
|
|
|
|
|
2021-09-09 13:55:31 +02:00
|
|
|
// https://html.spec.whatwg.org/multipage/window-object.html#concept-document-window
|
2022-08-28 13:42:07 +02:00
|
|
|
JS::GCPtr<DOM::Document> m_associated_document;
|
2021-09-09 13:55:31 +02:00
|
|
|
|
2022-08-28 13:42:07 +02:00
|
|
|
JS::GCPtr<DOM::Event> m_current_event;
|
2020-06-27 18:30:29 +02:00
|
|
|
|
|
|
|
IDAllocator m_timer_id_allocator;
|
2022-09-01 12:21:47 +02:00
|
|
|
HashMap<int, JS::NonnullGCPtr<Timer>> m_timers;
|
2020-09-29 18:19:18 +02:00
|
|
|
|
2022-08-28 13:42:07 +02:00
|
|
|
JS::GCPtr<HighResolutionTime::Performance> m_performance;
|
2022-09-04 13:15:05 +02:00
|
|
|
JS::GCPtr<Crypto::Crypto> m_crypto;
|
2022-08-31 18:52:54 +02:00
|
|
|
JS::GCPtr<CSS::Screen> m_screen;
|
2022-10-08 20:53:08 -06:00
|
|
|
JS::GCPtr<HTML::Navigator> m_navigator;
|
2021-09-13 02:03:06 +02:00
|
|
|
|
2022-05-05 20:08:29 +01:00
|
|
|
AnimationFrameCallbackDriver m_animation_frame_callback_driver;
|
2022-03-31 21:55:01 +02:00
|
|
|
|
|
|
|
// https://w3c.github.io/requestidlecallback/#dfn-list-of-idle-request-callbacks
|
|
|
|
NonnullRefPtrVector<IdleCallback> m_idle_request_callbacks;
|
|
|
|
// https://w3c.github.io/requestidlecallback/#dfn-list-of-runnable-idle-callbacks
|
|
|
|
NonnullRefPtrVector<IdleCallback> m_runnable_idle_callbacks;
|
|
|
|
// https://w3c.github.io/requestidlecallback/#dfn-idle-callback-identifier
|
|
|
|
u32 m_idle_callback_identifier = 0;
|
2022-08-28 13:42:07 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
HTML::Origin origin() const;
|
|
|
|
|
|
|
|
Bindings::LocationObject* location_object() { return m_location_object; }
|
|
|
|
Bindings::LocationObject const* location_object() const { return m_location_object; }
|
|
|
|
|
|
|
|
virtual JS::ThrowCompletionOr<bool> internal_set_prototype_of(JS::Object* prototype) override;
|
|
|
|
|
2022-09-24 14:02:47 +01:00
|
|
|
CrossOriginPropertyDescriptorMap const& cross_origin_property_descriptor_map() const { return m_cross_origin_property_descriptor_map; }
|
|
|
|
CrossOriginPropertyDescriptorMap& cross_origin_property_descriptor_map() { return m_cross_origin_property_descriptor_map; }
|
2022-08-28 13:42:07 +02:00
|
|
|
|
|
|
|
private:
|
2022-09-06 19:56:29 +02:00
|
|
|
JS_DECLARE_NATIVE_FUNCTION(length_getter);
|
2022-08-28 13:42:07 +02:00
|
|
|
JS_DECLARE_NATIVE_FUNCTION(top_getter);
|
|
|
|
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(document_getter);
|
|
|
|
|
2022-09-20 11:14:23 +02:00
|
|
|
JS_DECLARE_NATIVE_FUNCTION(frame_element_getter);
|
|
|
|
|
2022-08-28 13:42:07 +02:00
|
|
|
JS_DECLARE_NATIVE_FUNCTION(location_getter);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(location_setter);
|
|
|
|
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(name_getter);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(name_setter);
|
|
|
|
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(performance_getter);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(performance_setter);
|
|
|
|
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(history_getter);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(screen_getter);
|
|
|
|
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(event_getter);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(event_setter);
|
|
|
|
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(inner_width_getter);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(inner_height_getter);
|
|
|
|
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(parent_getter);
|
|
|
|
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(device_pixel_ratio_getter);
|
|
|
|
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(scroll_x_getter);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(scroll_y_getter);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(scroll);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(scroll_by);
|
|
|
|
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(screen_x_getter);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(screen_y_getter);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(screen_left_getter);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(screen_top_getter);
|
|
|
|
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(post_message);
|
|
|
|
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(local_storage_getter);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(session_storage_getter);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(origin_getter);
|
|
|
|
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(alert);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(confirm);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(prompt);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(set_interval);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(set_timeout);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(clear_interval);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(clear_timeout);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(request_animation_frame);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(cancel_animation_frame);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(atob);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(btoa);
|
|
|
|
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(get_computed_style);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(match_media);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(get_selection);
|
|
|
|
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(queue_microtask);
|
|
|
|
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(request_idle_callback);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(cancel_idle_callback);
|
|
|
|
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(crypto_getter);
|
|
|
|
|
|
|
|
#define __ENUMERATE(attribute, event_name) \
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(attribute##_getter); \
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(attribute##_setter);
|
|
|
|
ENUMERATE_GLOBAL_EVENT_HANDLERS(__ENUMERATE);
|
|
|
|
ENUMERATE_WINDOW_EVENT_HANDLERS(__ENUMERATE);
|
|
|
|
#undef __ENUMERATE
|
|
|
|
|
|
|
|
Bindings::LocationObject* m_location_object { nullptr };
|
|
|
|
|
|
|
|
// [[CrossOriginPropertyDescriptorMap]], https://html.spec.whatwg.org/multipage/browsers.html#crossoriginpropertydescriptormap
|
2022-09-24 14:02:47 +01:00
|
|
|
CrossOriginPropertyDescriptorMap m_cross_origin_property_descriptor_map;
|
2020-04-01 18:53:28 +02:00
|
|
|
};
|
|
|
|
|
2021-10-03 16:28:14 +02:00
|
|
|
void run_animation_frame_callbacks(DOM::Document&, double now);
|
|
|
|
|
2020-04-01 18:53:28 +02:00
|
|
|
}
|