ladybird/Userland/Libraries/LibWeb/UIEvents/FocusEvent.h
Andreas Kling 18c54d8d40 LibJS: Make Cell::initialize() return void
Stop worrying about tiny OOMs.

Work towards #20405
2023-08-08 07:39:11 +02:00

32 lines
747 B
C++

/*
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/FlyString.h>
#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 WebIDL::ExceptionOr<JS::NonnullGCPtr<FocusEvent>> construct_impl(JS::Realm&, FlyString const& event_name, FocusEventInit const& event_init);
virtual ~FocusEvent() override;
private:
FocusEvent(JS::Realm&, FlyString const& event_name, FocusEventInit const&);
virtual void initialize(JS::Realm&) override;
};
}