2022-08-08 22:29:40 +02:00
|
|
|
/*
|
2024-10-04 13:19:50 +02:00
|
|
|
* Copyright (c) 2022, Andreas Kling <andreas@ladybird.org>
|
2022-08-08 22:29:40 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
2022-09-25 18:06:11 -06:00
|
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
2024-04-27 12:09:58 +12:00
|
|
|
#include <LibWeb/Bindings/UIEventPrototype.h>
|
2024-11-17 21:54:03 +01:00
|
|
|
#include <LibWeb/HTML/WindowProxy.h>
|
2022-08-08 22:29:40 +02:00
|
|
|
#include <LibWeb/UIEvents/UIEvent.h>
|
|
|
|
|
|
|
|
|
|
namespace Web::UIEvents {
|
|
|
|
|
|
2024-11-15 04:01:23 +13:00
|
|
|
GC_DEFINE_ALLOCATOR(UIEvent);
|
2023-11-19 19:47:52 +01:00
|
|
|
|
2024-11-15 04:01:23 +13:00
|
|
|
GC::Ref<UIEvent> UIEvent::create(JS::Realm& realm, FlyString const& event_name)
|
2022-08-08 22:29:40 +02:00
|
|
|
{
|
2024-11-14 05:50:17 +13:00
|
|
|
return realm.create<UIEvent>(realm, event_name);
|
2022-08-08 22:29:40 +02:00
|
|
|
}
|
|
|
|
|
|
2024-11-15 04:01:23 +13:00
|
|
|
WebIDL::ExceptionOr<GC::Ref<UIEvent>> UIEvent::construct_impl(JS::Realm& realm, FlyString const& event_name, UIEventInit const& event_init)
|
2022-08-08 22:29:40 +02:00
|
|
|
{
|
2024-11-14 05:50:17 +13:00
|
|
|
return realm.create<UIEvent>(realm, event_name, event_init);
|
2022-08-08 22:29:40 +02:00
|
|
|
}
|
|
|
|
|
|
2023-04-06 16:12:33 +02:00
|
|
|
UIEvent::UIEvent(JS::Realm& realm, FlyString const& event_name)
|
2022-09-25 18:06:11 -06:00
|
|
|
: Event(realm, event_name)
|
2022-08-08 22:29:40 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-06 16:12:33 +02:00
|
|
|
UIEvent::UIEvent(JS::Realm& realm, FlyString const& event_name, UIEventInit const& event_init)
|
2022-09-25 18:06:11 -06:00
|
|
|
: Event(realm, event_name, event_init)
|
2022-08-08 22:29:40 +02:00
|
|
|
, m_view(event_init.view)
|
|
|
|
|
, m_detail(event_init.detail)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
UIEvent::~UIEvent() = default;
|
|
|
|
|
|
2023-08-07 08:41:28 +02:00
|
|
|
void UIEvent::initialize(JS::Realm& realm)
|
2023-01-10 06:28:20 -05:00
|
|
|
{
|
2024-03-16 13:13:08 +01:00
|
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(UIEvent);
|
2025-04-20 16:22:57 +02:00
|
|
|
Base::initialize(realm);
|
2023-01-10 06:28:20 -05:00
|
|
|
}
|
|
|
|
|
|
2022-08-28 13:42:07 +02:00
|
|
|
void UIEvent::visit_edges(Cell::Visitor& visitor)
|
|
|
|
|
{
|
|
|
|
|
Base::visit_edges(visitor);
|
2023-11-19 16:18:00 +13:00
|
|
|
visitor.visit(m_view);
|
2022-08-28 13:42:07 +02:00
|
|
|
}
|
|
|
|
|
|
2022-08-08 22:29:40 +02:00
|
|
|
}
|