Files
ladybird/Libraries/LibWeb/HTML/PopStateEvent.h
Shannon Booth 5adfd1c43a LibWeb/Bindings: Generate struct definitions from IDL dictionaries
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.
2026-05-09 10:49:49 +02:00

34 lines
999 B
C++

/*
* Copyright (c) 2024, Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibWeb/Bindings/PopStateEvent.h>
#include <LibWeb/DOM/Event.h>
namespace Web::HTML {
class PopStateEvent final : public DOM::Event {
WEB_PLATFORM_OBJECT(PopStateEvent, DOM::Event);
GC_DECLARE_ALLOCATOR(PopStateEvent);
public:
[[nodiscard]] static GC::Ref<PopStateEvent> create(JS::Realm&, FlyString const& event_name, Bindings::PopStateEventInit const&);
[[nodiscard]] static GC::Ref<PopStateEvent> construct_impl(JS::Realm&, FlyString const& event_name, Bindings::PopStateEventInit const&);
JS::Value const& state() const { return m_state; }
private:
PopStateEvent(JS::Realm&, FlyString const& event_name, Bindings::PopStateEventInit const& event_init);
virtual void initialize(JS::Realm&) override;
virtual void visit_edges(JS::Cell::Visitor& visitor) override;
JS::Value m_state { JS::js_null() };
};
}