mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-11 09:27:00 +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.
36 lines
1.0 KiB
C++
36 lines
1.0 KiB
C++
/*
|
|
* Copyright (c) 2024, Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Bindings/HashChangeEvent.h>
|
|
#include <LibWeb/DOM/Event.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
class HashChangeEvent final : public DOM::Event {
|
|
WEB_PLATFORM_OBJECT(HashChangeEvent, DOM::Event);
|
|
GC_DECLARE_ALLOCATOR(HashChangeEvent);
|
|
|
|
public:
|
|
[[nodiscard]] static GC::Ref<HashChangeEvent> create(JS::Realm&, FlyString const& event_name, Bindings::HashChangeEventInit const&);
|
|
[[nodiscard]] static GC::Ref<HashChangeEvent> construct_impl(JS::Realm&, FlyString const& event_name, Bindings::HashChangeEventInit const&);
|
|
|
|
String old_url() const { return m_old_url; }
|
|
String new_url() const { return m_new_url; }
|
|
|
|
private:
|
|
HashChangeEvent(JS::Realm&, FlyString const& event_name, Bindings::HashChangeEventInit const& event_init);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
virtual void visit_edges(JS::Cell::Visitor& visitor) override;
|
|
|
|
String m_old_url;
|
|
String m_new_url;
|
|
};
|
|
|
|
}
|