Skip to content

Commit 8679cfa

Browse files
committed
Merge branch 'master' into docking
# Conflicts: # backends/imgui_impl_glfw.cpp # backends/imgui_impl_glfw.h # examples/example_apple_metal/example_apple_metal.xcodeproj/project.pbxproj # imgui.cpp
2 parents d803476 + 4982602 commit 8679cfa

26 files changed

+146
-130
lines changed

.github/ISSUE_TEMPLATE/issue_template.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ body:
88
For anything else: **we are happy to use 'GitHub Issues' for many types of open-ended questions**. We are encouraging 'Issues' becoming a large, centralized, tagged, cross-referenced database of Dear ImGui contents.
99
1010
Be mindful that messages are being sent to the e-mail box of "Watching" users. Try to proof-read your messages before sending them. Edits are not seen by those users.
11-
11+
1212
**If you are using Dear ImGui as part of a job that you are being well-paid for** and your company is not a sponsor. Please be mindful that this is a Free Software and you might be about to ask volunteers to help you doing your job. Please put extra effort describing your issue or question properly. If your company is wealthy, please read [Funding](https://github.com/ocornut/imgui/wiki/Funding) and consider getting in touch.
1313
- type: markdown
1414
attributes:

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
// [X] Platform: Multi-viewport support (multiple windows). Enable with 'io.ConfigFlags |= ImGuiConfigFlags_ViewportsEnable'.
1313
// Missing features or Issues:
14+
// [ ] Platform: 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.
1415
// [ ] Platform: Multi-viewport: ParentViewportID not honored, and so io.ConfigViewportsNoDefaultParent has no effect (minor).
1516

1617
// You can use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this.

backends/imgui_impl_glfw.h

+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
// [X] Platform: Multi-viewport support (multiple windows). Enable with 'io.ConfigFlags |= ImGuiConfigFlags_ViewportsEnable'.
1313
// Missing features or Issues:
14+
// [ ] Platform: 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.
1415
// [ ] Platform: Multi-viewport: ParentViewportID not honored, and so io.ConfigViewportsNoDefaultParent has no effect (minor).
1516

1617
// You can use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this.

backends/imgui_impl_glut.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
static int g_Time = 0; // Current time, in milliseconds
5353

54-
// Glut has 1 function for characters and one for "special keys". We map the characters in the 0..255 range and the keys above.
54+
// Glut has one function for characters and one for "special keys". We map the characters in the 0..255 range and the keys above.
5555
static ImGuiKey ImGui_ImplGLUT_KeyToImGuiKey(int key)
5656
{
5757
switch (key)

backends/imgui_impl_sdlrenderer2.cpp

+17-17
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ void ImGui_ImplSDLRenderer2_Shutdown()
102102

103103
static void ImGui_ImplSDLRenderer2_SetupRenderState(SDL_Renderer* renderer)
104104
{
105-
// Clear out any viewports and cliprect set by the user
105+
// Clear out any viewports and cliprect set by the user
106106
// FIXME: Technically speaking there are lots of other things we could backup/setup/restore during our render process.
107-
SDL_RenderSetViewport(renderer, nullptr);
108-
SDL_RenderSetClipRect(renderer, nullptr);
107+
SDL_RenderSetViewport(renderer, nullptr);
108+
SDL_RenderSetClipRect(renderer, nullptr);
109109
}
110110

111111
void ImGui_ImplSDLRenderer2_NewFrame()
@@ -119,21 +119,21 @@ void ImGui_ImplSDLRenderer2_NewFrame()
119119

120120
void ImGui_ImplSDLRenderer2_RenderDrawData(ImDrawData* draw_data, SDL_Renderer* renderer)
121121
{
122-
// If there's a scale factor set by the user, use that instead
122+
// If there's a scale factor set by the user, use that instead
123123
// If the user has specified a scale factor to SDL_Renderer already via SDL_RenderSetScale(), SDL will scale whatever we pass
124124
// to SDL_RenderGeometryRaw() by that scale factor. In that case we don't want to be also scaling it ourselves here.
125125
float rsx = 1.0f;
126-
float rsy = 1.0f;
127-
SDL_RenderGetScale(renderer, &rsx, &rsy);
126+
float rsy = 1.0f;
127+
SDL_RenderGetScale(renderer, &rsx, &rsy);
128128
ImVec2 render_scale;
129-
render_scale.x = (rsx == 1.0f) ? draw_data->FramebufferScale.x : 1.0f;
130-
render_scale.y = (rsy == 1.0f) ? draw_data->FramebufferScale.y : 1.0f;
129+
render_scale.x = (rsx == 1.0f) ? draw_data->FramebufferScale.x : 1.0f;
130+
render_scale.y = (rsy == 1.0f) ? draw_data->FramebufferScale.y : 1.0f;
131131

132-
// Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates)
133-
int fb_width = (int)(draw_data->DisplaySize.x * render_scale.x);
134-
int fb_height = (int)(draw_data->DisplaySize.y * render_scale.y);
135-
if (fb_width == 0 || fb_height == 0)
136-
return;
132+
// Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates)
133+
int fb_width = (int)(draw_data->DisplaySize.x * render_scale.x);
134+
int fb_height = (int)(draw_data->DisplaySize.y * render_scale.y);
135+
if (fb_width == 0 || fb_height == 0)
136+
return;
137137

138138
// Backup SDL_Renderer state that will be modified to restore it afterwards
139139
struct BackupSDLRendererState
@@ -156,9 +156,9 @@ void ImGui_ImplSDLRenderer2_RenderDrawData(ImDrawData* draw_data, SDL_Renderer*
156156
render_state.Renderer = renderer;
157157
platform_io.Renderer_RenderState = &render_state;
158158

159-
// Will project scissor/clipping rectangles into framebuffer space
160-
ImVec2 clip_off = draw_data->DisplayPos; // (0,0) unless using multi-viewports
161-
ImVec2 clip_scale = render_scale;
159+
// Will project scissor/clipping rectangles into framebuffer space
160+
ImVec2 clip_off = draw_data->DisplayPos; // (0,0) unless using multi-viewports
161+
ImVec2 clip_scale = render_scale;
162162

163163
// Render command lists
164164
for (int n = 0; n < draw_data->CmdListsCount; n++)
@@ -203,7 +203,7 @@ void ImGui_ImplSDLRenderer2_RenderDrawData(ImDrawData* draw_data, SDL_Renderer*
203203
#endif
204204

205205
// Bind texture, Draw
206-
SDL_Texture* tex = (SDL_Texture*)pcmd->GetTexID();
206+
SDL_Texture* tex = (SDL_Texture*)pcmd->GetTexID();
207207
SDL_RenderGeometryRaw(renderer, tex,
208208
xy, (int)sizeof(ImDrawVert),
209209
color, (int)sizeof(ImDrawVert),

backends/imgui_impl_sdlrenderer3.cpp

+17-17
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,10 @@ void ImGui_ImplSDLRenderer3_Shutdown()
101101

102102
static void ImGui_ImplSDLRenderer3_SetupRenderState(SDL_Renderer* renderer)
103103
{
104-
// Clear out any viewports and cliprect set by the user
104+
// Clear out any viewports and cliprect set by the user
105105
// FIXME: Technically speaking there are lots of other things we could backup/setup/restore during our render process.
106-
SDL_SetRenderViewport(renderer, nullptr);
107-
SDL_SetRenderClipRect(renderer, nullptr);
106+
SDL_SetRenderViewport(renderer, nullptr);
107+
SDL_SetRenderClipRect(renderer, nullptr);
108108
}
109109

110110
void ImGui_ImplSDLRenderer3_NewFrame()
@@ -138,21 +138,21 @@ void ImGui_ImplSDLRenderer3_RenderDrawData(ImDrawData* draw_data, SDL_Renderer*
138138
{
139139
ImGui_ImplSDLRenderer3_Data* bd = ImGui_ImplSDLRenderer3_GetBackendData();
140140

141-
// If there's a scale factor set by the user, use that instead
141+
// If there's a scale factor set by the user, use that instead
142142
// If the user has specified a scale factor to SDL_Renderer already via SDL_RenderSetScale(), SDL will scale whatever we pass
143143
// to SDL_RenderGeometryRaw() by that scale factor. In that case we don't want to be also scaling it ourselves here.
144144
float rsx = 1.0f;
145-
float rsy = 1.0f;
146-
SDL_GetRenderScale(renderer, &rsx, &rsy);
145+
float rsy = 1.0f;
146+
SDL_GetRenderScale(renderer, &rsx, &rsy);
147147
ImVec2 render_scale;
148-
render_scale.x = (rsx == 1.0f) ? draw_data->FramebufferScale.x : 1.0f;
149-
render_scale.y = (rsy == 1.0f) ? draw_data->FramebufferScale.y : 1.0f;
148+
render_scale.x = (rsx == 1.0f) ? draw_data->FramebufferScale.x : 1.0f;
149+
render_scale.y = (rsy == 1.0f) ? draw_data->FramebufferScale.y : 1.0f;
150150

151-
// Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates)
152-
int fb_width = (int)(draw_data->DisplaySize.x * render_scale.x);
153-
int fb_height = (int)(draw_data->DisplaySize.y * render_scale.y);
154-
if (fb_width == 0 || fb_height == 0)
155-
return;
151+
// Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates)
152+
int fb_width = (int)(draw_data->DisplaySize.x * render_scale.x);
153+
int fb_height = (int)(draw_data->DisplaySize.y * render_scale.y);
154+
if (fb_width == 0 || fb_height == 0)
155+
return;
156156

157157
// Backup SDL_Renderer state that will be modified to restore it afterwards
158158
struct BackupSDLRendererState
@@ -177,9 +177,9 @@ void ImGui_ImplSDLRenderer3_RenderDrawData(ImDrawData* draw_data, SDL_Renderer*
177177
render_state.Renderer = renderer;
178178
platform_io.Renderer_RenderState = &render_state;
179179

180-
// Will project scissor/clipping rectangles into framebuffer space
181-
ImVec2 clip_off = draw_data->DisplayPos; // (0,0) unless using multi-viewports
182-
ImVec2 clip_scale = render_scale;
180+
// Will project scissor/clipping rectangles into framebuffer space
181+
ImVec2 clip_off = draw_data->DisplayPos; // (0,0) unless using multi-viewports
182+
ImVec2 clip_scale = render_scale;
183183

184184
// Render command lists
185185
for (int n = 0; n < draw_data->CmdListsCount; n++)
@@ -220,7 +220,7 @@ void ImGui_ImplSDLRenderer3_RenderDrawData(ImDrawData* draw_data, SDL_Renderer*
220220
const SDL_Color* color = (const SDL_Color*)(const void*)((const char*)(vtx_buffer + pcmd->VtxOffset) + offsetof(ImDrawVert, col)); // SDL 2.0.19+
221221

222222
// Bind texture, Draw
223-
SDL_Texture* tex = (SDL_Texture*)pcmd->GetTexID();
223+
SDL_Texture* tex = (SDL_Texture*)pcmd->GetTexID();
224224
SDL_RenderGeometryRaw8BitColor(renderer, bd->ColorBuffer, tex,
225225
xy, (int)sizeof(ImDrawVert),
226226
color, (int)sizeof(ImDrawVert),

backends/imgui_impl_wgpu.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -270,13 +270,13 @@ static WGPUProgrammableStageDescriptor ImGui_ImplWGPU_CreateShaderModule(const c
270270
ImGui_ImplWGPU_Data* bd = ImGui_ImplWGPU_GetBackendData();
271271

272272
#ifdef IMGUI_IMPL_WEBGPU_BACKEND_DAWN
273-
WGPUShaderSourceWGSL wgsl_desc = {};
273+
WGPUShaderSourceWGSL wgsl_desc = {};
274274
wgsl_desc.chain.sType = WGPUSType_ShaderSourceWGSL;
275-
wgsl_desc.code = { wgsl_source, WGPU_STRLEN };
275+
wgsl_desc.code = { wgsl_source, WGPU_STRLEN };
276276
#else
277-
WGPUShaderModuleWGSLDescriptor wgsl_desc = {};
277+
WGPUShaderModuleWGSLDescriptor wgsl_desc = {};
278278
wgsl_desc.chain.sType = WGPUSType_ShaderModuleWGSLDescriptor;
279-
wgsl_desc.code = wgsl_source;
279+
wgsl_desc.code = wgsl_source;
280280
#endif
281281

282282
WGPUShaderModuleDescriptor desc = {};

backends/imgui_impl_win32.cpp

+15-15
Original file line numberDiff line numberDiff line change
@@ -890,20 +890,20 @@ static BOOL _IsWindowsVersionOrGreater(WORD major, WORD minor, WORD)
890890
{
891891
typedef LONG(WINAPI* PFN_RtlVerifyVersionInfo)(OSVERSIONINFOEXW*, ULONG, ULONGLONG);
892892
static PFN_RtlVerifyVersionInfo RtlVerifyVersionInfoFn = nullptr;
893-
if (RtlVerifyVersionInfoFn == nullptr)
894-
if (HMODULE ntdllModule = ::GetModuleHandleA("ntdll.dll"))
895-
RtlVerifyVersionInfoFn = (PFN_RtlVerifyVersionInfo)GetProcAddress(ntdllModule, "RtlVerifyVersionInfo");
893+
if (RtlVerifyVersionInfoFn == nullptr)
894+
if (HMODULE ntdllModule = ::GetModuleHandleA("ntdll.dll"))
895+
RtlVerifyVersionInfoFn = (PFN_RtlVerifyVersionInfo)GetProcAddress(ntdllModule, "RtlVerifyVersionInfo");
896896
if (RtlVerifyVersionInfoFn == nullptr)
897897
return FALSE;
898898

899899
RTL_OSVERSIONINFOEXW versionInfo = { };
900900
ULONGLONG conditionMask = 0;
901901
versionInfo.dwOSVersionInfoSize = sizeof(RTL_OSVERSIONINFOEXW);
902902
versionInfo.dwMajorVersion = major;
903-
versionInfo.dwMinorVersion = minor;
904-
VER_SET_CONDITION(conditionMask, VER_MAJORVERSION, VER_GREATER_EQUAL);
905-
VER_SET_CONDITION(conditionMask, VER_MINORVERSION, VER_GREATER_EQUAL);
906-
return (RtlVerifyVersionInfoFn(&versionInfo, VER_MAJORVERSION | VER_MINORVERSION, conditionMask) == 0) ? TRUE : FALSE;
903+
versionInfo.dwMinorVersion = minor;
904+
VER_SET_CONDITION(conditionMask, VER_MAJORVERSION, VER_GREATER_EQUAL);
905+
VER_SET_CONDITION(conditionMask, VER_MINORVERSION, VER_GREATER_EQUAL);
906+
return (RtlVerifyVersionInfoFn(&versionInfo, VER_MAJORVERSION | VER_MINORVERSION, conditionMask) == 0) ? TRUE : FALSE;
907907
}
908908

909909
#define _IsWindowsVistaOrGreater() _IsWindowsVersionOrGreater(HIBYTE(0x0600), LOBYTE(0x0600), 0) // _WIN32_WINNT_VISTA
@@ -965,16 +965,16 @@ float ImGui_ImplWin32_GetDpiScaleForMonitor(void* monitor)
965965
UINT xdpi = 96, ydpi = 96;
966966
if (_IsWindows8Point1OrGreater())
967967
{
968-
static HINSTANCE shcore_dll = ::LoadLibraryA("shcore.dll"); // Reference counted per-process
969-
static PFN_GetDpiForMonitor GetDpiForMonitorFn = nullptr;
970-
if (GetDpiForMonitorFn == nullptr && shcore_dll != nullptr)
968+
static HINSTANCE shcore_dll = ::LoadLibraryA("shcore.dll"); // Reference counted per-process
969+
static PFN_GetDpiForMonitor GetDpiForMonitorFn = nullptr;
970+
if (GetDpiForMonitorFn == nullptr && shcore_dll != nullptr)
971971
GetDpiForMonitorFn = (PFN_GetDpiForMonitor)::GetProcAddress(shcore_dll, "GetDpiForMonitor");
972-
if (GetDpiForMonitorFn != nullptr)
973-
{
974-
GetDpiForMonitorFn((HMONITOR)monitor, MDT_EFFECTIVE_DPI, &xdpi, &ydpi);
972+
if (GetDpiForMonitorFn != nullptr)
973+
{
974+
GetDpiForMonitorFn((HMONITOR)monitor, MDT_EFFECTIVE_DPI, &xdpi, &ydpi);
975975
IM_ASSERT(xdpi == ydpi); // Please contact me if you hit this assert!
976-
return xdpi / 96.0f;
977-
}
976+
return xdpi / 96.0f;
977+
}
978978
}
979979
#ifndef NOGDI
980980
const HDC dc = ::GetDC(nullptr);

docs/CHANGELOG.txt

+6-2
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,20 @@ HOW TO UPDATE?
4141

4242
Breaking changes:
4343

44-
- Removed ImFontConfig::GlyphExtraSpacing option which seems largely obsolete and
45-
unused. If you were using this please report it! (#242).
44+
- Renamed ImFontConfig::GlyphExtraSpacing.x option to GlyphExtraAdvanceX. (#242)
4645

4746
Other changes:
4847

4948
- Fixed IsItemDeactivatedAfterEdit() signal being broken for Checkbox(),
5049
RadioButton(), Selectable(). Regression from 2025/01/13. (#8370)
50+
- Windows, Style: Added style.WindowBorderHoverPadding setting to configure
51+
inner/outer padding applied to hit-testing of windows borders and detection
52+
of hovered window.
5153
- InputTextWithHint(): Fixed buffer-overflow (luckily often with no visible effect)
5254
when a user callback modified the buffer contents in a way that altered the
5355
visibility of the preview/hint buffer. (#8368) [@m9710797, @ocornut]
56+
- Scrollbar: Rework logic that fades-out scrollbar when it becomes too small,
57+
which amusingly made it disappear when using very big font/frame size.
5458
- Backends: Metal: Fixed a crash on application resources. (#8367, #7419) [@anszom]
5559
- Backends: WebGPU: Fix for DAWN API rename WGPUProgrammableStageDescriptor -> WGPUComputeState.
5660
[@PhantomCloak] (#8369)

0 commit comments

Comments
 (0)