[Vm-dev] [OpenSmalltalk/opensmalltalk-vm] No distinction between #delete and #backspace OSX Keydown events (#363)

Eliot Miranda notifications at github.com
Tue Jan 29 20:32:29 UTC 2019


I don't understand this code; I think John McIntosh is the author.  But I would suspect this from platforms/iOS/vm/OSX/sqSqueakOSXApplication+events.m in recordCharEvent:, which appears to me to be the only place where a different charCode for the keyUp could be produced.

        if (i > 1 || !mainView.lastSeenKeyBoardStrokeDetails) {
            evt.pressCode = EventKeyUp;
            evt.charCode = keyCodeRemembered;
            evt.utf32Code = 0;
            [self pushEventToQueue: (sqInputEvent *) &evt];
        }

Specifically this would appear to prevent the first key stroke from being pushed to the queue (i > 1, and pushEventToQueue:).  But the management of lastSeenKeyBoardStrokeDetails is complex and I've not analyzed it.  And what I don't understand is where the EventKeyUp event is generated if i = 0.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/OpenSmalltalk/opensmalltalk-vm/issues/363#issuecomment-458696060
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.squeakfoundation.org/pipermail/vm-dev/attachments/20190129/816a8abf/attachment.html>


More information about the Vm-dev mailing list