Lines Matching refs:current_item
1418 bool ImGui::Combo(const char* label, int* current_item, bool (*items_getter)(void*, int, const char… in Combo() argument
1424 if (*current_item >= 0 && *current_item < items_count) in Combo()
1425 items_getter(data, *current_item, &preview_value); in Combo()
1440 const bool item_selected = (i == *current_item); in Combo()
1447 *current_item = i; in Combo()
1459 bool ImGui::Combo(const char* label, int* current_item, const char* const items[], int items_count,… in Combo() argument
1461 …const bool value_changed = Combo(label, current_item, Items_ArrayGetter, (void*)items, items_count… in Combo()
1466 bool ImGui::Combo(const char* label, int* current_item, const char* items_separated_by_zeros, int h… in Combo() argument
1475 …bool value_changed = Combo(label, current_item, Items_SingleStringGetter, (void*)items_separated_b… in Combo()
5201 bool ImGui::ListBox(const char* label, int* current_item, const char* const items[], int items_coun… in ListBox() argument
5203 …const bool value_changed = ListBox(label, current_item, Items_ArrayGetter, (void*)items, items_cou… in ListBox()
5207 bool ImGui::ListBox(const char* label, int* current_item, bool (*items_getter)(void*, int, const ch… in ListBox() argument
5219 const bool item_selected = (i == *current_item); in ListBox()
5227 *current_item = i; in ListBox()