#import <FlutterKeyboardManager.h>
Instance Methods | |
(nonnull instancetype) | - initWithDelegate: |
(void) | - handleEvent:withContext: |
(BOOL) | - isDispatchingKeyEvent: |
(void) | - syncModifiersIfNeeded:timestamp: |
(nonnull NSDictionary *) | - getPressedState |
(nonnull instancetype) | - initWithDelegate:keyboardLayout: |
A hub that manages how key events are dispatched to various Flutter key responders, and whether the event is propagated to the next NSResponder. Cooperates with |TextInputPlugin| to handle text
A keyboard event goes through a few sections, each can choose to handled the event, and only unhandled events can move to the next section:
Definition at line 78 of file FlutterKeyboardManager.h.
- (nonnull NSDictionary *) getPressedState |
Returns the keyboard pressed state.
Returns the keyboard pressed state. The dictionary contains one entry per pressed keys, mapping from the logical key to the physical key.
Definition at line 391 of file FlutterKeyboardManager.mm.
References FlutterEmbedderKeyResponder::getPressedState.
- (void) handleEvent: | (nonnull NSEvent*) | event | |
withContext: | (nonnull id<FlutterKeyboardManagerEventContext>) | eventContext | |
Processes a key event.
Unhandled events will be dispatched to the text input system, and possibly the next responder afterwards.
Definition at line 204 of file FlutterKeyboardManager.mm.
- (nonnull instancetype) initWithDelegate: | (nonnull id<FlutterKeyboardManagerDelegate>) | delegate |
Create a keyboard manager.
The |viewDelegate| is a weak reference, typically implemented by |FlutterViewController|.
Definition at line 138 of file FlutterKeyboardManager.mm.
References initWithDelegate:keyboardLayout:.
- (nonnull instancetype) initWithDelegate: | (nonnull id< FlutterKeyboardManagerDelegate >) | delegate | |
keyboardLayout: | (nonnull FlutterKeyboardLayout *) | keyboardLayout | |
Provided by category FlutterKeyboardManager(Testing).
Referenced by initWithDelegate:.
- (BOOL) isDispatchingKeyEvent: | (nonnull NSEvent *) | event |
Returns yes if is event currently being redispatched.
In some instances (i.e. emoji shortcut) the event may be redelivered by cocoa as key equivalent to FlutterTextInput, in which case it shouldn't be processed again.
- (void) syncModifiersIfNeeded: | (NSEventModifierFlags) | modifierFlags | |
timestamp: | (NSTimeInterval) | timestamp | |
Synthesize modifier keys events.
If needed, synthesize modifier keys up and down events by comparing their current pressing states with the given modifier flags.
Definition at line 373 of file FlutterKeyboardManager.mm.