Searched refs:BeginCombo (Results 1 - 9 of 9) sorted by relevance
/third_party/skia/tools/viewer/ |
H A D | SkSLSlide.cpp | 227 if (ImGui::BeginCombo(c.name.c_str(), curShader->first)) { in draw()
|
H A D | ParticlesSlide.cpp | 117 if (ImGui::BeginCombo("Type", curType ? curType->fName : "Null")) {
|
H A D | SkottieSlide.cpp | 350 if (ImGui::BeginCombo("FPS", fFrameRateLabel)) { in renderUI()
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui_memory_editor.h | 502 if (ImGui::BeginCombo("##combo_type", DataTypeGetDesc(PreviewDataType), ImGuiComboFlags_HeightLargest)) in DrawContents()
|
H A D | imgui.h | 139 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 D | imgui_widgets.cpp | 1267 // - BeginCombo() 1280 bool ImGui::BeginCombo(const char* label, const char* preview_value, ImGuiComboFlags flags) in BeginCombo() function in 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() in Combo() 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. in Combo() 1431 if (!BeginCombo(label, preview_value, ImGuiComboFlags_None)) in Combo() 6273 bool open = BeginCombo("##v", NULL, ImGuiComboFlags_NoPreview);
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_demo.cpp | 618 // See "Combo" section for examples of how to use the more flexible BeginCombo()/EndCombo() api. in ShowDemoWindowWidgets() 623 "Using the simplified one-liner Combo API here.\nRefer to the \"Combo\" section below for an explanation of how to use the more flexible and general BeginCombo/EndCombo API."); in ShowDemoWindowWidgets() 1037 // Using the generic BeginCombo() API, you have full control over how to display the combo contents. in ShowDemoWindowWidgets() 1043 if (ImGui::BeginCombo("combo 1", combo_preview_value, flags)) in ShowDemoWindowWidgets() 1064 // This is not very useful (may obsolete): prefer using BeginCombo()/EndCombo() for full control. in ShowDemoWindowWidgets() 3525 if (ImGui::BeginCombo("Sizing Policy", preview_text)) in EditTableSizingFlags() 5814 // Here we use the regular BeginCombo()/EndCombo() api which is more the more flexible one. 5819 if (ImGui::BeginCombo(label, font_current->GetDebugName()))
|
H A D | imgui_widgets.cpp | 1544 // - BeginCombo() 1560 bool ImGui::BeginCombo(const char* label, const char* preview_value, ImGuiComboFlags flags) in BeginCombo() function in ImGui 1699 // Call directly after the BeginCombo/EndCombo block. The preview is designed to only host non-interactive elements 1709 IM_ASSERT(g.LastItemData.Rect.Min.x == preview_data->PreviewRect.Min.x && g.LastItemData.Rect.Min.y == preview_data->PreviewRect.Min.y); // Didn't call after BeginCombo/EndCombo block or forgot to pass ImGuiComboFlags_CustomPreview flag? in BeginComboPreview() 1780 // Old API, prefer using BeginCombo() nowadays if you can. 1785 // Call the getter to obtain the preview string which is a parameter to BeginCombo() in Combo() 1790 // 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. in Combo() 1794 if (!BeginCombo(label, preview_value, ImGuiComboFlags_None)) in Combo() 7768 bool open = BeginCombo("##v", NULL, ImGuiComboFlags_NoPreview | ImGuiComboFlags_HeightLargest);
|
H A D | imgui.h | 188 typedef int ImGuiComboFlags; // -> enum ImGuiComboFlags_ // Flags: for BeginCombo() 517 // - The BeginCombo()/EndCombo() api allows you to manage your contents and selection state however you want it, by creating e.g. Selectable() items. 518 // - The old Combo() api are helpers over BeginCombo()/EndCombo() which are kept available for convenience purpose. This is analogous to how ListBox are created. 519 IMGUI_API bool BeginCombo(const char* label, const char* preview_value, ImGuiComboFlags flags = 0); 520 IMGUI_API void EndCombo(); // only call EndCombo() if BeginCombo() returns true! 1075 // Flags for ImGui::BeginCombo() 1080 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()
|
Completed in 53 milliseconds