mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
f3db548a3d
DeprecatedFlyString relies heavily on DeprecatedString's StringImpl, so let's rename it to A) match the name of DeprecatedString, B) write a new FlyString class that is tied to String.
73 lines
2.2 KiB
C++
73 lines
2.2 KiB
C++
/*
|
|
* Copyright (c) 2021-2022, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/TypeCasts.h>
|
|
#include <Kernel/API/KeyCode.h>
|
|
#include <LibWeb/UIEvents/EventModifier.h>
|
|
#include <LibWeb/UIEvents/UIEvent.h>
|
|
|
|
namespace Web::UIEvents {
|
|
|
|
struct KeyboardEventInit : public EventModifierInit {
|
|
DeprecatedString key { "" };
|
|
DeprecatedString code { "" };
|
|
u32 location { 0 };
|
|
bool repeat { false };
|
|
bool is_composing { false };
|
|
u32 key_code { 0 };
|
|
u32 char_code { 0 };
|
|
};
|
|
|
|
// https://www.w3.org/TR/uievents/#interface-keyboardevent
|
|
class KeyboardEvent final : public UIEvent {
|
|
WEB_PLATFORM_OBJECT(KeyboardEvent, UIEvent);
|
|
|
|
public:
|
|
static KeyboardEvent* create(JS::Realm&, DeprecatedFlyString const& event_name, KeyboardEventInit const& event_init = {});
|
|
static KeyboardEvent* construct_impl(JS::Realm&, DeprecatedFlyString const& event_name, KeyboardEventInit const& event_init);
|
|
static KeyboardEvent* create_from_platform_event(JS::Realm&, DeprecatedFlyString const& event_name, KeyCode, unsigned modifiers, u32 code_point);
|
|
|
|
virtual ~KeyboardEvent() override;
|
|
|
|
u32 key_code() const { return m_key_code; }
|
|
u32 char_code() const { return m_char_code; }
|
|
|
|
DeprecatedString key() const { return m_key; }
|
|
DeprecatedString code() const { return m_code; }
|
|
u32 location() const { return m_location; }
|
|
|
|
bool ctrl_key() const { return m_ctrl_key; }
|
|
bool shift_key() const { return m_shift_key; }
|
|
bool alt_key() const { return m_alt_key; }
|
|
bool meta_key() const { return m_meta_key; }
|
|
|
|
bool repeat() const { return m_repeat; }
|
|
bool is_composing() const { return m_is_composing; }
|
|
|
|
bool get_modifier_state(DeprecatedString const& key_arg);
|
|
|
|
virtual u32 which() const override { return m_key_code; }
|
|
|
|
private:
|
|
KeyboardEvent(JS::Realm&, DeprecatedFlyString const& event_name, KeyboardEventInit const& event_init);
|
|
|
|
DeprecatedString m_key;
|
|
DeprecatedString m_code;
|
|
u32 m_location { 0 };
|
|
bool m_ctrl_key { false };
|
|
bool m_shift_key { false };
|
|
bool m_alt_key { false };
|
|
bool m_meta_key { false };
|
|
bool m_repeat { false };
|
|
bool m_is_composing { false };
|
|
u32 m_key_code { 0 };
|
|
u32 m_char_code { 0 };
|
|
};
|
|
|
|
}
|