Skip to content

Commit 8bbdfef

Browse files
committed
Nav: added bool ConfigNavWindowingWithGamepad to disable windowing with gamepad. (#8525, #4828, #3255, #5641)
1 parent 187acb8 commit 8bbdfef

File tree

2 files changed

+17
-11
lines changed

2 files changed

+17
-11
lines changed

imgui.cpp

+16-11
Original file line numberDiff line numberDiff line change
@@ -4016,6 +4016,7 @@ ImGuiContext::ImGuiContext(ImFontAtlas* shared_font_atlas)
40164016

40174017
// All platforms use Ctrl+Tab but Ctrl<>Super are swapped on Mac...
40184018
// FIXME: Because this value is stored, it annoyingly interfere with toggling io.ConfigMacOSXBehaviors updating this..
4019+
ConfigNavWindowingWithGamepad = true;
40194020
ConfigNavWindowingKeyNext = IO.ConfigMacOSXBehaviors ? (ImGuiMod_Super | ImGuiKey_Tab) : (ImGuiMod_Ctrl | ImGuiKey_Tab);
40204021
ConfigNavWindowingKeyPrev = IO.ConfigMacOSXBehaviors ? (ImGuiMod_Super | ImGuiMod_Shift | ImGuiKey_Tab) : (ImGuiMod_Ctrl | ImGuiMod_Shift | ImGuiKey_Tab);
40214022
NavWindowingTarget = NavWindowingTargetAnim = NavWindowingListWindow = NULL;
@@ -13799,19 +13800,22 @@ static void ImGui::NavUpdateWindowing()
1379913800
}
1380013801

1380113802
// Gamepad update
13802-
g.NavWindowingTimer += io.DeltaTime;
1380313803
if (g.NavWindowingTarget && g.NavInputSource == ImGuiInputSource_Gamepad)
1380413804
{
13805-
// Highlight only appears after a brief time holding the button, so that a fast tap on ImGuiKey_NavGamepadMenu (to toggle NavLayer) doesn't add visual noise
13806-
// However inputs are accepted immediately, so you press ImGuiKey_NavGamepadMenu + L1/R1 fast.
13807-
g.NavWindowingHighlightAlpha = ImMax(g.NavWindowingHighlightAlpha, ImSaturate((g.NavWindowingTimer - NAV_WINDOWING_HIGHLIGHT_DELAY) / 0.05f));
13808-
13809-
// Select window to focus
13810-
const int focus_change_dir = (int)IsKeyPressed(ImGuiKey_GamepadL1) - (int)IsKeyPressed(ImGuiKey_GamepadR1);
13811-
if (focus_change_dir != 0 && !just_started_windowing_from_null_focus)
13805+
if (g.ConfigNavWindowingWithGamepad)
1381213806
{
13813-
NavUpdateWindowingTarget(focus_change_dir);
13814-
g.NavWindowingHighlightAlpha = 1.0f;
13807+
// Highlight only appears after a brief time holding the button, so that a fast tap on ImGuiKey_NavGamepadMenu (to toggle NavLayer) doesn't add visual noise
13808+
// However inputs are accepted immediately, so you press ImGuiKey_NavGamepadMenu + L1/R1 fast.
13809+
g.NavWindowingTimer += io.DeltaTime;
13810+
g.NavWindowingHighlightAlpha = ImMax(g.NavWindowingHighlightAlpha, ImSaturate((g.NavWindowingTimer - NAV_WINDOWING_HIGHLIGHT_DELAY) / 0.05f));
13811+
13812+
// Select window to focus
13813+
const int focus_change_dir = (int)IsKeyPressed(ImGuiKey_GamepadL1) - (int)IsKeyPressed(ImGuiKey_GamepadR1);
13814+
if (focus_change_dir != 0 && !just_started_windowing_from_null_focus)
13815+
{
13816+
NavUpdateWindowingTarget(focus_change_dir);
13817+
g.NavWindowingHighlightAlpha = 1.0f;
13818+
}
1381513819
}
1381613820

1381713821
// Single press toggles NavLayer, long press with L/R apply actual focus on release (until then the window was merely rendered top-most)
@@ -13820,7 +13824,7 @@ static void ImGui::NavUpdateWindowing()
1382013824
g.NavWindowingToggleLayer &= (g.NavWindowingHighlightAlpha < 1.0f); // Once button was held long enough we don't consider it a tap-to-toggle-layer press anymore.
1382113825
if (g.NavWindowingToggleLayer && g.NavWindow)
1382213826
apply_toggle_layer = true;
13823-
else if (!g.NavWindowingToggleLayer)
13827+
else if (!g.NavWindowingToggleLayer && g.ConfigNavWindowingWithGamepad)
1382413828
apply_focus_window = g.NavWindowingTarget;
1382513829
g.NavWindowingTarget = NULL;
1382613830
}
@@ -13832,6 +13836,7 @@ static void ImGui::NavUpdateWindowing()
1383213836
// Visuals only appears after a brief time after pressing TAB the first time, so that a fast CTRL+TAB doesn't add visual noise
1383313837
ImGuiKeyChord shared_mods = ((g.ConfigNavWindowingKeyNext ? g.ConfigNavWindowingKeyNext : ImGuiMod_Mask_) & (g.ConfigNavWindowingKeyPrev ? g.ConfigNavWindowingKeyPrev : ImGuiMod_Mask_)) & ImGuiMod_Mask_;
1383413838
IM_ASSERT(shared_mods != 0); // Next/Prev shortcut currently needs a shared modifier to "hold", otherwise Prev actions would keep cycling between two windows.
13839+
g.NavWindowingTimer += io.DeltaTime;
1383513840
g.NavWindowingHighlightAlpha = ImMax(g.NavWindowingHighlightAlpha, ImSaturate((g.NavWindowingTimer - NAV_WINDOWING_HIGHLIGHT_DELAY) / 0.05f)); // 1.0f
1383613841
if ((keyboard_next_window || keyboard_prev_window) && !just_started_windowing_from_null_focus)
1383713842
NavUpdateWindowingTarget(keyboard_next_window ? -1 : +1);

imgui_internal.h

+1
Original file line numberDiff line numberDiff line change
@@ -2240,6 +2240,7 @@ struct ImGuiContext
22402240
bool NavJustMovedToHasSelectionData; // Copy of move result's ItemFlags & ImGuiItemFlags_HasSelectionUserData). Maybe we should just store ImGuiNavItemData.
22412241

22422242
// Navigation: Windowing (CTRL+TAB for list, or Menu button + keys or directional pads to move/resize)
2243+
bool ConfigNavWindowingWithGamepad; // = true. Enable CTRL+TAB by holding ImGuiKey_GamepadFaceLeft (== ImGuiKey_NavGamepadMenu). When false, the button may still be used to toggle Menu layer.
22432244
ImGuiKeyChord ConfigNavWindowingKeyNext; // = ImGuiMod_Ctrl | ImGuiKey_Tab (or ImGuiMod_Super | ImGuiKey_Tab on OS X). For reconfiguration (see #4828)
22442245
ImGuiKeyChord ConfigNavWindowingKeyPrev; // = ImGuiMod_Ctrl | ImGuiMod_Shift | ImGuiKey_Tab (or ImGuiMod_Super | ImGuiMod_Shift | ImGuiKey_Tab on OS X)
22452246
ImGuiWindow* NavWindowingTarget; // Target window when doing CTRL+Tab (or Pad Menu + FocusPrev/Next), this window is temporarily displayed top-most!

0 commit comments

Comments
 (0)