mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-07 21:59:54 +00:00
Resulting in a massive rename across almost everywhere! Alongside the namespace change, we now have the following names: * JS::NonnullGCPtr -> GC::Ref * JS::GCPtr -> GC::Ptr * JS::HeapFunction -> GC::Function * JS::CellImpl -> GC::Cell * JS::Handle -> GC::Root
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
/*
|
|
* Copyright (c) 2024, Jamie Mansfield <jmansfield@cadixdev.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/UIEvents/UIEvent.h>
|
|
|
|
namespace Web::UIEvents {
|
|
|
|
struct CompositionEventInit : public UIEventInit {
|
|
String data;
|
|
};
|
|
|
|
class CompositionEvent final : public UIEvent {
|
|
WEB_PLATFORM_OBJECT(CompositionEvent, UIEvent);
|
|
GC_DECLARE_ALLOCATOR(CompositionEvent);
|
|
|
|
public:
|
|
[[nodiscard]] static GC::Ref<CompositionEvent> create(JS::Realm&, FlyString const& event_name, CompositionEventInit const& = {});
|
|
static WebIDL::ExceptionOr<GC::Ref<CompositionEvent>> construct_impl(JS::Realm&, FlyString const& event_name, CompositionEventInit const& event_init);
|
|
|
|
virtual ~CompositionEvent() override;
|
|
|
|
// https://w3c.github.io/uievents/#dom-compositionevent-data
|
|
String data() const { return m_data; }
|
|
|
|
void init_composition_event(String const& type, bool bubbles, bool cancelable, HTML::Window* view, String const& data);
|
|
|
|
private:
|
|
CompositionEvent(JS::Realm&, FlyString const& event_name, CompositionEventInit const&);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
|
|
String m_data;
|
|
};
|
|
|
|
}
|