mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
37 lines
996 B
C++
37 lines
996 B
C++
|
|
/*
|
||
|
|
* Copyright (c) 2024, Jamie Mansfield <jmansfield@cadixdev.org>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include <LibWeb/Bindings/InputEventPrototype.h>
|
||
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
||
|
|
#include <LibWeb/UIEvents/InputEvent.h>
|
||
|
|
|
||
|
|
namespace Web::UIEvents {
|
||
|
|
|
||
|
|
JS_DEFINE_ALLOCATOR(InputEvent);
|
||
|
|
|
||
|
|
WebIDL::ExceptionOr<JS::NonnullGCPtr<InputEvent>> InputEvent::construct_impl(JS::Realm& realm, FlyString const& event_name, InputEventInit const& event_init)
|
||
|
|
{
|
||
|
|
return realm.heap().allocate<InputEvent>(realm, realm, event_name, event_init);
|
||
|
|
}
|
||
|
|
|
||
|
|
InputEvent::InputEvent(JS::Realm& realm, FlyString const& event_name, InputEventInit const& event_init)
|
||
|
|
: UIEvent(realm, event_name, event_init)
|
||
|
|
, m_data(event_init.data)
|
||
|
|
, m_is_composing(event_init.is_composing)
|
||
|
|
, m_input_type(event_init.input_type)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
InputEvent::~InputEvent() = default;
|
||
|
|
|
||
|
|
void InputEvent::initialize(JS::Realm& realm)
|
||
|
|
{
|
||
|
|
Base::initialize(realm);
|
||
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(InputEvent);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|