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.
37 lines
1.0 KiB
C++
37 lines
1.0 KiB
C++
/*
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Bindings/SubmitEvent.h>
|
|
#include <LibWeb/DOM/Event.h>
|
|
#include <LibWeb/HTML/HTMLElement.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
class SubmitEvent final : public DOM::Event {
|
|
WEB_PLATFORM_OBJECT(SubmitEvent, DOM::Event);
|
|
GC_DECLARE_ALLOCATOR(SubmitEvent);
|
|
|
|
public:
|
|
[[nodiscard]] static GC::Ref<SubmitEvent> create(JS::Realm&, FlyString const& event_name, Bindings::SubmitEventInit const&);
|
|
static WebIDL::ExceptionOr<GC::Ref<SubmitEvent>> construct_impl(JS::Realm&, FlyString const& event_name, Bindings::SubmitEventInit const&);
|
|
|
|
virtual ~SubmitEvent() override;
|
|
|
|
GC::Ptr<HTMLElement> submitter() const { return m_submitter; }
|
|
|
|
private:
|
|
SubmitEvent(JS::Realm&, FlyString const& event_name, Bindings::SubmitEventInit const&);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
virtual void visit_edges(Cell::Visitor&) override;
|
|
|
|
GC::Ptr<HTMLElement> m_submitter;
|
|
};
|
|
|
|
}
|