mirror of
https://github.com/encounter/engine.git
synced 2026-03-30 11:09:55 -07:00
38d545ee17
Significantly improves the behavior of non-ASCII text input on Windows. Correctly processes incoming character events as UTF-16, and for now uses UTF-32 for the text model so that the existing index-based logic will work much more often. Future work is still needed, but this will handle far more cases correctly.
33 lines
1.0 KiB
C++
33 lines
1.0 KiB
C++
// Copyright 2013 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef FLUTTER_SHELL_PLATFORM_WINDOWS_KEYBOARD_HOOK_HANDLER_H_
|
|
#define FLUTTER_SHELL_PLATFORM_WINDOWS_KEYBOARD_HOOK_HANDLER_H_
|
|
|
|
#include "flutter/shell/platform/windows/public/flutter_windows.h"
|
|
|
|
namespace flutter {
|
|
|
|
class Win32FlutterWindow;
|
|
|
|
// Abstract class for handling keyboard input events.
|
|
class KeyboardHookHandler {
|
|
public:
|
|
virtual ~KeyboardHookHandler() = default;
|
|
|
|
// A function for hooking into keyboard input.
|
|
virtual void KeyboardHook(Win32FlutterWindow* window,
|
|
int key,
|
|
int scancode,
|
|
int action,
|
|
int mods) = 0;
|
|
|
|
// A function for hooking into unicode code point input.
|
|
virtual void CharHook(Win32FlutterWindow* window, char32_t code_point) = 0;
|
|
};
|
|
|
|
} // namespace flutter
|
|
|
|
#endif // FLUTTER_SHELL_PLATFORM_WINDOWS_KEYBOARD_HOOK_HANDLER_H_
|