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.
38 lines
1.3 KiB
C++
38 lines
1.3 KiB
C++
/*
|
|
* Copyright (c) 2023, Andrew Kaster <akaster@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Bindings/NavigationCurrentEntryChangeEvent.h>
|
|
#include <LibWeb/Bindings/NavigationType.h>
|
|
#include <LibWeb/DOM/Event.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
class NavigationCurrentEntryChangeEvent final : public DOM::Event {
|
|
WEB_PLATFORM_OBJECT(NavigationCurrentEntryChangeEvent, DOM::Event);
|
|
GC_DECLARE_ALLOCATOR(NavigationCurrentEntryChangeEvent);
|
|
|
|
public:
|
|
[[nodiscard]] static GC::Ref<NavigationCurrentEntryChangeEvent> construct_impl(JS::Realm&, FlyString const& event_name, Bindings::NavigationCurrentEntryChangeEventInit const&);
|
|
|
|
virtual ~NavigationCurrentEntryChangeEvent() override;
|
|
|
|
Optional<Bindings::NavigationType> const& navigation_type() const { return m_navigation_type; }
|
|
GC::Ref<NavigationHistoryEntry> from() const { return m_from; }
|
|
|
|
private:
|
|
NavigationCurrentEntryChangeEvent(JS::Realm&, FlyString const& event_name, Bindings::NavigationCurrentEntryChangeEventInit const& event_init);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
virtual void visit_edges(Cell::Visitor&) override;
|
|
|
|
Optional<Bindings::NavigationType> m_navigation_type;
|
|
GC::Ref<NavigationHistoryEntry> m_from;
|
|
};
|
|
|
|
}
|