Searched refs:CloseCurrentPopup (Results 1 - 8 of 8) sorted by relevance
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_demo.cpp | 3273 ImGui::CloseCurrentPopup(); in ShowDemoWindowPopups() 3323 ImGui::CloseCurrentPopup(); in ShowDemoWindowPopups() 3356 if (ImGui::Button("OK", ImVec2(120, 0))) { ImGui::CloseCurrentPopup(); } in ShowDemoWindowPopups() 3359 if (ImGui::Button("Cancel", ImVec2(120, 0))) { ImGui::CloseCurrentPopup(); } in ShowDemoWindowPopups() 3395 ImGui::CloseCurrentPopup(); in ShowDemoWindowPopups() 3400 ImGui::CloseCurrentPopup(); in ShowDemoWindowPopups() 4809 ImGui::CloseCurrentPopup(); 4834 ImGui::CloseCurrentPopup(); 7641 ImGui::CloseCurrentPopup(); 7649 ImGui::CloseCurrentPopup(); [all...] |
H A D | imgui.h | 689 // - CloseCurrentPopup(): use inside the BeginPopup()/EndPopup() scope to close manually. 690 // - CloseCurrentPopup() is called by default by Selectable()/MenuItem() when activated (FIXME: need some options). 696 IMGUI_API void CloseCurrentPopup(); // manually close the popup we have begin-ed into.
|
H A D | imgui_widgets.cpp | 708 // CloseCurrentPopup(); in ButtonEx() 6262 CloseCurrentPopup();
|
H A D | imgui.cpp | 8317 // Popups are closed when user click outside, or activate a pressable item, or CloseCurrentPopup() is called within a BeginPopup()/EndPopup() block. 8456 void ImGui::CloseCurrentPopup() in CloseCurrentPopup() function in ImGui 8476 IMGUI_DEBUG_LOG_POPUP("CloseCurrentPopup %d -> %d\n", g.BeginPopupStack.Size - 1, popup_idx); in CloseCurrentPopup()
|
/third_party/mesa3d/src/intel/tools/ |
H A D | aubinator_viewer.cpp | 1037 ImGui::CloseCurrentPopup(); in display_aubfile_window()
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui.h | 542 IMGUI_API void OpenPopup(const char* str_id); // call to mark popup as open (don't call every frame!). popups are closed when user click outside, or if CloseCurrentPopup() is called within a BeginPopup()/EndPopup() block. By default, Selectable()/MenuItem() are calling CloseCurrentPopup(). Popup identifiers are relative to the current ID-stack (so OpenPopup and BeginPopup needs to be at the same level). 551 IMGUI_API void CloseCurrentPopup(); // close the popup we have begin-ed into. clicking on a MenuItem or Selectable automatically close the current popup.
|
H A D | imgui_widgets.cpp | 580 // CloseCurrentPopup(); in ButtonEx() 5108 CloseCurrentPopup();
|
H A D | imgui.cpp | 6753 // Popups are closed when user click outside, or activate a pressable item, or CloseCurrentPopup() is called within a BeginPopup()/EndPopup() block. 6872 void ImGui::CloseCurrentPopup() in CloseCurrentPopup() function in ImGui 6892 //IMGUI_DEBUG_LOG("CloseCurrentPopup %d -> %d\n", g.BeginPopupStack.Size - 1, popup_idx); in CloseCurrentPopup()
|
Completed in 129 milliseconds