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.
35 lines
895 B
C++
35 lines
895 B
C++
/*
|
|
* Copyright (c) 2024, Tim Ledbetter <tim.ledbetter@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/FlyString.h>
|
|
#include <LibWeb/DOM/Event.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
class BeforeUnloadEvent final : public DOM::Event {
|
|
WEB_PLATFORM_OBJECT(BeforeUnloadEvent, DOM::Event);
|
|
GC_DECLARE_ALLOCATOR(BeforeUnloadEvent);
|
|
|
|
public:
|
|
[[nodiscard]] static GC::Ref<BeforeUnloadEvent> create(JS::Realm&, FlyString const& event_name, Bindings::EventInit const& = {});
|
|
|
|
BeforeUnloadEvent(JS::Realm&, FlyString const& event_name, Bindings::EventInit const&);
|
|
|
|
virtual ~BeforeUnloadEvent() override;
|
|
|
|
String const& return_value() const { return m_return_value; }
|
|
void set_return_value(String const& return_value) { m_return_value = return_value; }
|
|
|
|
private:
|
|
virtual void initialize(JS::Realm&) override;
|
|
|
|
String m_return_value;
|
|
};
|
|
|
|
}
|