Skip to content

Commit 2206e31

Browse files
committed
Demo: Combos: demonstrate a very simple way to add a filter to a combo. (ocornut#718)
1 parent e8ad60c commit 2206e31

File tree

2 files changed

+29
-5
lines changed

2 files changed

+29
-5
lines changed

docs/CHANGELOG.txt

+2
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ Other changes:
5757
which amusingly made it disappear when using very big font/frame size.
5858
- Tables: fixed calling SetNextWindowScroll() on clipped scrolling table
5959
to not leak the value into a subsequent window. (#8196)
60+
- Demo: Combos: demonstrate a very simple way to add a filter to a combo,
61+
by showing the filter inside the combo contents. (#718)
6062
- Backends: Metal: Fixed a crash on application resources. (#8367, #7419) [@anszom]
6163
- Backends: WebGPU: Fix for DAWN API rename WGPUProgrammableStageDescriptor -> WGPUComputeState.
6264
[@PhantomCloak] (#8369)

imgui_demo.cpp

+27-5
Original file line numberDiff line numberDiff line change
@@ -1435,7 +1435,6 @@ static void ShowDemoWindowWidgets(ImGuiDemoWindowData* demo_data)
14351435

14361436
// Pass in the preview value visible before opening the combo (it could technically be different contents or not pulled from items[])
14371437
const char* combo_preview_value = items[item_selected_idx];
1438-
14391438
if (ImGui::BeginCombo("combo 1", combo_preview_value, flags))
14401439
{
14411440
for (int n = 0; n < IM_ARRAYSIZE(items); n++)
@@ -1451,23 +1450,46 @@ static void ShowDemoWindowWidgets(ImGuiDemoWindowData* demo_data)
14511450
ImGui::EndCombo();
14521451
}
14531452

1453+
// Show case embedding a filter using a simple trick: displaying the filter inside combo contents.
1454+
// See https://github.com/ocornut/imgui/issues/718 for advanced/esoteric alternatives.
1455+
if (ImGui::BeginCombo("combo 2 (w/ filter)", combo_preview_value, flags))
1456+
{
1457+
static ImGuiTextFilter filter;
1458+
if (ImGui::IsWindowAppearing())
1459+
{
1460+
ImGui::SetKeyboardFocusHere();
1461+
filter.Clear();
1462+
}
1463+
ImGui::SetNextItemShortcut(ImGuiMod_Ctrl | ImGuiKey_F);
1464+
filter.Draw("##Filter", -FLT_MIN);
1465+
1466+
for (int n = 0; n < IM_ARRAYSIZE(items); n++)
1467+
{
1468+
const bool is_selected = (item_selected_idx == n);
1469+
if (filter.PassFilter(items[n]))
1470+
if (ImGui::Selectable(items[n], is_selected))
1471+
item_selected_idx = n;
1472+
}
1473+
ImGui::EndCombo();
1474+
}
1475+
14541476
ImGui::Spacing();
14551477
ImGui::SeparatorText("One-liner variants");
1456-
HelpMarker("Flags above don't apply to this section.");
1478+
HelpMarker("The Combo() function is not greatly useful apart from cases were you want to embed all options in a single strings.\nFlags above don't apply to this section.");
14571479

14581480
// Simplified one-liner Combo() API, using values packed in a single constant string
14591481
// This is a convenience for when the selection set is small and known at compile-time.
14601482
static int item_current_2 = 0;
1461-
ImGui::Combo("combo 2 (one-liner)", &item_current_2, "aaaa\0bbbb\0cccc\0dddd\0eeee\0\0");
1483+
ImGui::Combo("combo 3 (one-liner)", &item_current_2, "aaaa\0bbbb\0cccc\0dddd\0eeee\0\0");
14621484

14631485
// Simplified one-liner Combo() using an array of const char*
14641486
// This is not very useful (may obsolete): prefer using BeginCombo()/EndCombo() for full control.
14651487
static int item_current_3 = -1; // If the selection isn't within 0..count, Combo won't display a preview
1466-
ImGui::Combo("combo 3 (array)", &item_current_3, items, IM_ARRAYSIZE(items));
1488+
ImGui::Combo("combo 4 (array)", &item_current_3, items, IM_ARRAYSIZE(items));
14671489

14681490
// Simplified one-liner Combo() using an accessor function
14691491
static int item_current_4 = 0;
1470-
ImGui::Combo("combo 4 (function)", &item_current_4, [](void* data, int n) { return ((const char**)data)[n]; }, items, IM_ARRAYSIZE(items));
1492+
ImGui::Combo("combo 5 (function)", &item_current_4, [](void* data, int n) { return ((const char**)data)[n]; }, items, IM_ARRAYSIZE(items));
14711493

14721494
ImGui::TreePop();
14731495
}

0 commit comments

Comments
 (0)