Go to the source code of this file.
Functions | |
static void | fl_key_responder_default_init (FlKeyResponderInterface *iface) |
void | fl_key_responder_handle_event (FlKeyResponder *self, FlKeyEvent *event, FlKeyResponderAsyncCallback callback, gpointer user_data, uint64_t specified_logical_key) |
|
static |
Definition at line 9 of file fl_key_responder.cc.
void fl_key_responder_handle_event | ( | FlKeyResponder * | responder, |
FlKeyEvent * | event, | ||
FlKeyResponderAsyncCallback | callback, | ||
gpointer | user_data, | ||
uint64_t | specified_logical_key = 0 |
||
) |
fl_key_responder_handle_event: @responder: the #FlKeyResponder 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. @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_responder_handle_event
or during it.
Definition at line 11 of file fl_key_responder.cc.
References callback, event, specified_logical_key, and user_data.
Referenced by dispatch_to_responder(), TEST(), and test_lock_event().