VM: 201911282316 If I press [ctrl]+[c], ascii character 3 arrives in a key-stroke event. Like back then: http://www.physics.udel.edu/~watson/scen103/ascii.html If I press [ctrl]+[shift]+[c], ascii character 3 arrives in a key-stroke event, too. I expected ascii character 67. Key-down events and key-up events are fine. Here is an example of the raw event data for a [ctrl]+[c] coming from the VM into the Squeak image: #(2 87918093 3 0 2 3 0 1).
2 ... event type keyboard
87918093 ... time stamp
3 ... character code (ascii)
0 ... key-stroke (or character) type
2 ... ctrl-key as modifier
3 ... character code (unicode UTF32)
0 ... (reserved)
1 ... host window id — |
Just in case: Or is this intended behavior and we have to map those events on the image side? — |
In reply to this post by David T Lewis
It's tricky. See #396 and
— |
In reply to this post by David T Lewis
Closed #454. — |
Free forum by Nabble | Edit this page |