Previously we were inconsistent by generating code for enum definitions but not generating code for dictionaries. With future changes to the IDL generator to expose helpers to convert to and from IDL values this produced circular depdendencies. To solve this problem, also generate the dictionary definitions in bindings headers.
52 lines
1.2 KiB
C++
52 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2022, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
|
#include <LibWeb/Bindings/UIEvent.h>
|
|
#include <LibWeb/HTML/WindowProxy.h>
|
|
#include <LibWeb/UIEvents/UIEvent.h>
|
|
|
|
namespace Web::UIEvents {
|
|
|
|
GC_DEFINE_ALLOCATOR(UIEvent);
|
|
|
|
GC::Ref<UIEvent> UIEvent::create(JS::Realm& realm, FlyString const& event_name)
|
|
{
|
|
return realm.create<UIEvent>(realm, event_name);
|
|
}
|
|
|
|
WebIDL::ExceptionOr<GC::Ref<UIEvent>> UIEvent::construct_impl(JS::Realm& realm, FlyString const& event_name, Bindings::UIEventInit const& event_init)
|
|
{
|
|
return realm.create<UIEvent>(realm, event_name, event_init);
|
|
}
|
|
|
|
UIEvent::UIEvent(JS::Realm& realm, FlyString const& event_name)
|
|
: Event(realm, event_name)
|
|
{
|
|
}
|
|
|
|
UIEvent::UIEvent(JS::Realm& realm, FlyString const& event_name, Bindings::UIEventInit const& event_init)
|
|
: Event(realm, event_name, event_init)
|
|
, m_view(event_init.view)
|
|
, m_detail(event_init.detail)
|
|
{
|
|
}
|
|
|
|
UIEvent::~UIEvent() = default;
|
|
|
|
void UIEvent::initialize(JS::Realm& realm)
|
|
{
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(UIEvent);
|
|
Base::initialize(realm);
|
|
}
|
|
|
|
void UIEvent::visit_edges(Cell::Visitor& visitor)
|
|
{
|
|
Base::visit_edges(visitor);
|
|
visitor.visit(m_view);
|
|
}
|
|
|
|
}
|