Searched refs:EndPopup (Results 1 - 10 of 10) sorted by relevance
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_demo.cpp | 1534 ImGui::EndPopup(); in ShowDemoWindowWidgets() 1751 ImGui::EndPopup(); in ShowDemoWindowWidgets() 2355 ImGui::EndPopup(); in ShowDemoWindowWidgets() 3164 // if (ImGui::Button("Open")) ImGui::OpenPopup("MyPopup"); if (ImGui::BeginPopup("MyPopup") { [...] EndPopup(); } in ShowDemoWindowPopups() 3192 ImGui::EndPopup(); in ShowDemoWindowPopups() 3227 ImGui::EndPopup(); in ShowDemoWindowPopups() 3231 ImGui::EndPopup(); in ShowDemoWindowPopups() 3233 ImGui::EndPopup(); in ShowDemoWindowPopups() 3242 ImGui::EndPopup(); in ShowDemoWindowPopups() 3274 ImGui::EndPopup(); in ShowDemoWindowPopups() [all...] |
H A D | imgui_widgets.cpp | 1687 EndPopup(); in BeginComboPopup() 1696 EndPopup(); in EndCombo() 4981 EndPopup(); 5625 EndPopup(); 5629 EndPopup(); 5667 EndPopup(); 7004 EndPopup();
|
H A D | imgui.h | 332 // BeginPopup/EndPopup, etc. where the EndXXX call should only be called if the corresponding BeginXXX function 344 // BeginPopup/EndPopup, etc. where the EndXXX call should only be called if the corresponding BeginXXX function 680 // - BeginPopup(): query popup state, if open start appending into the window. Call EndPopup() afterwards. ImGuiWindowFlags are forwarded to the window. 684 IMGUI_API void EndPopup(); // only call EndPopup() if BeginPopupXXX() returns true! 689 // - CloseCurrentPopup(): use inside the BeginPopup()/EndPopup() scope to close manually.
|
H A D | imgui.cpp | 7441 IM_ASSERT(SizeOfBeginPopupStack == g.BeginPopupStack.Size && "BeginPopup/EndPopup or BeginMenu/EndMenu Mismatch!"); in CompareWithCurrentState() 8317 // Popups are closed when user click outside, or activate a pressable item, or CloseCurrentPopup() is called within a BeginPopup()/EndPopup() block. 8505 EndPopup(); in BeginPopupEx() 8548 EndPopup(); in BeginPopupModal() 8556 void ImGui::EndPopup() in EndPopup() function in ImGui 8560 IM_ASSERT(window->Flags & ImGuiWindowFlags_Popup); // Mismatched BeginPopup()/EndPopup() calls in EndPopup() 9125 // popup is assembled and in case of appended popups it is not clear which EndPopup() call is final.
|
H A D | imgui_tables.cpp | 1111 EndPopup(); in TableUpdateLayout()
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui_memory_editor.h | 463 ImGui::EndPopup(); in DrawContents()
|
H A D | imgui_widgets.cpp | 1375 EndPopup(); in BeginCombo() 1384 EndPopup(); in EndCombo() 3978 EndPopup(); 4566 EndPopup(); 4570 EndPopup(); 4608 EndPopup(); 5741 EndPopup();
|
H A D | imgui.h | 237 // [this is due to legacy reason and is inconsistent with most other functions such as BeginMenu/EndMenu, BeginPopup/EndPopup, etc. 247 // Always call a matching EndChild() for each BeginChild() call, regardless of its return value [this is due to legacy reason and is inconsistent with most other functions such as BeginMenu/EndMenu, BeginPopup/EndPopup, etc. where the EndXXX call should only be called if the corresponding BeginXXX function returned true.] 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). 543 IMGUI_API bool BeginPopup(const char* str_id, ImGuiWindowFlags flags = 0); // return true if the popup is open, and you can start outputting to it. only call EndPopup() if BeginPopup() returns true! 548 IMGUI_API void EndPopup(); // only call EndPopup() if BeginPopupXXX() returns true!
|
H A D | imgui.cpp | 4451 { int current = g.BeginPopupStack.Size; if (write) *p_backup = (short)current; else IM_ASSERT(*p_backup == current && "BeginMenu/EndMenu or BeginPopup/EndPopup Mismatch"); p_backup++;}// Too few or too many EndMenu()/EndPopup() in CheckStacksSize() 6753 // Popups are closed when user click outside, or activate a pressable item, or CloseCurrentPopup() is called within a BeginPopup()/EndPopup() block. 6919 EndPopup(); in BeginPopupEx() 6958 EndPopup(); in BeginPopupModal() 6966 void ImGui::EndPopup() in EndPopup() function in ImGui 6969 IM_ASSERT(g.CurrentWindow->Flags & ImGuiWindowFlags_Popup); // Mismatched BeginPopup()/EndPopup() calls in EndPopup()
|
/third_party/mesa3d/src/intel/tools/ |
H A D | aubinator_viewer.cpp | 1038 ImGui::EndPopup(); in display_aubfile_window()
|
Completed in 94 milliseconds