Doug Binks

Results 176 comments of Doug Binks

This is just a note that I'm leaving this issue open as [you mentioned there was some documentation incoming](https://github.com/dougbinks/enkiTS/pull/110#issuecomment-1848233383https://github.com/dougbinks/enkiTS/pull/110#issuecomment-1848233383). Do you think the `dev` branch with the #110 can be...

Closed, many thanks for the issue and PRs!

I'm not sure this needs a context, perhaps just a flag to invert order depending on version. As mentioned in my earlier post the minimum would be to store the...

If you take a look at the [issues for glfwSetCharCallback](https://github.com/glfw/glfw/issues?utf8=%E2%9C%93&q=is%3Aissue+glfwSetCharModsCallback) you'll see that it didn't work for the use-case you've described. Basically a key press such as ```CTRL+ALT+8``` will not...

Key codes correspond to [physical keys](https://www.glfw.org/docs/3.3/group__keys.html), not to the characters on them which introduces a problem when there are multiple characters which can be produced by a key depending on...

I think I understand what people want - developers want to be able to say `press CTRL+S to save` and have that work for any keyboard layout. It's already been...

`glfwSetTranslatedCharCallback()` offering translations for letters A-Z does seem a good initial step covering most peoples issues. I don't have time to implement this myself at the moment. `GetKeyStateForCharacter()` needs investigation...

Grüezi! The key callback returns physical keys. Pressing a given key should not produce different values when other keys are pressed - thus any key which has multiple representations (such...

Qt explicitly states in their documentation on QKeyEvent::text(): [*Return values when modifier keys such as Shift, Control, Alt, and Meta are pressed differ among platforms and could return an empty...

I believe I understand what you need as I need the same for my own work, and currently have a workaround which isn't 100% satisfactory. Which is why I propose...