views:

19

answers:

1

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?

A: 

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.

Jeremy W. Sherman