Skip to content

Commit eec097f

Browse files
committed
Added ImGuiMouseCursor_Progress mouse cursor 8a35386+ support in SDL2,SDL3,Win32,Allegro5 backends.
Amend 8a35386
1 parent 8a35386 commit eec097f

11 files changed

+18
-11
lines changed

backends/imgui_impl_allegro5.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
// CHANGELOG
2222
// (minor and older changes stripped away, please see git history for details)
23-
// 2025-02-18: Added ImGuiMouseCursor_Wait mouse cursor support.
23+
// 2025-02-18: Added ImGuiMouseCursor_Wait and ImGuiMouseCursor_Progress mouse cursor support.
2424
// 2025-01-06: Avoid calling al_set_mouse_cursor() repeatedly since it appears to leak on on X11 (#8256).
2525
// 2024-08-22: moved some OS/backend related function pointers from ImGuiIO to ImGuiPlatformIO:
2626
// - io.GetClipboardTextFn -> platform_io.Platform_GetClipboardTextFn
@@ -596,6 +596,7 @@ static void ImGui_ImplAllegro5_UpdateMouseCursor()
596596
case ImGuiMouseCursor_ResizeNESW: cursor_id = ALLEGRO_SYSTEM_MOUSE_CURSOR_RESIZE_NE; break;
597597
case ImGuiMouseCursor_ResizeNWSE: cursor_id = ALLEGRO_SYSTEM_MOUSE_CURSOR_RESIZE_NW; break;
598598
case ImGuiMouseCursor_Wait: cursor_id = ALLEGRO_SYSTEM_MOUSE_CURSOR_BUSY; break;
599+
case ImGuiMouseCursor_Progress: cursor_id = ALLEGRO_SYSTEM_MOUSE_CURSOR_PROGRESS; break;
599600
case ImGuiMouseCursor_NotAllowed: cursor_id = ALLEGRO_SYSTEM_MOUSE_CURSOR_UNAVAILABLE; break;
600601
}
601602
al_set_system_mouse_cursor(bd->Display, cursor_id);

backends/imgui_impl_glfw.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// [X] Platform: Mouse cursor shape and visibility (ImGuiBackendFlags_HasMouseCursors). Resizing cursors requires GLFW 3.4+! Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'.
1212
// Missing features or Issues:
1313
// [ ] Touch events are only correctly identified as Touch on Windows. This create issues with some interactions. GLFW doesn't provide a way to identify touch inputs from mouse inputs, we cannot call io.AddMouseSourceEvent() to identify the source. We provide a Windows-specific workaround.
14-
// [ ] Missing ImGuiMouseCursor_Wait cursor.
14+
// [ ] Missing ImGuiMouseCursor_Wait and ImGuiMouseCursor_Progress cursors.
1515

1616
// You can use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this.
1717
// Prefer including the entire imgui/ repository into your project (either as a copy or as a submodule), and only build the backends you need.

backends/imgui_impl_glfw.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
// [X] Platform: Mouse cursor shape and visibility (ImGuiBackendFlags_HasMouseCursors). Resizing cursors requires GLFW 3.4+! Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'.
1111
// Missing features or Issues:
1212
// [ ] Touch events are only correctly identified as Touch on Windows. This create issues with some interactions. GLFW doesn't provide a way to identify touch inputs from mouse inputs, we cannot call io.AddMouseSourceEvent() to identify the source. We provide a Windows-specific workaround.
13-
// [ ] Missing ImGuiMouseCursor_Wait cursor.
13+
// [ ] Missing ImGuiMouseCursor_Wait and ImGuiMouseCursor_Progress cursors.
1414

1515
// You can use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this.
1616
// Prefer including the entire imgui/ repository into your project (either as a copy or as a submodule), and only build the backends you need.

backends/imgui_impl_osx.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// [X] Platform: Mouse cursor shape and visibility (ImGuiBackendFlags_HasMouseCursors). Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'.
1212
// [X] Platform: IME support.
1313
// Missing features or Issues:
14-
// [ ] Missing ImGuiMouseCursor_Wait cursor.
14+
// [ ] Missing ImGuiMouseCursor_Wait and ImGuiMouseCursor_Progress cursors.
1515

1616
// You can use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this.
1717
// Prefer including the entire imgui/ repository into your project (either as a copy or as a submodule), and only build the backends you need.

