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.
36 lines
1021 B
C++
36 lines
1021 B
C++
/*
|
|
* Copyright (c) 2022, Luke Wilde <lukew@serenityos.org>
|
|
* Copyright (c) 2022, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/FlyString.h>
|
|
#include <LibWeb/DOM/Event.h>
|
|
|
|
namespace Web::WebGL {
|
|
|
|
class WebGLContextEvent final : public DOM::Event {
|
|
WEB_PLATFORM_OBJECT(WebGLContextEvent, DOM::Event);
|
|
GC_DECLARE_ALLOCATOR(WebGLContextEvent);
|
|
|
|
public:
|
|
[[nodiscard]] static GC::Ref<WebGLContextEvent> create(JS::Realm&, FlyString const& type, Bindings::WebGLContextEventInit const&);
|
|
static WebIDL::ExceptionOr<GC::Ref<WebGLContextEvent>> construct_impl(JS::Realm&, FlyString const& type, Bindings::WebGLContextEventInit const&);
|
|
|
|
virtual ~WebGLContextEvent() override;
|
|
|
|
String const& status_message() const { return m_status_message; }
|
|
|
|
private:
|
|
WebGLContextEvent(JS::Realm&, FlyString const& type, Bindings::WebGLContextEventInit const&);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
|
|
String m_status_message;
|
|
};
|
|
|
|
}
|