#include "flutter/shell/platform/linux/fl_engine_private.h"
#include "flutter/shell/platform/linux/fl_key_event.h"
Go to the source code of this file.
Typedefs | |
typedef void(* | EmbedderSendKeyEvent) (const FlutterKeyEvent *event, FlutterKeyEventCallback callback, void *callback_user_data, void *send_key_event_user_data) |
typedef void(* | FlKeyEmbedderResponderAsyncCallback) (bool handled, gpointer user_data) |
Functions | |
G_BEGIN_DECLS | G_DECLARE_FINAL_TYPE (FlKeyEmbedderResponder, fl_key_embedder_responder, FL, KEY_EMBEDDER_RESPONDER, GObject) |
FlKeyEmbedderResponder * | fl_key_embedder_responder_new (EmbedderSendKeyEvent send_key_event, void *send_key_event_user_data) |
void | fl_key_embedder_responder_handle_event (FlKeyEmbedderResponder *responder, FlKeyEvent *event, uint64_t specified_logical_key, FlKeyEmbedderResponderAsyncCallback callback, gpointer user_data) |
void | fl_key_embedder_responder_sync_modifiers_if_needed (FlKeyEmbedderResponder *responder, guint state, double event_time) |
GHashTable * | fl_key_embedder_responder_get_pressed_state (FlKeyEmbedderResponder *responder) |
typedef void(* EmbedderSendKeyEvent) (const FlutterKeyEvent *event, FlutterKeyEventCallback callback, void *callback_user_data, void *send_key_event_user_data) |
Definition at line 22 of file fl_key_embedder_responder.h.
typedef void(* FlKeyEmbedderResponderAsyncCallback) (bool handled, gpointer user_data) |
FlKeyEmbedderResponderAsyncCallback: @event: whether the event has been handled. @user_data: the same value as user_data sent by #fl_key_responder_handle_event.
The signature for a callback with which a #FlKeyEmbedderResponder asynchronously reports whether the responder handles the event.
Definition at line 36 of file fl_key_embedder_responder.h.
GHashTable* fl_key_embedder_responder_get_pressed_state | ( | FlKeyEmbedderResponder * | responder | ) |
fl_key_embedder_responder_get_pressed_state: @responder: the #FlKeyEmbedderResponder self.
Returns the keyboard pressed state. The hash table contains one entry per pressed keys, mapping from the logical key to the physical key.
Definition at line 867 of file fl_key_embedder_responder.cc.
Referenced by fl_keyboard_manager_get_pressed_state().
void fl_key_embedder_responder_handle_event | ( | FlKeyEmbedderResponder * | responder, |
FlKeyEvent * | event, | ||
uint64_t | specified_logical_key, | ||
FlKeyEmbedderResponderAsyncCallback | callback, | ||
gpointer | user_data | ||
) |
fl_key_embedder_responder_handle_event: @responder: the #FlKeyEmbedderResponder self. @event: the event to be handled. Must not be null. The object is managed by callee and must not be assumed available after this function. @specified_logical_key: @callback: the callback to report the result. It should be called exactly once. Must not be null. @user_data: a value that will be sent back in the callback. Can be null.
Let the responder handle an event, expecting the responder to report whether to handle the event. The result will be reported by invoking callback
exactly once, which might happen after fl_key_embedder_responder_handle_event
or during it.
Definition at line 835 of file fl_key_embedder_responder.cc.
References fl_key_embedder_responder_handle_event_impl(), kEmptyEvent, and user_data.
Referenced by fl_keyboard_manager_handle_event(), and TEST().
FlKeyEmbedderResponder* fl_key_embedder_responder_new | ( | EmbedderSendKeyEvent | send_key_event, |
void * | send_key_event_user_data | ||
) |
FlKeyEmbedderResponder:
A #FlKeyResponder that handles events by sending the converted events through the embedder API.
This class communicates with the HardwareKeyboard API in the framework. fl_key_embedder_responder_new: @engine: The #FlEngine, whose the embedder API will be used to send the event.
Creates a new #FlKeyEmbedderResponder. @send_key_event: a function that is called on every key event. @send_key_event_user_data: an opaque pointer that will be sent back as the last argument of send_key_event, created and managed by the object that holds FlKeyEmbedderResponder.
Returns: a new #FlKeyEmbedderResponder.
Definition at line 237 of file fl_key_embedder_responder.cc.
References initialize_lock_bit_to_checked_keys(), initialize_logical_key_to_lock_bit_loop_body(), initialize_modifier_bit_to_checked_keys(), and send_key_event().
Referenced by fl_keyboard_manager_new(), and TEST().
void fl_key_embedder_responder_sync_modifiers_if_needed | ( | FlKeyEmbedderResponder * | responder, |
guint | state, | ||
double | event_time | ||
) |
fl_key_embedder_responder_sync_modifiers_if_needed: @responder: the #FlKeyEmbedderResponder self. @state: the state of the modifiers mask. @event_time: the time attribute of the incoming GDK event.
If needed, synthesize modifier keys up and down event by comparing their current pressing states with the given modifiers mask.
Definition at line 850 of file fl_key_embedder_responder.cc.
References kMicrosecondsPerMillisecond, state, and synchronize_pressed_states_loop_body().
Referenced by fl_keyboard_manager_sync_modifier_if_needed().
G_BEGIN_DECLS G_DECLARE_FINAL_TYPE | ( | FlKeyEmbedderResponder | , |
fl_key_embedder_responder | , | ||
FL | , | ||
KEY_EMBEDDER_RESPONDER | , | ||
GObject | |||
) |