Skip to content

Commit 4982602

Browse files
committed
Windows, Style: Added style.WindowBorderHoverPadding setting to configure inner/outer padding applied to hit-testing of windows borders.
Amend 3c7177c, 59f3c4f, ae7f833. Could be latched inside windows to be multi-dpi friendly, but likely won't matter soon.
1 parent 914fbcf commit 4982602

File tree

5 files changed

+19
-13
lines changed

5 files changed

+19
-13
lines changed

docs/CHANGELOG.txt

+3
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ Other changes:
4747

4848
- Fixed IsItemDeactivatedAfterEdit() signal being broken for Checkbox(),
4949
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.
5053
- InputTextWithHint(): Fixed buffer-overflow (luckily often with no visible effect)
5154
when a user callback modified the buffer contents in a way that altered the
5255
visibility of the preview/hint buffer. (#8368) [@m9710797, @ocornut]

imgui.cpp

+10-11
Original file line numberDiff line numberDiff line change
@@ -1167,11 +1167,7 @@ CODE
11671167
// When using CTRL+TAB (or Gamepad Square+L/R) we delay the visual a little in order to reduce visual noise doing a fast switch.
11681168
static const float NAV_WINDOWING_HIGHLIGHT_DELAY = 0.20f; // Time before the highlight and screen dimming starts fading in
11691169
static const float NAV_WINDOWING_LIST_APPEAR_DELAY = 0.15f; // Time before the window list starts to appear
1170-
11711170
static const float NAV_ACTIVATE_HIGHLIGHT_TIMER = 0.10f; // Time to highlight an item activated by a shortcut.
1172-
1173-
// Window resizing from edges (when io.ConfigWindowsResizeFromEdges = true and ImGuiBackendFlags_HasMouseCursors is set in io.BackendFlags by backend)
1174-
static const float WINDOWS_HOVER_PADDING = 4.0f; // Extend outside window for hovering/resizing (maxxed with TouchPadding) and inside windows for borders. Affect FindHoveredWindow().
11751171
static const float WINDOWS_RESIZE_FROM_EDGES_FEEDBACK_TIMER = 0.04f; // Reduce visual noise by only highlighting the border after a certain time.
11761172
static const float WINDOWS_MOUSE_WHEEL_SCROLL_LOCK_TIMER = 0.70f; // Lock scrolled window (so it doesn't pick child windows that are scrolling through) for a certain time, unless mouse moved.
11771173

@@ -1318,6 +1314,7 @@ ImGuiStyle::ImGuiStyle()
13181314
WindowPadding = ImVec2(8,8); // Padding within a window
13191315
WindowRounding = 0.0f; // Radius of window corners rounding. Set to 0.0f to have rectangular windows. Large values tend to lead to variety of artifacts and are not recommended.
13201316
WindowBorderSize = 1.0f; // Thickness of border around windows. Generally set to 0.0f or 1.0f. Other values not well tested.
1317+
WindowBorderHoverPadding = 4.0f; // Hit-testing extent outside/inside resizing border. Also extend determination of hovered window. Generally meaningfully larger than WindowBorderSize to make it easy to reach borders.
13211318
WindowMinSize = ImVec2(32,32); // Minimum window size
13221319
WindowTitleAlign = ImVec2(0.0f,0.5f);// Alignment for title bar text
13231320
WindowMenuButtonPosition = ImGuiDir_Left; // Position of the collapsing/docking button in the title bar (left/right). Defaults to ImGuiDir_Left.
@@ -1379,6 +1376,7 @@ void ImGuiStyle::ScaleAllSizes(float scale_factor)
13791376
WindowPadding = ImTrunc(WindowPadding * scale_factor);
13801377
WindowRounding = ImTrunc(WindowRounding * scale_factor);
13811378
WindowMinSize = ImTrunc(WindowMinSize * scale_factor);
1379+
WindowBorderHoverPadding = ImTrunc(WindowBorderHoverPadding * scale_factor);
13821380
ChildRounding = ImTrunc(ChildRounding * scale_factor);
13831381
PopupRounding = ImTrunc(PopupRounding * scale_factor);
13841382
FramePadding = ImTrunc(FramePadding * scale_factor);
@@ -5037,7 +5035,7 @@ void ImGui::UpdateHoveredWindowAndCaptureFlags()
50375035

50385036
// FIXME-DPI: This storage was added on 2021/03/31 for test engine, but if we want to multiply WINDOWS_HOVER_PADDING
50395037
// by DpiScale, we need to make this window-agnostic anyhow, maybe need storing inside ImGuiWindow.
5040-
g.WindowsHoverPadding = ImMax(g.Style.TouchExtraPadding, ImVec2(WINDOWS_HOVER_PADDING, WINDOWS_HOVER_PADDING));
5038+
g.WindowsBorderHoverPadding = ImMax(ImMax(g.Style.TouchExtraPadding.x, g.Style.TouchExtraPadding.y), g.Style.WindowBorderHoverPadding);
50415039

50425040
// Find the window hovered by mouse:
50435041
// - Child windows can extend beyond the limit of their parent so we need to derive HoveredRootWindow from HoveredWindow.
@@ -5800,7 +5798,7 @@ void ImGui::FindHoveredWindowEx(const ImVec2& pos, bool find_first_and_in_any_vi
58005798
hovered_window = g.MovingWindow;
58015799

58025800
ImVec2 padding_regular = g.Style.TouchExtraPadding;
5803-
ImVec2 padding_for_resize = g.IO.ConfigWindowsResizeFromEdges ? g.WindowsHoverPadding : padding_regular;
5801+
ImVec2 padding_for_resize = ImMax(g.Style.TouchExtraPadding, ImVec2(g.Style.WindowBorderHoverPadding, g.Style.WindowBorderHoverPadding));
58045802
for (int i = g.Windows.Size - 1; i >= 0; i--)
58055803
{
58065804
ImGuiWindow* window = g.Windows[i];
@@ -6502,7 +6500,7 @@ static int ImGui::UpdateWindowManualResize(ImGuiWindow* window, const ImVec2& si
65026500
int ret_auto_fit_mask = 0x00;
65036501
const float grip_draw_size = IM_TRUNC(ImMax(g.FontSize * 1.35f, window->WindowRounding + 1.0f + g.FontSize * 0.2f));
65046502
const float grip_hover_inner_size = (resize_grip_count > 0) ? IM_TRUNC(grip_draw_size * 0.75f) : 0.0f;
6505-
const float grip_hover_outer_size = g.IO.ConfigWindowsResizeFromEdges ? WINDOWS_HOVER_PADDING : 0.0f;
6503+
const float grip_hover_outer_size = g.WindowsBorderHoverPadding;
65066504

65076505
ImRect clamp_rect = visibility_rect;
65086506
const bool window_move_from_title_bar = g.IO.ConfigWindowsMoveFromTitleBarOnly && !(window->Flags & ImGuiWindowFlags_NoTitleBar);
@@ -6570,7 +6568,7 @@ static int ImGui::UpdateWindowManualResize(ImGuiWindow* window, const ImVec2& si
65706568
const ImGuiAxis axis = (border_n == ImGuiDir_Left || border_n == ImGuiDir_Right) ? ImGuiAxis_X : ImGuiAxis_Y;
65716569

65726570
bool hovered, held;
6573-
ImRect border_rect = GetResizeBorderRect(window, border_n, grip_hover_inner_size, WINDOWS_HOVER_PADDING);
6571+
ImRect border_rect = GetResizeBorderRect(window, border_n, grip_hover_inner_size, g.WindowsBorderHoverPadding);
65746572
ImGuiID border_id = window->GetID(border_n + 4); // == GetWindowResizeBorderID()
65756573
ItemAdd(border_rect, border_id, NULL, ImGuiItemFlags_NoNav);
65766574
ButtonBehavior(border_rect, border_id, &hovered, &held, ImGuiButtonFlags_FlattenChildren | ImGuiButtonFlags_NoNavFocus);
@@ -6608,7 +6606,7 @@ static int ImGui::UpdateWindowManualResize(ImGuiWindow* window, const ImVec2& si
66086606

66096607
const ImVec2 border_curr = (window->Pos + ImMin(def.SegmentN1, def.SegmentN2) * window->Size);
66106608
const float border_target_rel_mode_for_axis = border_curr[axis] + g.IO.MouseDelta[axis];
6611-
const float border_target_abs_mode_for_axis = g.IO.MousePos[axis] - g.ActiveIdClickOffset[axis] + WINDOWS_HOVER_PADDING; // Match ButtonBehavior() padding above.
6609+
const float border_target_abs_mode_for_axis = g.IO.MousePos[axis] - g.ActiveIdClickOffset[axis] + g.WindowsBorderHoverPadding; // Match ButtonBehavior() padding above.
66126610

66136611
// Use absolute mode position
66146612
ImVec2 border_target = window->Pos;
@@ -6697,7 +6695,7 @@ static int ImGui::UpdateWindowManualResize(ImGuiWindow* window, const ImVec2& si
66976695

66986696
// Recalculate next expected border expected coordinates
66996697
if (*border_held != -1)
6700-
g.WindowResizeBorderExpectedRect = GetResizeBorderRect(window, *border_held, grip_hover_inner_size, WINDOWS_HOVER_PADDING);
6698+
g.WindowResizeBorderExpectedRect = GetResizeBorderRect(window, *border_held, grip_hover_inner_size, g.WindowsBorderHoverPadding);
67016699

67026700
return ret_auto_fit_mask;
67036701
}
@@ -10184,7 +10182,8 @@ static void ImGui::ErrorCheckNewFrameSanityChecks()
1018410182
IM_ASSERT(g.Style.CurveTessellationTol > 0.0f && "Invalid style setting!");
1018510183
IM_ASSERT(g.Style.CircleTessellationMaxError > 0.0f && "Invalid style setting!");
1018610184
IM_ASSERT(g.Style.Alpha >= 0.0f && g.Style.Alpha <= 1.0f && "Invalid style setting!"); // Allows us to avoid a few clamps in color computations
10187-
IM_ASSERT(g.Style.WindowMinSize.x >= 1.0f && g.Style.WindowMinSize.y >= 1.0f && "Invalid style setting.");
10185+
IM_ASSERT(g.Style.WindowMinSize.x >= 1.0f && g.Style.WindowMinSize.y >= 1.0f && "Invalid style setting!");
10186+
IM_ASSERT(g.Style.WindowBorderHoverPadding > 0.0f && "Invalid style setting!"); // Required otherwise cannot resize from borders.
1018810187
IM_ASSERT(g.Style.WindowMenuButtonPosition == ImGuiDir_None || g.Style.WindowMenuButtonPosition == ImGuiDir_Left || g.Style.WindowMenuButtonPosition == ImGuiDir_Right);
1018910188
IM_ASSERT(g.Style.ColorButtonPosition == ImGuiDir_Left || g.Style.ColorButtonPosition == ImGuiDir_Right);
1019010189

imgui.h

+1
Original file line numberDiff line numberDiff line change
@@ -2146,6 +2146,7 @@ struct ImGuiStyle
21462146
ImVec2 WindowPadding; // Padding within a window.
21472147
float WindowRounding; // Radius of window corners rounding. Set to 0.0f to have rectangular windows. Large values tend to lead to variety of artifacts and are not recommended.
21482148
float WindowBorderSize; // Thickness of border around windows. Generally set to 0.0f or 1.0f. (Other values are not well tested and more CPU/GPU costly).
2149+
float WindowBorderHoverPadding; // Hit-testing extent outside/inside resizing border. Also extend determination of hovered window. Generally meaningfully larger than WindowBorderSize to make it easy to reach borders.
21492150
ImVec2 WindowMinSize; // Minimum window size. This is a global setting. If you want to constrain individual windows, use SetNextWindowSizeConstraints().
21502151
ImVec2 WindowTitleAlign; // Alignment for title bar text. Defaults to (0.0f,0.5f) for left-aligned,vertically centered.
21512152
ImGuiDir WindowMenuButtonPosition; // Side of the collapsing/docking button in the title bar (None/Left/Right). Defaults to ImGuiDir_Left.

imgui_demo.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -7985,11 +7985,14 @@ void ImGui::ShowStyleEditor(ImGuiStyle* ref)
79857985
ImGui::SliderAngle("TableAngledHeadersAngle", &style.TableAngledHeadersAngle, -50.0f, +50.0f);
79867986
ImGui::SliderFloat2("TableAngledHeadersTextAlign", (float*)&style.TableAngledHeadersTextAlign, 0.0f, 1.0f, "%.2f");
79877987

7988-
ImGui::SeparatorText("Widgets");
7988+
ImGui::SeparatorText("Windows");
79897989
ImGui::SliderFloat2("WindowTitleAlign", (float*)&style.WindowTitleAlign, 0.0f, 1.0f, "%.2f");
7990+
ImGui::SliderFloat("WindowBorderHoverPadding", &style.WindowBorderHoverPadding, 1.0f, 20.0f, "%.0f");
79907991
int window_menu_button_position = style.WindowMenuButtonPosition + 1;
79917992
if (ImGui::Combo("WindowMenuButtonPosition", (int*)&window_menu_button_position, "None\0Left\0Right\0"))
79927993
style.WindowMenuButtonPosition = (ImGuiDir)(window_menu_button_position - 1);
7994+
7995+
ImGui::SeparatorText("Widgets");
79937996
ImGui::Combo("ColorButtonPosition", (int*)&style.ColorButtonPosition, "Left\0Right\0");
79947997
ImGui::SliderFloat2("ButtonTextAlign", (float*)&style.ButtonTextAlign, 0.0f, 1.0f, "%.2f");
79957998
ImGui::SameLine(); HelpMarker("Alignment applies when a button is larger than its text content.");

imgui_internal.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2083,7 +2083,7 @@ struct ImGuiContext
20832083
ImVector<ImGuiWindowStackData> CurrentWindowStack;
20842084
ImGuiStorage WindowsById; // Map window's ImGuiID to ImGuiWindow*
20852085
int WindowsActiveCount; // Number of unique windows submitted by frame
2086-
ImVec2 WindowsHoverPadding; // Padding around resizable windows for which hovering on counts as hovering the window == ImMax(style.TouchExtraPadding, WINDOWS_HOVER_PADDING).
2086+
float WindowsBorderHoverPadding; // Padding around resizable windows for which hovering on counts as hovering the window == ImMax(style.TouchExtraPadding, style.WindowBorderHoverPadding). This isn't so multi-dpi friendly.
20872087
ImGuiID DebugBreakInWindow; // Set to break in Begin() call.
20882088
ImGuiWindow* CurrentWindow; // Window being drawn into
20892089
ImGuiWindow* HoveredWindow; // Window the mouse is hovering. Will typically catch mouse inputs.

0 commit comments

Comments
 (0)