mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
32 lines
764 B
C++
32 lines
764 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 WebIDL::ExceptionOr<JS::NonnullGCPtr<FocusEvent>> construct_impl(JS::Realm&, DeprecatedFlyString const& event_name, FocusEventInit const& event_init);
|
|
|
|
virtual ~FocusEvent() override;
|
|
|
|
private:
|
|
FocusEvent(JS::Realm&, DeprecatedFlyString const& event_name, FocusEventInit const&);
|
|
|
|
virtual JS::ThrowCompletionOr<void> initialize(JS::Realm&) override;
|
|
};
|
|
|
|
}
|