Skip to content

Commit 3de7513

Browse files
committed
(Breaking) Renamed ImGuiSelectableFlags_DontClosePopups to ImGuiSelectableFlags_NoAutoClosePopups. (#1379, #1468, #2200, #4936, #5216, #7302, #7573)
1 parent 0de88a9 commit 3de7513

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

docs/CHANGELOG.txt

+8-5
Original file line numberDiff line numberDiff line change
@@ -46,16 +46,19 @@ Breaking changes:
4646
- new: io.PlatformSetImeDataFn(ImGuiContext* ctx, ImGuiViewport* viewport, ImGuiPlatformImeData* data);
4747
It is expected that for a vast majority of users this is automatically set by core
4848
library and/or platform backend so it won't have any effect.
49-
- Obsoleted PushButtonRepeat()/PopButtonRepeat() in favor of using new PushItemFlag()/PopItemFlag()
50-
with ImGuiItemFlags_ButtonRepeat. Kept inline redirecting functions (will obsolete).
49+
- Item flag changes:
50+
- Obsoleted PushButtonRepeat()/PopButtonRepeat() in favor of using new PushItemFlag()/PopItemFlag()
51+
with ImGuiItemFlags_ButtonRepeat. Kept inline redirecting functions (will obsolete).
52+
- Renamed ImGuiSelectableFlags_DontClosePopups to ImGuiSelectableFlags_NoAutoClosePopups for
53+
consistency. Kept inline redirecting functions (will obsolete).
54+
+ Internals: changed/inverted ImGuiItemFlags_SelectableDontClosePopup (default==false) to
55+
ImGuiItemFlags_AutoClosePopups (default==true), same logic, only inverted behavior.
56+
(#1379, #1468, #2200, #4936, #5216, #7302, #7573)
5157
- Commented out obsolete ImGuiModFlags (renamed to ImGuiKeyChord in 1.89). (#4921, #456)
5258
- Commented out obsolete ImGuiModFlags_XXX values (renamed to ImGuiMod_XXX in 1.89). (#4921, #456)
5359
- ImGuiModFlags_Ctrl -> ImGuiMod_Ctrl, ImGuiModFlags_Shift -> ImGuiMod_Shift etc.
5460
- Backends: GLFW+Emscripten: Renamed ImGui_ImplGlfw_InstallEmscriptenCanvasResizeCallback() to
5561
ImGui_ImplGlfw_InstallEmscriptenCallbacks(), with additional GLFWWindow* parameter. (#7647) [@ypujante]
56-
- Internals: changed/inverted ImGuiItemFlags_SelectableDontClosePopup (default==false) to
57-
ImGuiItemFlags_AutoClosePopups (default==true), same logic, only inverted behavior.
58-
(#1379, #2200, #4936, #5216, #7302)
5962

6063
Other changes:
6164

imgui.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -430,6 +430,8 @@ CODE
430430
When you are not sure about an old symbol or function name, try using the Search/Find function of your IDE to look for comments or references in all imgui files.
431431
You can read releases logs https://github.com/ocornut/imgui/releases for more details.
432432

433+
- 2024/07/15 (1.91.0) - renamed ImGuiSelectableFlags_DontClosePopups to ImGuiSelectableFlags_NoAutoClosePopups. (#1379, #1468, #2200, #4936, #5216, #7302, #7573)
434+
(internals: also renamed ImGuiItemFlags_SelectableDontClosePopup into ImGuiItemFlags_AutoClosePopups with inverted behaviors)
433435
- 2024/07/15 (1.91.0) - obsoleted PushButtonRepeat()/PopButtonRepeat() in favor of using new PushItemFlag(ImGuiItemFlags_ButtonRepeat, ...)/PopItemFlag().
434436
- 2024/07/02 (1.91.0) - commented out obsolete ImGuiModFlags (renamed to ImGuiKeyChord in 1.89). (#4921, #456)
435437
- commented out obsolete ImGuiModFlags_XXX values (renamed to ImGuiMod_XXX in 1.89). (#4921, #456)

imgui.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -1198,14 +1198,15 @@ enum ImGuiPopupFlags_
11981198
enum ImGuiSelectableFlags_
11991199
{
12001200
ImGuiSelectableFlags_None = 0,
1201-
ImGuiSelectableFlags_DontClosePopups = 1 << 0, // Clicking this doesn't close parent popup window
1201+
ImGuiSelectableFlags_NoAutoClosePopups = 1 << 0, // Clicking this doesn't close parent popup window (overrides ImGuiItemFlags_AutoClosePopups)
12021202
ImGuiSelectableFlags_SpanAllColumns = 1 << 1, // Frame will span all columns of its container table (text will still fit in current column)
12031203
ImGuiSelectableFlags_AllowDoubleClick = 1 << 2, // Generate press events on double clicks too
12041204
ImGuiSelectableFlags_Disabled = 1 << 3, // Cannot be selected, display grayed out text
12051205
ImGuiSelectableFlags_AllowOverlap = 1 << 4, // (WIP) Hit testing to allow subsequent widgets to overlap this one
12061206

12071207
#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS
1208-
ImGuiSelectableFlags_AllowItemOverlap = ImGuiSelectableFlags_AllowOverlap, // Renamed in 1.89.7
1208+
ImGuiSelectableFlags_DontClosePopups = ImGuiSelectableFlags_NoAutoClosePopups, // Renamed in 1.91.0
1209+
ImGuiSelectableFlags_AllowItemOverlap = ImGuiSelectableFlags_AllowOverlap, // Renamed in 1.89.7
12091210
#endif
12101211
};
12111212

imgui_widgets.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -6831,7 +6831,7 @@ bool ImGui::Selectable(const char* label, bool selected, ImGuiSelectableFlags fl
68316831
RenderTextClipped(text_min, text_max, label, NULL, &label_size, style.SelectableTextAlign, &bb);
68326832

68336833
// Automatically close popups
6834-
if (pressed && (window->Flags & ImGuiWindowFlags_Popup) && !(flags & ImGuiSelectableFlags_DontClosePopups) && (g.LastItemData.InFlags & ImGuiItemFlags_AutoClosePopups))
6834+
if (pressed && (window->Flags & ImGuiWindowFlags_Popup) && !(flags & ImGuiSelectableFlags_NoAutoClosePopups) && (g.LastItemData.InFlags & ImGuiItemFlags_AutoClosePopups))
68356835
CloseCurrentPopup();
68366836

68376837
if (disabled_item && !disabled_global)
@@ -7659,7 +7659,7 @@ bool ImGui::BeginMenuEx(const char* label, const char* icon, bool enabled)
76597659
bool pressed;
76607660

76617661
// We use ImGuiSelectableFlags_NoSetKeyOwner to allow down on one menu item, move, up on another.
7662-
const ImGuiSelectableFlags selectable_flags = ImGuiSelectableFlags_NoHoldingActiveID | ImGuiSelectableFlags_NoSetKeyOwner | ImGuiSelectableFlags_SelectOnClick | ImGuiSelectableFlags_DontClosePopups;
7662+
const ImGuiSelectableFlags selectable_flags = ImGuiSelectableFlags_NoHoldingActiveID | ImGuiSelectableFlags_NoSetKeyOwner | ImGuiSelectableFlags_SelectOnClick | ImGuiSelectableFlags_NoAutoClosePopups;
76637663
if (window->DC.LayoutType == ImGuiLayoutType_Horizontal)
76647664
{
76657665
// Menu inside an horizontal menu bar

0 commit comments

Comments
 (0)