Skip to content

Commit 8a35386

Browse files
committed
Added ImGuiMouseCursor_Wait mouse cursor (busy/wait/hourglass shape) + support in SDL2,SDL3,Win32,Allegro5 backends.
1 parent 8f0411f commit 8a35386

11 files changed

+20
-3
lines changed

backends/imgui_impl_allegro5.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +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.
2324
// 2025-01-06: Avoid calling al_set_mouse_cursor() repeatedly since it appears to leak on on X11 (#8256).
2425
// 2024-08-22: moved some OS/backend related function pointers from ImGuiIO to ImGuiPlatformIO:
2526
// - io.GetClipboardTextFn -> platform_io.Platform_GetClipboardTextFn
@@ -594,6 +595,7 @@ static void ImGui_ImplAllegro5_UpdateMouseCursor()
594595
case ImGuiMouseCursor_ResizeEW: cursor_id = ALLEGRO_SYSTEM_MOUSE_CURSOR_RESIZE_E; break;
595596
case ImGuiMouseCursor_ResizeNESW: cursor_id = ALLEGRO_SYSTEM_MOUSE_CURSOR_RESIZE_NE; break;
596597
case ImGuiMouseCursor_ResizeNWSE: cursor_id = ALLEGRO_SYSTEM_MOUSE_CURSOR_RESIZE_NW; break;
598+
case ImGuiMouseCursor_Wait: cursor_id = ALLEGRO_SYSTEM_MOUSE_CURSOR_BUSY; break;
597599
case ImGuiMouseCursor_NotAllowed: cursor_id = ALLEGRO_SYSTEM_MOUSE_CURSOR_UNAVAILABLE; break;
598600
}
599601
al_set_system_mouse_cursor(bd->Display, cursor_id);

backends/imgui_impl_glfw.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +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.
1415

1516
// You can use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this.
1617
// 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
Original file line numberDiff line numberDiff line change
@@ -10,6 +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.
1314

1415
// You can use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this.
1516
// 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

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
// [X] Platform: Gamepad support. Enabled with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'.
1111
// [X] Platform: Mouse cursor shape and visibility (ImGuiBackendFlags_HasMouseCursors). Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'.
1212
// [X] Platform: IME support.
13+
// Missing features or Issues:
14+
// [ ] Missing ImGuiMouseCursor_Wait cursor.
1315

1416
// You can use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this.
1517
// 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

+4-2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
// [X] Platform: Gamepad support. Enabled with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'.
1111
// [X] Platform: Mouse cursor shape and visibility (ImGuiBackendFlags_HasMouseCursors). Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'.
1212
// [X] Platform: IME support.
13+
// Missing features or Issues:
14+
// [ ] Missing ImGuiMouseCursor_Wait cursor.
1315

1416
// You can use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this.
1517
// Prefer including the entire imgui/ repository into your project (either as a copy or as a submodule), and only build the backends you need.
@@ -422,12 +424,12 @@ bool ImGui_ImplOSX_Init(NSView* view)
422424
bd->MouseCursors[ImGuiMouseCursor_Arrow] = [NSCursor arrowCursor];
423425
bd->MouseCursors[ImGuiMouseCursor_TextInput] = [NSCursor IBeamCursor];
424426
bd->MouseCursors[ImGuiMouseCursor_ResizeAll] = [NSCursor closedHandCursor];
425-
bd->MouseCursors[ImGuiMouseCursor_Hand] = [NSCursor pointingHandCursor];
426-
bd->MouseCursors[ImGuiMouseCursor_NotAllowed] = [NSCursor operationNotAllowedCursor];
427427
bd->MouseCursors[ImGuiMouseCursor_ResizeNS] = [NSCursor respondsToSelector:@selector(_windowResizeNorthSouthCursor)] ? [NSCursor _windowResizeNorthSouthCursor] : [NSCursor resizeUpDownCursor];
428428
bd->MouseCursors[ImGuiMouseCursor_ResizeEW] = [NSCursor respondsToSelector:@selector(_windowResizeEastWestCursor)] ? [NSCursor _windowResizeEastWestCursor] : [NSCursor resizeLeftRightCursor];
429429
bd->MouseCursors[ImGuiMouseCursor_ResizeNESW] = [NSCursor respondsToSelector:@selector(_windowResizeNorthEastSouthWestCursor)] ? [NSCursor _windowResizeNorthEastSouthWestCursor] : [NSCursor closedHandCursor];
430430
bd->MouseCursors[ImGuiMouseCursor_ResizeNWSE] = [NSCursor respondsToSelector:@selector(_windowResizeNorthWestSouthEastCursor)] ? [NSCursor _windowResizeNorthWestSouthEastCursor] : [NSCursor closedHandCursor];
431+
bd->MouseCursors[ImGuiMouseCursor_Hand] = [NSCursor pointingHandCursor];
432+
bd->MouseCursors[ImGuiMouseCursor_NotAllowed] = [NSCursor operationNotAllowedCursor];
431433

432434
// Note that imgui.cpp also include default OSX clipboard handlers which can be enabled
433435
// by adding '#define IMGUI_ENABLE_OSX_DEFAULT_CLIPBOARD_FUNCTIONS' in imconfig.h and adding '-framework ApplicationServices' to your linker command-line.