backends/imgui_impl_osx.mm

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// [X] Platform: Mouse cursor shape and visibility (ImGuiBackendFlags_HasMouseCursors). Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'.
1212
// [X] Platform: IME support.
1313
// Missing features or Issues:
14-
// [ ] Missing ImGuiMouseCursor_Wait cursor.
14+
// [ ] Missing ImGuiMouseCursor_Wait and ImGuiMouseCursor_Progress cursors.
1515

1616
// You can use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this.
1717
// Prefer including the entire imgui/ repository into your project (either as a copy or as a submodule), and only build the backends you need.

backends/imgui_impl_sdl2.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
// CHANGELOG
2323
// (minor and older changes stripped away, please see git history for details)
24-
// 2025-02-18: Added ImGuiMouseCursor_Wait mouse cursor support.
24+
// 2025-02-18: Added ImGuiMouseCursor_Wait and ImGuiMouseCursor_Progress mouse cursor support.
2525
// 2025-02-10: Using SDL_OpenURL() in platform_io.Platform_OpenInShellFn handler.
2626
// 2025-01-20: Made ImGui_ImplSDL2_SetGamepadMode(ImGui_ImplSDL2_GamepadMode_Manual) accept an empty array.
2727
// 2024-10-24: Emscripten: from SDL 2.30.9, SDL_EVENT_MOUSE_WHEEL event doesn't require dividing by 100.0f.
@@ -501,6 +501,7 @@ static bool ImGui_ImplSDL2_Init(SDL_Window* window, SDL_Renderer* renderer, void
501501
bd->MouseCursors[ImGuiMouseCursor_ResizeNWSE] = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_SIZENWSE);
502502
bd->MouseCursors[ImGuiMouseCursor_Hand] = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_HAND);
503503
bd->MouseCursors[ImGuiMouseCursor_Wait] = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_WAIT);
504+
bd->MouseCursors[ImGuiMouseCursor_Progress] = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_WAITARROW);
504505
bd->MouseCursors[ImGuiMouseCursor_NotAllowed] = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_NO);
505506

506507
// Set platform dependent data in viewport

backends/imgui_impl_sdl3.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
// CHANGELOG
2222
// (minor and older changes stripped away, please see git history for details)
23-
// 2025-02-18: Added ImGuiMouseCursor_Wait mouse cursor support.
23+
// 2025-02-18: Added ImGuiMouseCursor_Wait and ImGuiMouseCursor_Progress mouse cursor support.
2424
// 2025-02-10: Using SDL_OpenURL() in platform_io.Platform_OpenInShellFn handler.
2525
// 2025-01-20: Made ImGui_ImplSDL3_SetGamepadMode(ImGui_ImplSDL3_GamepadMode_Manual) accept an empty array.
2626
// 2024-10-24: Emscripten: SDL_EVENT_MOUSE_WHEEL event doesn't require dividing by 100.0f on Emscripten.
@@ -482,6 +482,7 @@ static bool ImGui_ImplSDL3_Init(SDL_Window* window, SDL_Renderer* renderer, void
482482
bd->MouseCursors[ImGuiMouseCursor_ResizeNWSE] = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_NWSE_RESIZE);
483483
bd->MouseCursors[ImGuiMouseCursor_Hand] = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_POINTER);
484484
bd->MouseCursors[ImGuiMouseCursor_Wait] = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_WAIT);
485+
bd->MouseCursors[ImGuiMouseCursor_Progress] = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_PROGRESS);
485486
bd->MouseCursors[ImGuiMouseCursor_NotAllowed] = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_NOT_ALLOWED);
486487

487488
// Set platform dependent data in viewport

