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.
45 lines
1.4 KiB
C++
45 lines
1.4 KiB
C++
/*
|
|
* Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
|
|
* Copyright (c) 2026, Sam Atkins <sam@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/FlyString.h>
|
|
#include <AK/Optional.h>
|
|
#include <AK/Variant.h>
|
|
#include <LibGC/Root.h>
|
|
#include <LibWeb/Bindings/TrackEvent.h>
|
|
#include <LibWeb/DOM/Event.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
using NullableTrackType = Variant<GC::Root<VideoTrack>, GC::Root<AudioTrack>, GC::Root<TextTrack>, Empty>;
|
|
|
|
class TrackEvent : public DOM::Event {
|
|
WEB_PLATFORM_OBJECT(TrackEvent, DOM::Event);
|
|
GC_DECLARE_ALLOCATOR(TrackEvent);
|
|
|
|
public:
|
|
[[nodiscard]] static GC::Ref<TrackEvent> create(JS::Realm&, FlyString const& event_name, Bindings::TrackEventInit const& = {});
|
|
static WebIDL::ExceptionOr<GC::Ref<TrackEvent>> construct_impl(JS::Realm&, FlyString const& event_name, Bindings::TrackEventInit const&);
|
|
|
|
// https://html.spec.whatwg.org/multipage/media.html#dom-trackevent-track
|
|
NullableTrackType track() const;
|
|
|
|
private:
|
|
TrackEvent(JS::Realm&, FlyString const& event_name, Bindings::TrackEventInit const&);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
virtual void visit_edges(Visitor&) override;
|
|
|
|
using TrackTypeInternal = Variant<Empty, GC::Ref<VideoTrack>, GC::Ref<AudioTrack>, GC::Ref<TextTrack>>;
|
|
static TrackTypeInternal to_track_type_internal(NullableTrackType const&);
|
|
|
|
TrackTypeInternal m_track;
|
|
};
|
|
|
|
}
|