Skip to content

Commit 7a56b41

Browse files
committed
Nav: added io.ConfigNavEscapeClearFocusItem. (#8059, #2048, #1074, #3200)
1 parent db26fe7 commit 7a56b41

File tree

6 files changed

+24
-11
lines changed

6 files changed

+24
-11
lines changed

docs/CHANGELOG.txt

+8-3
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ Breaking changes:
4343

4444
- The typedef for ImTextureID now defaults to ImU64 instead of void*. (#1641)
4545
- This removes the requirement to redefine it for backends which are e.g. storing
46-
descriptor sets or other 64-bits structures when building on 32-bits archs.
47-
It therefore simplify various building scripts/helpers.
46+
descriptor sets or other 64-bits structures when building on 32-bits archs
47+
(namely our DX12 and Vulkan backends). It therefore simplify various building scripts/helpers.
4848
- You may have compile-time issues if you were casting to 'void*' instead of 'ImTextureID'
4949
when passing your types to functions taking ImTextureID values, e.g. ImGui::Image().
5050
In doubt it is almost always better to do an intermediate intptr_t cast, since it
@@ -67,7 +67,12 @@ Other changes:
6767
state to draw callbacks. (#6969, #5834, #7468, #3590)
6868
- IO: WantCaptureKeyboard is never set when ImGuiConfigFlags_NoKeyboard is enabled. (#4921)
6969
- Error Handling: turned a few more functions into recoverable errors. (#1651)
70-
- Nav: added io.ConfigNavEscapeClearFocusWindow to clear focused window on Escape. (#3200)
70+
- Nav: added io.ConfigNavEscapeClearFocusItem and io.ConfigNavEscapeClearFocusWindow to change
71+
how pressing Escape affects navigation. (#8059, #2048, #1074, #3200)
72+
- Set io.ConfigNavEscapeClearFocusItem = true (default) to clear focused item and highlight.
73+
- Set io.ConfigNavEscapeClearFocusItem = false for Escape to not have a specific effect.
74+
- Set io.ConfigNavEscapeClearFocusWindow = true to completely unfocus the dear imgui window,
75+
is for some reason your app relies on imgui focus to take other decisions.
7176
- Nav: pressing escape to hide nav highlight doesn't clear location from when ctrl+tabbing
7277
back into same window later.
7378
- Nav: fixed Ctrl+Tab so when starting with no focused window it starts from the top-most

docs/TODO.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -275,13 +275,13 @@ It's mostly a bunch of personal notes, probably incomplete. Feel free to query i
275275

276276
- nav: some features such as PageUp/Down/Home/End should probably work without ImGuiConfigFlags_NavEnableKeyboard? (where do we draw the line? how about CTRL+Tab)
277277
! nav: never clear NavId on some setup (e.g. gamepad centric)
278-
- nav: there's currently no way to completely clear focus with the keyboard. depending on patterns used by the application to dispatch inputs, it may be desirable.
279278
- nav: Home/End behavior when navigable item is not fully visible at the edge of scrolling? should be backtrack to keep item into view?
280279
- nav: NavScrollToBringItemIntoView() with item bigger than view should focus top-right? Repro: using Nav in "About Window"
281-
- nav: wrap around logic to allow e.g. grid based layout (pressing NavRight on the right-most element would go to the next row, etc.). see internal's NavMoveRequestTryWrapping().
280+
- nav: expose wrap around flags/logic to allow e.g. grid based layout (pressing NavRight on the right-most element would go to the next row, etc.). see internal's NavMoveRequestTryWrapping().
282281
- nav: patterns to make it possible for arrows key to update selection (see JustMovedTo in range_select branch)
283282
- nav: restore/find nearest NavId when current one disappear (e.g. pressed a button that disappear, or perhaps auto restoring when current button change name)
284283
- nav: SetItemDefaultFocus() level of priority, so widget like Selectable when inside a popup could claim a low-priority default focus on the first selected iem
284+
- nav: holding space to repeat a button doesn't show button activated during hold.
285285
- nav: NavFlattened: init requests don't work properly on flattened siblings.
286286
- nav: NavFlattened: pageup/pagedown/home/end don't work properly on flattened siblings.
287287
- nav: NavFlattened: ESC on a flattened child should select something.

imgui.cpp

+6-3
Original file line numberDiff line numberDiff line change
@@ -1409,6 +1409,7 @@ ImGuiIO::ImGuiIO()
14091409
ConfigNavSwapGamepadButtons = false;
14101410
ConfigNavMoveSetMousePos = false;
14111411
ConfigNavCaptureKeyboard = true;
1412+
ConfigNavEscapeClearFocusItem = true;
14121413
ConfigNavEscapeClearFocusWindow = false;
14131414
ConfigInputTrickleEventQueue = true;
14141415
ConfigInputTextCursorBlink = true;
@@ -13376,11 +13377,13 @@ static void ImGui::NavUpdateCancelRequest()
1337613377
{
1337713378
// Clear NavLastId for popups but keep it for regular child window so we can leave one and come back where we were
1337813379
// FIXME-NAV: This should happen on window appearing.
13379-
if (g.NavWindow && ((g.NavWindow->Flags & ImGuiWindowFlags_Popup)))// || !(g.NavWindow->Flags & ImGuiWindowFlags_ChildWindow)))
13380-
g.NavWindow->NavLastIds[0] = 0;
13380+
if (g.IO.ConfigNavEscapeClearFocusItem || g.IO.ConfigNavEscapeClearFocusWindow)
13381+
if (g.NavWindow && ((g.NavWindow->Flags & ImGuiWindowFlags_Popup)))// || !(g.NavWindow->Flags & ImGuiWindowFlags_ChildWindow)))
13382+
g.NavWindow->NavLastIds[0] = 0;
1338113383

1338213384
// Clear nav focus
13383-
g.NavId = 0;
13385+
if (g.IO.ConfigNavEscapeClearFocusItem || g.IO.ConfigNavEscapeClearFocusWindow)
13386+
g.NavId = 0;
1338413387
if (g.IO.ConfigNavEscapeClearFocusWindow)
1338513388
FocusWindow(NULL);
1338613389
}

imgui.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -2250,7 +2250,8 @@ struct ImGuiIO
22502250
bool ConfigNavSwapGamepadButtons; // = false // Swap Activate<>Cancel (A<>B) buttons, matching typical "Nintendo/Japanese style" gamepad layout.
22512251
bool ConfigNavMoveSetMousePos; // = false // Directional/tabbing navigation teleports the mouse cursor. May be useful on TV/console systems where moving a virtual mouse is difficult. Will update io.MousePos and set io.WantSetMousePos=true.
22522252
bool ConfigNavCaptureKeyboard; // = true // Sets io.WantCaptureKeyboard when io.NavActive is set.
2253-
bool ConfigNavEscapeClearFocusWindow;// = false // Pressing Escape (when no item is active, no popup open etc.) clears focused window + navigation id/highlight.
2253+
bool ConfigNavEscapeClearFocusItem; // = true // Pressing Escape can clear focused item + navigation id/highlight. Set to false if you want to always keep highlight on.
2254+
bool ConfigNavEscapeClearFocusWindow;// = false // Pressing Escape can clear focused window as well (super set of io.ConfigNavEscapeClearFocusItem).
22542255
bool ConfigInputTrickleEventQueue; // = true // Enable input queue trickling: some types of events submitted during the same frame (e.g. button down + up) will be spread over multiple frames, improving interactions with low framerates.
22552256
bool ConfigInputTextCursorBlink; // = true // Enable blinking cursor (optional as some users consider it to be distracting).
22562257
bool ConfigInputTextEnterKeepActive; // = false // [BETA] Pressing Enter will keep item active and select contents (single-line only).
@@ -2367,7 +2368,7 @@ struct ImGuiIO
23672368
bool WantSetMousePos; // MousePos has been altered, backend should reposition mouse on next frame. Rarely used! Set only when io.ConfigNavMoveSetMousePos is enabled.
23682369
bool WantSaveIniSettings; // When manual .ini load/save is active (io.IniFilename == NULL), this will be set to notify your application that you can call SaveIniSettingsToMemory() and save yourself. Important: clear io.WantSaveIniSettings yourself after saving!
23692370
bool NavActive; // Keyboard/Gamepad navigation is currently allowed (will handle ImGuiKey_NavXXX events) = a window is focused and it doesn't use the ImGuiWindowFlags_NoNavInputs flag.
2370-
bool NavVisible; // Keyboard/Gamepad navigation is visible and allowed (will handle ImGuiKey_NavXXX events).
2371+
bool NavVisible; // Keyboard/Gamepad navigation highlight is visible and allowed (will handle ImGuiKey_NavXXX events).
23712372
float Framerate; // Estimate of application framerate (rolling average over 60 frames, based on io.DeltaTime), in frame per second. Solely for convenience. Slow applications may not want to use a moving average or may want to reset underlying buffers occasionally.
23722373
int MetricsRenderVertices; // Vertices output during last call to Render()
23732374
int MetricsRenderIndices; // Indices output during last call to Render() = number of triangles * 3

imgui_demo.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -532,6 +532,8 @@ void ImGui::ShowDemoWindow(bool* p_open)
532532
ImGui::Checkbox("io.ConfigNavMoveSetMousePos", &io.ConfigNavMoveSetMousePos);
533533
ImGui::SameLine(); HelpMarker("Directional/tabbing navigation teleports the mouse cursor. May be useful on TV/console systems where moving a virtual mouse is difficult");
534534
ImGui::Checkbox("io.ConfigNavCaptureKeyboard", &io.ConfigNavCaptureKeyboard);
535+
ImGui::Checkbox("io.ConfigNavEscapeClearFocusItem", &io.ConfigNavEscapeClearFocusItem);
536+
ImGui::SameLine(); HelpMarker("Pressing Escape clears focused item.");
535537
ImGui::Checkbox("io.ConfigNavEscapeClearFocusWindow", &io.ConfigNavEscapeClearFocusWindow);
536538
ImGui::SameLine(); HelpMarker("Pressing Escape clears focused window.");
537539

imgui_internal.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -1600,7 +1600,7 @@ struct ImGuiNavItemData
16001600
void Clear() { Window = NULL; ID = FocusScopeId = 0; ItemFlags = 0; SelectionUserData = -1; DistBox = DistCenter = DistAxial = FLT_MAX; }
16011601
};
16021602

1603-
// Storage for PushFocusScope()
1603+
// Storage for PushFocusScope(), g.FocusScopeStack[], g.NavFocusRoute[]
16041604
struct ImGuiFocusScopeData
16051605
{
16061606
ImGuiID ID;
@@ -3223,6 +3223,8 @@ namespace ImGui
32233223
IMGUI_API void RenderDragDropTargetRect(const ImRect& bb, const ImRect& item_clip_rect);
32243224

32253225
// Typing-Select API
3226+
// (provide Windows Explorer style "select items by typing partial name" + "cycle through items by typing same letter" feature)
3227+
// (this is currently not documented nor used by main library, but should work. See "widgets_typingselect" in imgui_test_suite for usage code. Please let us know if you use this!)
32263228
IMGUI_API ImGuiTypingSelectRequest* GetTypingSelectRequest(ImGuiTypingSelectFlags flags = ImGuiTypingSelectFlags_None);
32273229
IMGUI_API int TypingSelectFindMatch(ImGuiTypingSelectRequest* req, int items_count, const char* (*get_item_name_func)(void*, int), void* user_data, int nav_item_idx);
32283230
IMGUI_API int TypingSelectFindNextSingleCharMatch(ImGuiTypingSelectRequest* req, int items_count, const char* (*get_item_name_func)(void*, int), void* user_data, int nav_item_idx);

0 commit comments

Comments
 (0)