mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-11 17:37:33 +02:00
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.
43 lines
1.3 KiB
C++
43 lines
1.3 KiB
C++
/*
|
|
* Copyright (c) 2025, Glenn Skrzypczak <glenn.skrzypczak@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/String.h>
|
|
#include <LibWeb/Bindings/CommandEvent.h>
|
|
#include <LibWeb/DOM/Element.h>
|
|
#include <LibWeb/DOM/Event.h>
|
|
#include <LibWeb/DOM/Utils.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
class CommandEvent : public DOM::Event {
|
|
WEB_PLATFORM_OBJECT(CommandEvent, DOM::Event);
|
|
GC_DECLARE_ALLOCATOR(CommandEvent);
|
|
|
|
public:
|
|
[[nodiscard]] static GC::Ref<CommandEvent> create(JS::Realm&, FlyString const& event_name, Bindings::CommandEventInit const& = {});
|
|
static WebIDL::ExceptionOr<GC::Ref<CommandEvent>> construct_impl(JS::Realm&, FlyString const& event_name, Bindings::CommandEventInit const&);
|
|
|
|
// https://html.spec.whatwg.org/multipage/interaction.html#dom-commandevent-command
|
|
String const& command() const { return m_command; }
|
|
|
|
// https://html.spec.whatwg.org/multipage/interaction.html#dom-commandevent-source
|
|
GC::Ptr<DOM::Element> source() const { return as<DOM::Element>(retarget(m_source, current_target())); }
|
|
|
|
private:
|
|
void visit_edges(Visitor&) override;
|
|
|
|
CommandEvent(JS::Realm&, FlyString const& event_name, Bindings::CommandEventInit const&);
|
|
|
|
void initialize(JS::Realm&) override;
|
|
|
|
GC::Ptr<DOM::Element> m_source;
|
|
String m_command;
|
|
};
|
|
|
|
}
|