You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: backends/imgui_impl_sdl2.cpp
+26-8
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,7 @@
21
21
22
22
// CHANGELOG
23
23
// (minor and older changes stripped away, please see git history for details)
24
+
// 2025-03-10: When dealing with OEM keys, use scancodes instead of translated keycodes to choose ImGuiKey values. (#7136, #7201, #7206, #7306, #7670, #7672, #8468)
24
25
// 2025-02-26: Only start SDL_CaptureMouse() when mouse is being dragged, to mitigate issues with e.g.Linux debuggers not claiming capture back. (#6410, #3650)
25
26
// 2025-02-24: Avoid calling SDL_GetGlobalMouseState() when mouse is in relative mode.
26
27
// 2025-02-18: Added ImGuiMouseCursor_Wait and ImGuiMouseCursor_Progress mouse cursor support.
Copy file name to clipboardexpand all lines: backends/imgui_impl_sdl3.cpp
+26-8
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,7 @@
20
20
21
21
// CHANGELOG
22
22
// (minor and older changes stripped away, please see git history for details)
23
+
// 2025-03-10: When dealing with OEM keys, use scancodes instead of translated keycodes to choose ImGuiKey values. (#7136, #7201, #7206, #7306, #7670, #7672, #8468)
23
24
// 2025-02-26: Only start SDL_CaptureMouse() when mouse is being dragged, to mitigate issues with e.g.Linux debuggers not claiming capture back. (#6410, #3650)
24
25
// 2025-02-24: Avoid calling SDL_GetGlobalMouseState() when mouse is in relative mode.
25
26
// 2025-02-18: Added ImGuiMouseCursor_Wait and ImGuiMouseCursor_Progress mouse cursor support.
Copy file name to clipboardexpand all lines: backends/imgui_impl_win32.cpp
+33-10
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,7 @@
21
21
22
22
// CHANGELOG
23
23
// (minor and older changes stripped away, please see git history for details)
24
+
// 2025-03-10: When dealing with OEM keys, use scancodes instead of translated keycodes to choose ImGuiKey values. (#7136, #7201, #7206, #7306, #7670, #7672, #8468)
24
25
// 2025-02-18: Added ImGuiMouseCursor_Wait and ImGuiMouseCursor_Progress mouse cursor support.
25
26
// 2024-07-08: Inputs: Fixed ImGuiMod_Super being mapped to VK_APPS instead of VK_LWIN||VK_RWIN. (#7768)
26
27
// 2023-10-05: Inputs: Added support for extra ImGuiKey values: F13 to F24 function keys, app back/forward keys.
Copy file name to clipboardexpand all lines: imgui.h
+3-2
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@
29
29
// Library Version
30
30
// (Integer encoded as XYYZZ for use in #if preprocessor conditionals, e.g. '#if IMGUI_VERSION_NUM >= 12345')
31
31
#defineIMGUI_VERSION"1.91.9 WIP"
32
-
#defineIMGUI_VERSION_NUM19187
32
+
#defineIMGUI_VERSION_NUM19188
33
33
#defineIMGUI_HAS_TABLE
34
34
35
35
/*
@@ -975,7 +975,7 @@ namespace ImGui
975
975
IMGUI_API boolIsKeyReleased(ImGuiKey key); // was key released (went from Down to !Down)?
976
976
IMGUI_API boolIsKeyChordPressed(ImGuiKeyChord key_chord); // was key chord (mods + key) pressed, e.g. you can pass 'ImGuiMod_Ctrl | ImGuiKey_S' as a key-chord. This doesn't do any routing or focus check, please consider using Shortcut() function instead.
977
977
IMGUI_API intGetKeyPressedAmount(ImGuiKey key, float repeat_delay, float rate); // uses provided repeat rate/delay. return a count, most often 0 or 1 but might be >1 if RepeatRate is small enough that DeltaTime > RepeatRate
978
-
IMGUI_API constchar* GetKeyName(ImGuiKey key); // [DEBUG] returns English name of the key. Those names a provided for debugging purpose and are not meant to be saved persistently not compared.
978
+
IMGUI_API constchar* GetKeyName(ImGuiKey key); // [DEBUG] returns English name of the key. Those names are provided for debugging purpose and are not meant to be saved persistently nor compared.
979
979
IMGUI_API voidSetNextFrameWantCaptureKeyboard(bool want_capture_keyboard); // Override io.WantCaptureKeyboard flag next frame (said flag is left for your application to handle, typically when true it instructs your app to ignore inputs). e.g. force capture keyboard when your widget is being hovered. This is equivalent to setting "io.WantCaptureKeyboard = want_capture_keyboard"; after the next NewFrame() call.
0 commit comments