mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-28 10:37:17 +02:00
This is a monster patch that turns all EventTargets into GC-allocated PlatformObjects. Their C++ wrapper classes are removed, and the LibJS garbage collector is now responsible for their lifetimes. There's a fair amount of hacks and band-aids in this patch, and we'll have a lot of cleanup to do after this.
33 lines
812 B
C++
33 lines
812 B
C++
/*
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/UIEvents/UIEvent.h>
|
|
|
|
namespace Web::UIEvents {
|
|
|
|
struct FocusEventInit : public UIEventInit {
|
|
JS::GCPtr<DOM::EventTarget> related_target;
|
|
};
|
|
|
|
class FocusEvent final : public UIEvent {
|
|
WEB_PLATFORM_OBJECT(FocusEvent, UIEvent);
|
|
|
|
public:
|
|
static FocusEvent* create_with_global_object(HTML::Window&, FlyString const& event_name, FocusEventInit const& event_init);
|
|
|
|
FocusEvent(HTML::Window&, FlyString const& event_name, FocusEventInit const&);
|
|
virtual ~FocusEvent() override;
|
|
};
|
|
|
|
}
|
|
|
|
namespace Web::Bindings {
|
|
inline JS::Object* wrap(JS::Realm&, Web::UIEvents::FocusEvent& object) { return &object; }
|
|
using FocusEventWrapper = Web::UIEvents::FocusEvent;
|
|
}
|