backends/imgui_impl_win32.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
// CHANGELOG
2323
// (minor and older changes stripped away, please see git history for details)
24-
// 2025-02-18: Added ImGuiMouseCursor_Wait mouse cursor support.
24+
// 2025-02-18: Added ImGuiMouseCursor_Wait and ImGuiMouseCursor_Progress mouse cursor support.
2525
// 2024-07-08: Inputs: Fixed ImGuiMod_Super being mapped to VK_APPS instead of VK_LWIN||VK_RWIN. (#7768)
2626
// 2023-10-05: Inputs: Added support for extra ImGuiKey values: F13 to F24 function keys, app back/forward keys.
2727
// 2023-09-25: Inputs: Synthesize key-down event on key-up for VK_SNAPSHOT / ImGuiKey_PrintScreen as Windows doesn't emit it (same behavior as GLFW/SDL).
@@ -258,6 +258,7 @@ static bool ImGui_ImplWin32_UpdateMouseCursor(ImGuiIO& io, ImGuiMouseCursor imgu
258258
case ImGuiMouseCursor_ResizeNWSE: win32_cursor = IDC_SIZENWSE; break;
259259
case ImGuiMouseCursor_Hand: win32_cursor = IDC_HAND; break;
260260
case ImGuiMouseCursor_Wait: win32_cursor = IDC_WAIT; break;
261+
case ImGuiMouseCursor_Progress: win32_cursor = IDC_APPSTARTING; break;
261262
case ImGuiMouseCursor_NotAllowed: win32_cursor = IDC_NO; break;
262263
}
263264
::SetCursor(::LoadCursor(nullptr, win32_cursor));

docs/CHANGELOG.txt

+4-2
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,14 @@ Other changes:
8383
is hovered, merely it's visibility. (#8399, #8387) [@nicovanbentum]
8484
- TextLinkOpenURL(): fixed default Win32 io.PlatformOpenInShellFn handler to
8585
handle UTF-8 regardless of system regional settings. (#7660) [@achabense]
86-
- Misc: Added ImGuiMouseCursor_Wait mouse cursor (busy/wait/hourglass shape).
86+
- Misc: Added ImGuiMouseCursor_Wait and ImGuiMouseCursor_Progress mouse cursors
87+
(busy/wait/hourglass shape, with or without an arrow cursor).
8788
- Demo: Combos: demonstrate a very simple way to add a filter to a combo,
8889
by showing the filter inside the combo contents. (#718)
8990
- Backends: SDL2, SDL3: Using SDL_OpenURL() in platform_io.Platform_OpenInShellFn
9091
handler. (#7660) [@achabense]
91-
- Backends: SDL2, SDL3, Win32, Allegro5: Added support for ImGuiMouseCursor_Wait.
92+
- Backends: SDL2, SDL3, Win32, Allegro5: Added support for ImGuiMouseCursor_Wait
93+
and ImGuiMouseCursor_Progress cursors.
9294
- Backends: OpenGL3: Lazily reinitialize embedded GL loader for when calling backend
9395
from e.g. other DLL boundaries. (#8406)
9496
- Backends: Metal: Fixed a crash on application resources. (#8367, #7419) [@anszom]

imgui.h

+1
Original file line numberDiff line numberDiff line change
@@ -1834,6 +1834,7 @@ enum ImGuiMouseCursor_
18341834
ImGuiMouseCursor_ResizeNWSE, // When hovering over the bottom-right corner of a window
18351835
ImGuiMouseCursor_Hand, // (Unused by Dear ImGui functions. Use for e.g. hyperlinks)
18361836
ImGuiMouseCursor_Wait, // When waiting for something to process/load.
1837+
ImGuiMouseCursor_Progress, // When waiting for something to process/load, but application is still interactive.
18371838
ImGuiMouseCursor_NotAllowed, // When hovering something with disallowed interaction. Usually a crossed circle.
18381839
ImGuiMouseCursor_COUNT
18391840
};

imgui_demo.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -7593,7 +7593,7 @@ static void ShowDemoWindowInputs()
75937593
IMGUI_DEMO_MARKER("Inputs & Focus/Mouse Cursors");
75947594
if (ImGui::TreeNode("Mouse Cursors"))
75957595
{
7596-
const char* mouse_cursors_names[] = { "Arrow", "TextInput", "ResizeAll", "ResizeNS", "ResizeEW", "ResizeNESW", "ResizeNWSE", "Hand", "Wait", "NotAllowed" };
7596+
const char* mouse_cursors_names[] = { "Arrow", "TextInput", "ResizeAll", "ResizeNS", "ResizeEW", "ResizeNESW", "ResizeNWSE", "Hand", "Wait", "Progress", "NotAllowed" };
75977597
IM_ASSERT(IM_ARRAYSIZE(mouse_cursors_names) == ImGuiMouseCursor_COUNT);
75987598

75997599
ImGuiMouseCursor current = ImGui::GetMouseCursor();

0 commit comments

Comments
 (0)