1
0
mirror of https://github.com/Drezil/imgui.git synced 2025-04-03 18:02:43 +00:00

Examples: DirectX9/10/11: Added WM_SYSKEYDOWN / WM_SYSKEYUP handlers so e.g. VK_MENU can be read.

This commit is contained in:
omar 2017-10-23 10:01:18 +02:00
parent c14a66970b
commit d6a9956781
3 changed files with 6 additions and 0 deletions
examples
directx10_example
directx11_example
directx9_example

@ -271,10 +271,12 @@ IMGUI_API LRESULT ImGui_ImplWin32_WndProcHandler(HWND hwnd, UINT msg, WPARAM wPa
io.MousePos.y = (signed short)(lParam >> 16); io.MousePos.y = (signed short)(lParam >> 16);
return 0; return 0;
case WM_KEYDOWN: case WM_KEYDOWN:
case WM_SYSKEYDOWN:
if (wParam < 256) if (wParam < 256)
io.KeysDown[wParam] = 1; io.KeysDown[wParam] = 1;
return 0; return 0;
case WM_KEYUP: case WM_KEYUP:
case WM_SYSKEYUP:
if (wParam < 256) if (wParam < 256)
io.KeysDown[wParam] = 0; io.KeysDown[wParam] = 0;
return 0; return 0;

@ -278,10 +278,12 @@ IMGUI_API LRESULT ImGui_ImplWin32_WndProcHandler(HWND hwnd, UINT msg, WPARAM wPa
io.MousePos.y = (signed short)(lParam >> 16); io.MousePos.y = (signed short)(lParam >> 16);
return 0; return 0;
case WM_KEYDOWN: case WM_KEYDOWN:
case WM_SYSKEYDOWN:
if (wParam < 256) if (wParam < 256)
io.KeysDown[wParam] = 1; io.KeysDown[wParam] = 1;
return 0; return 0;
case WM_KEYUP: case WM_KEYUP:
case WM_SYSKEYUP:
if (wParam < 256) if (wParam < 256)
io.KeysDown[wParam] = 0; io.KeysDown[wParam] = 0;
return 0; return 0;

@ -218,10 +218,12 @@ IMGUI_API LRESULT ImGui_ImplWin32_WndProcHandler(HWND hwnd, UINT msg, WPARAM wPa
io.MousePos.y = (signed short)(lParam >> 16); io.MousePos.y = (signed short)(lParam >> 16);
return 0; return 0;
case WM_KEYDOWN: case WM_KEYDOWN:
case WM_SYSKEYDOWN:
if (wParam < 256) if (wParam < 256)
io.KeysDown[wParam] = 1; io.KeysDown[wParam] = 1;
return 0; return 0;
case WM_KEYUP: case WM_KEYUP:
case WM_SYSKEYUP:
if (wParam < 256) if (wParam < 256)
io.KeysDown[wParam] = 0; io.KeysDown[wParam] = 0;
return 0; return 0;