Searched refs:BeginCombo (Results 1 - 7 of 7) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui_memory_editor.h500 if (ImGui::BeginCombo("##combo_type", DataTypeGetDesc(PreviewDataType), ImGuiComboFlags_HeightLargest))
H A Dimgui.h139 typedef int ImGuiComboFlags; // -> enum ImGuiComboFlags_ // Flags: for BeginCombo()
400 // - The new BeginCombo()/EndCombo() api allows you to manage your contents and selection state however you want it, by creating e.g. Selectable() items.
401 // - The old Combo() api are helpers over BeginCombo()/EndCombo() which are kept available for convenience purpose.
402 IMGUI_API bool BeginCombo(const char* label, const char* preview_value, ImGuiComboFlags flags = 0);
403 IMGUI_API void EndCombo(); // only call EndCombo() if BeginCombo() returns true!
794 // Flags for ImGui::BeginCombo()
799 ImGuiComboFlags_HeightSmall = 1 << 1, // Max ~4 items visible. Tip: If you want your combo popup to be a specific size you can use SetNextWindowSizeConstraints() prior to calling BeginCombo()
H A Dimgui_demo.cpp475 // See "Combo" section for examples of how to use the more complete BeginCombo()/EndCombo() api.
479 ImGui::SameLine(); ShowHelpMarker("Refer to the \"Combo\" section below for an explanation of the full BeginCombo/EndCombo API, and demonstration of various flags.\n");
775 // General BeginCombo() API, you have full control over your selection data and display type.
779 if (ImGui::BeginCombo("combo 1", item_current, flags)) // The second parameter is the label previewed before opening the combo.
2754 // Here we use the regular BeginCombo()/EndCombo() api which is more the more flexible one.
2759 if (ImGui::BeginCombo(label, font_current->GetDebugName()))
H A Dimgui_widgets.cpp1267 // - BeginCombo()
1280 bool ImGui::BeginCombo(const char* label, const char* preview_value, ImGuiComboFlags flags) function in class:ImGui
1417 // Old API, prefer using BeginCombo() nowadays if you can.
1422 // Call the getter to obtain the preview string which is a parameter to BeginCombo()
1427 // The old Combo() API exposed "popup_max_height_in_items". The new more general BeginCombo() API doesn't have/need it, but we emulate it here.
1431 if (!BeginCombo(label, preview_value, ImGuiComboFlags_None))
6273 bool open = BeginCombo("##v", NULL, ImGuiComboFlags_NoPreview);
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui_memory_editor.h502 if (ImGui::BeginCombo("##combo_type", DataTypeGetDesc(PreviewDataType), ImGuiComboFlags_HeightLargest))
H A Dimgui.h139 typedef int ImGuiComboFlags; // -> enum ImGuiComboFlags_ // Flags: for BeginCombo()
400 // - The new BeginCombo()/EndCombo() api allows you to manage your contents and selection state however you want it, by creating e.g. Selectable() items.
401 // - The old Combo() api are helpers over BeginCombo()/EndCombo() which are kept available for convenience purpose.
402 IMGUI_API bool BeginCombo(const char* label, const char* preview_value, ImGuiComboFlags flags = 0);
403 IMGUI_API void EndCombo(); // only call EndCombo() if BeginCombo() returns true!
794 // Flags for ImGui::BeginCombo()
799 ImGuiComboFlags_HeightSmall = 1 << 1, // Max ~4 items visible. Tip: If you want your combo popup to be a specific size you can use SetNextWindowSizeConstraints() prior to calling BeginCombo()
H A Dimgui_widgets.cpp1267 // - BeginCombo()
1280 bool ImGui::BeginCombo(const char* label, const char* preview_value, ImGuiComboFlags flags) function in class:ImGui
1417 // Old API, prefer using BeginCombo() nowadays if you can.
1422 // Call the getter to obtain the preview string which is a parameter to BeginCombo()
1427 // The old Combo() API exposed "popup_max_height_in_items". The new more general BeginCombo() API doesn't have/need it, but we emulate it here.
1431 if (!BeginCombo(label, preview_value, ImGuiComboFlags_None))
6273 bool open = BeginCombo("##v", NULL, ImGuiComboFlags_NoPreview);

Completed in 51 milliseconds