backends/imgui_impl_sdl2.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -21,6 +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.
2425
// 2025-02-10: Using SDL_OpenURL() in platform_io.Platform_OpenInShellFn handler.
2526
// 2025-01-20: Made ImGui_ImplSDL2_SetGamepadMode(ImGui_ImplSDL2_GamepadMode_Manual) accept an empty array.
2627
// 2024-10-24: Emscripten: from SDL 2.30.9, SDL_EVENT_MOUSE_WHEEL event doesn't require dividing by 100.0f.
@@ -499,6 +500,7 @@ static bool ImGui_ImplSDL2_Init(SDL_Window* window, SDL_Renderer* renderer, void
499500
bd->MouseCursors[ImGuiMouseCursor_ResizeNESW] = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_SIZENESW);
500501
bd->MouseCursors[ImGuiMouseCursor_ResizeNWSE] = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_SIZENWSE);
501502
bd->MouseCursors[ImGuiMouseCursor_Hand] = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_HAND);
503+
bd->MouseCursors[ImGuiMouseCursor_Wait] = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_WAIT);
502504
bd->MouseCursors[ImGuiMouseCursor_NotAllowed] = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_NO);
503505

504506
// Set platform dependent data in viewport

backends/imgui_impl_sdl3.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +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.
2324
// 2025-02-10: Using SDL_OpenURL() in platform_io.Platform_OpenInShellFn handler.
2425
// 2025-01-20: Made ImGui_ImplSDL3_SetGamepadMode(ImGui_ImplSDL3_GamepadMode_Manual) accept an empty array.
2526
// 2024-10-24: Emscripten: SDL_EVENT_MOUSE_WHEEL event doesn't require dividing by 100.0f on Emscripten.
@@ -480,6 +481,7 @@ static bool ImGui_ImplSDL3_Init(SDL_Window* window, SDL_Renderer* renderer, void
480481
bd->MouseCursors[ImGuiMouseCursor_ResizeNESW] = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_NESW_RESIZE);
481482
bd->MouseCursors[ImGuiMouseCursor_ResizeNWSE] = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_NWSE_RESIZE);
482483
bd->MouseCursors[ImGuiMouseCursor_Hand] = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_POINTER);
484+
bd->MouseCursors[ImGuiMouseCursor_Wait] = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_WAIT);
483485
bd->MouseCursors[ImGuiMouseCursor_NotAllowed] = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_NOT_ALLOWED);
484486

485487
// Set platform dependent data in viewport

backends/imgui_impl_win32.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -21,6 +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.
2425
// 2024-07-08: Inputs: Fixed ImGuiMod_Super being mapped to VK_APPS instead of VK_LWIN||VK_RWIN. (#7768)
2526
// 2023-10-05: Inputs: Added support for extra ImGuiKey values: F13 to F24 function keys, app back/forward keys.
2627
// 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).
@@ -256,6 +257,7 @@ static bool ImGui_ImplWin32_UpdateMouseCursor(ImGuiIO& io, ImGuiMouseCursor imgu
256257
case ImGuiMouseCursor_ResizeNESW: win32_cursor = IDC_SIZENESW; break;
257258
case ImGuiMouseCursor_ResizeNWSE: win32_cursor = IDC_SIZENWSE; break;
258259
case ImGuiMouseCursor_Hand: win32_cursor = IDC_HAND; break;
260+
case ImGuiMouseCursor_Wait: win32_cursor = IDC_WAIT; break;
259261
case ImGuiMouseCursor_NotAllowed: win32_cursor = IDC_NO; break;
260262
}
261263
::SetCursor(::LoadCursor(nullptr, win32_cursor));

docs/CHANGELOG.txt

+2
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,12 @@ 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).
8687
- Demo: Combos: demonstrate a very simple way to add a filter to a combo,
8788
by showing the filter inside the combo contents. (#718)
8889
- Backends: SDL2, SDL3: Using SDL_OpenURL() in platform_io.Platform_OpenInShellFn
8990
handler. (#7660) [@achabense]
91+
- Backends: SDL2, SDL3, Win32, Allegro5: Added support for ImGuiMouseCursor_Wait.
9092
- Backends: OpenGL3: Lazily reinitialize embedded GL loader for when calling backend
9193
from e.g. other DLL boundaries. (#8406)
9294
- Backends: Metal: Fixed a crash on application resources. (#8367, #7419) [@anszom]

imgui.h

+1
Original file line numberDiff line numberDiff line change
@@ -1833,6 +1833,7 @@ enum ImGuiMouseCursor_
18331833
ImGuiMouseCursor_ResizeNESW, // When hovering over the bottom-left corner of a window
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)
1836+
ImGuiMouseCursor_Wait, // When waiting for something to process/load.
18361837
ImGuiMouseCursor_NotAllowed, // When hovering something with disallowed interaction. Usually a crossed circle.
18371838
ImGuiMouseCursor_COUNT
18381839
};

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", "NotAllowed" };
7596+
const char* mouse_cursors_names[] = { "Arrow", "TextInput", "ResizeAll", "ResizeNS", "ResizeEW", "ResizeNESW", "ResizeNWSE", "Hand", "Wait", "NotAllowed" };
75977597
IM_ASSERT(IM_ARRAYSIZE(mouse_cursors_names) == ImGuiMouseCursor_COUNT);
75987598

75997599
ImGuiMouseCursor current = ImGui::GetMouseCursor();

0 commit comments

Comments
 (0)