@@ -1435,7 +1435,6 @@ static void ShowDemoWindowWidgets(ImGuiDemoWindowData* demo_data)
1435
1435
1436
1436
// Pass in the preview value visible before opening the combo (it could technically be different contents or not pulled from items[])
1437
1437
const char* combo_preview_value = items[item_selected_idx];
1438
-
1439
1438
if (ImGui::BeginCombo("combo 1", combo_preview_value, flags))
1440
1439
{
1441
1440
for (int n = 0; n < IM_ARRAYSIZE(items); n++)
@@ -1451,23 +1450,46 @@ static void ShowDemoWindowWidgets(ImGuiDemoWindowData* demo_data)
1451
1450
ImGui::EndCombo();
1452
1451
}
1453
1452
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
+
1454
1476
ImGui::Spacing();
1455
1477
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.");
1457
1479
1458
1480
// Simplified one-liner Combo() API, using values packed in a single constant string
1459
1481
// This is a convenience for when the selection set is small and known at compile-time.
1460
1482
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");
1462
1484
1463
1485
// Simplified one-liner Combo() using an array of const char*
1464
1486
// This is not very useful (may obsolete): prefer using BeginCombo()/EndCombo() for full control.
1465
1487
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));
1467
1489
1468
1490
// Simplified one-liner Combo() using an accessor function
1469
1491
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));
1471
1493
1472
1494
ImGui::TreePop();
1473
1495
}
0 commit comments