#ifndef FLUTTER_SHELL_PLATFORM_GLFW_KEY_EVENT_HANDLER_H_
#define FLUTTER_SHELL_PLATFORM_GLFW_KEY_EVENT_HANDLER_H_
#include <memory>
#include "flutter/shell/platform/common/cpp/client_wrapper/include/flutter/basic_message_channel.h"
#include "flutter/shell/platform/common/cpp/client_wrapper/include/flutter/binary_messenger.h"
#include "flutter/shell/platform/glfw/keyboard_hook_handler.h"
#include "flutter/shell/platform/glfw/public/flutter_glfw.h"
#include "rapidjson/document.h"
namespace flutter {
class KeyEventHandler : public KeyboardHookHandler {
public:
explicit KeyEventHandler(flutter::BinaryMessenger* messenger);
virtual ~KeyEventHandler();
void KeyboardHook(GLFWwindow* window,
int key,
int scancode,
int action,
int mods) override;
void CharHook(GLFWwindow* window, unsigned int code_point) override;
private:
std::unique_ptr<flutter::BasicMessageChannel<rapidjson::Document>> channel_;
};
}
#endif