Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

French Keyboard and Backend SDL2 - Several keys are not checkable with IsKeyDown #7306

Closed
oschemid opened this issue Feb 12, 2024 · 5 comments

Comments

@oschemid
Copy link

Version/Branch of Dear ImGui:

Version 1.90.2

Back-ends:

imgui_impl_sdl2.cpp

Compiler, OS:

Windows11 + VS2022

Full config/build information:

No response

Details:

Hello,

I uses the function IsKeyDown to check if the user presses a key. With my french keyboard, I cannot check the key called SDLK_Minus on an US Keyboard (the key after the 0), because the library SDL2 maps the key on SDLK_RIGHTPAREN.

I checked with the tools Demo-> Inputs & Focus and I found that several keys are not displayed in "Keys Down":
SDL_scancode_minus which is mapped to SDLK_RIGHTPAREN on my keyboard layout
SDL_scancode_period mapped to SDLK_COLON
SDL_scancode_slash mapped to SDLK_EXCLAIM
SDL_scancode_baskslash mapped to SDLK_ASTERISK
...

Do I have a solution, without modifying the function ImGui_ImplSDL2_KeycodeToImGuiKey to fix this issue ?

Regards

Screenshots/Video:

No response

Minimal, Complete and Verifiable Example code:

// Here's some code anyone can copy and paste to reproduce your issue
ImGui::Begin("Example Bug");
MoreCodeToExplainMyIssue();
ImGui::End();
@PathogenDavid
Copy link
Contributor

Semi-related issue with other non-US keyboards: #7136

@ocornut
Copy link
Owner

ocornut commented Feb 14, 2024

@oschemid See #7201 (comment) for further work on this.

I don't yet know what is the best solution for this. French appears to be the one with most holes but I presume other European languages would likely be affected, so I'd like to data for some of them.

@oschemid
Copy link
Author

Thank you @ocornut
I fixed temporarily the function ImGui_ImplSDL2_KeycodeToImGuiKey waiting for best implementation.
If I can help you, don't hesitate

@ocornut
Copy link
Owner

ocornut commented Mar 10, 2025

I believe the SDL backend should rely more on scancode and only use keycodes for alpha-numeric keys. Linking to #7672

ocornut added a commit that referenced this issue Mar 10, 2025
…anslated keycodes when dealing with OEM keys + Added ImGuiKey_Oem102. (#7136, #7201, #7206, #7306, #7670, #7672, #8468)
@ocornut
Copy link
Owner

ocornut commented Mar 10, 2025

I have pushed a rather important change a9e5382 where SDL backend now rely on scancode for OEM keys.
This AFAIK fixes most issues with French layouts.

Ref https://docs.google.com/spreadsheets/d/1TwAHusBpxf_avmk03FUSrni17RP8qXmbJeDzs5fs0nY/edit?pli=1&gid=0#gid=0

@ocornut ocornut closed this as completed Mar 10, 2025
ocornut added a commit that referenced this issue Mar 10, 2025
…7670, #7672, #8468)

+ more consistently use Ctrl+XXX instead of Ctrl-XXX.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants