Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Missing keyUp events on meaningful key combinations (e.g. "Select till beginning of line")

I have an NSTextField which uses as an extended NSTextFieldCell, which creates a custom field editor, that intercepts and records key events. (Knowing the key events is important for the application, but the text field is still supposed to work as usual, by calling the [super ...] method). This is what the official documentation suggests for this problem.

I do receive most keyUp events while typing, but in certain cases I don't get one. It seems to happen, when pressing a key combination that has an action attached to it. E.g. Cmd-Shift-Left is not issuing an keyUp event. That input makes the whole line from point to the beginning appear selected, but already when the keyDown is received.

In those cases where it is missing, when looking at -performKeyEquivalent: by overriding it, I see this is called. Why is the keyUp not delivered?

like image 816
febeling Avatar asked Dec 02 '22 04:12

febeling


2 Answers

For others, this is the code to "fix" it:

- (void)sendEvent:(NSEvent *)event {
    if ([event type] == NSKeyUp && ([event modifierFlags] & NSCommandKeyMask))
        [[self keyWindow] sendEvent:event];
    else
        [super sendEvent:event];
}
like image 76
NateS Avatar answered Dec 04 '22 04:12

NateS


This is just the way the event architecture is set up. Sending key equivalent messages is preferred to sending messages for the various keys that are part of them. See "Handling Key Events," in particular, "Handling Key Equivalents." It looks like you could subclass NSApplication and override -sendEvent: to dispatch these events however you'd like, but you'd likely break more functionality than you'd add.

like image 23
Jeremy W. Sherman Avatar answered Dec 04 '22 04:12

Jeremy W. Sherman