Skip to content

Commit f99fe72

Browse files
committed
Backends: Win32: Fixed keyboard modifiers being reported when host window doesn't have focus. (#2622)
1 parent 2ad912b commit f99fe72

File tree

2 files changed

+15
-13
lines changed

2 files changed

+15
-13
lines changed

backends/imgui_impl_win32.cpp

+14-13
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,10 @@ typedef DWORD (WINAPI *PFN_XInputGetState)(DWORD, XINPUT_STATE*);
3333

3434
// CHANGELOG
3535
// (minor and older changes stripped away, please see git history for details)
36+
// 2021-08-02: Inputs: Fixed keyboard modifiers being reported when host window doesn't have focus.
3637
// 2021-07-29: Inputs: MousePos is correctly reported when the host platform window is hovered but not focused (using TrackMouseEvent() to receive WM_MOUSELEAVE events).
3738
// 2021-06-29: Reorganized backend to pull data from a single structure to facilitate usage with multiple-contexts (all g_XXXX access changed to bd->XXXX).
38-
// 2021-06-08: Fix ImGui_ImplWin32_EnableDpiAwareness() and ImGui_ImplWin32_GetDpiScaleForMonitor() to handle Windows 8.1/10 features without a manifest (per-monitor DPI, and properly calls SetProcessDpiAwareness() on 8.1).
39+
// 2021-06-08: Fixed ImGui_ImplWin32_EnableDpiAwareness() and ImGui_ImplWin32_GetDpiScaleForMonitor() to handle Windows 8.1/10 features without a manifest (per-monitor DPI, and properly calls SetProcessDpiAwareness() on 8.1).
3940
// 2021-03-23: Inputs: Clearing keyboard down array when losing focus (WM_KILLFOCUS).
4041
// 2021-02-18: Added ImGui_ImplWin32_EnableAlphaCompositing(). Non Visual Studio users will need to link with dwmapi.lib (MinGW/gcc: use -ldwmapi).
4142
// 2021-02-17: Fixed ImGui_ImplWin32_EnableDpiAwareness() attempting to get SetProcessDpiAwareness from shcore.dll on Windows 8 whereas it is only supported on Windows 8.1.
@@ -318,13 +319,6 @@ void ImGui_ImplWin32_NewFrame()
318319
io.DeltaTime = (float)(current_time - bd->Time) / bd->TicksPerSecond;
319320
bd->Time = current_time;
320321

321-
// Read keyboard modifiers inputs
322-
io.KeyCtrl = (::GetKeyState(VK_CONTROL) & 0x8000) != 0;
323-
io.KeyShift = (::GetKeyState(VK_SHIFT) & 0x8000) != 0;
324-
io.KeyAlt = (::GetKeyState(VK_MENU) & 0x8000) != 0;
325-
io.KeySuper = false;
326-
// io.KeysDown[], io.MousePos, io.MouseDown[], io.MouseWheel: filled by the WndProc handler below.
327-
328322
// Update OS mouse position
329323
ImGui_ImplWin32_UpdateMousePos();
330324

@@ -422,17 +416,24 @@ IMGUI_IMPL_API LRESULT ImGui_ImplWin32_WndProcHandler(HWND hwnd, UINT msg, WPARA
422416
io.MouseWheelH += (float)GET_WHEEL_DELTA_WPARAM(wParam) / (float)WHEEL_DELTA;
423417
return 0;
424418
case WM_KEYDOWN:
425-
case WM_SYSKEYDOWN:
426-
if (wParam < 256)
427-
io.KeysDown[wParam] = 1;
428-
return 0;
429419
case WM_KEYUP:
420+
case WM_SYSKEYDOWN:
430421
case WM_SYSKEYUP:
422+
{
423+
bool down = (msg == WM_KEYDOWN || msg == WM_SYSKEYDOWN);
431424
if (wParam < 256)
432-
io.KeysDown[wParam] = 0;
425+
io.KeysDown[wParam] = down;
426+
if (wParam == VK_CONTROL)
427+
io.KeyCtrl = down;
428+
if (wParam == VK_SHIFT)
429+
io.KeyShift = down;
430+
if (wParam == VK_MENU)
431+
io.KeyAlt = down;
433432
return 0;
433+
}
434434
case WM_KILLFOCUS:
435435
memset(io.KeysDown, 0, sizeof(io.KeysDown));
436+
io.KeyCtrl = io.KeyShift = io.KeyAlt = io.KeySuper = false;
436437
return 0;
437438
case WM_CHAR:
438439
// You can also use ToAscii()+GetKeyboardState() to retrieve characters.

docs/CHANGELOG.txt

+1
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ Other Changes:
9898
- Backends: Win32: IME functions are disabled by default for non-Visual Studio compilers (MinGW etc.). Enable with
9999
'#define IMGUI_ENABLE_WIN32_DEFAULT_IME_FUNCTIONS' for those compilers. Undo change from 1.82. (#2590, #738, #4185, #4301)
100100
- Backends: Win32: Mouse position is correctly reported when the host window is hovered but not focused. (#2445, #2696, #3751, #4377)
101+
- Backends: Fixed keyboard modifiers being reported when host window doesn't have focus. (#2622)
101102
- Backends: GLFW: Mouse position is correctly reported when the host window is hovered but not focused. (#3751, #4377, #2445)
102103
(backend now uses glfwSetCursorEnterCallback(). If you called ImGui_ImplGlfw_InitXXX with install_callbacks=false, you will
103104
need to install this callback and forward the data to the backend via ImGui_ImplGlfw_CursorEnterCallback).

0 commit comments

Comments
 (0)