Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/imgui/
H A Dimgui.h695 IMGUI_API void OpenPopupOnItemClick(const char* str_id = NULL, ImGuiPopupFlags popup_flags = 1); // helper to open popup when clicked on last item. Default to ImGuiPopupFlags_MouseButtonRight == 1. (note: actually triggers on the mouse _released_ event to be consistent with popup behaviors)
2838 static inline void OpenPopupContextItem(const char* str_id = NULL, ImGuiMouseButton mb = 1) { OpenPopupOnItemClick(str_id, mb); } // Bool return value removed. Use IsWindowAppearing() in BeginPopup() instead. Renamed in 1.77, renamed back in 1.79. Sorry! in OpenPopupContextItem()
H A Dimgui_widgets.cpp4918 OpenPopupOnItemClick("context");
4946 OpenPopupOnItemClick("context");
4967 OpenPopupOnItemClick("context");
5181 OpenPopupOnItemClick("context");
5198 OpenPopupOnItemClick("context");
H A Dimgui_demo.cpp3297 // We can also use OpenPopupOnItemClick() to toggle the visibility of a given popup. in ShowDemoWindowPopups()
3301 ImGui::OpenPopupOnItemClick("my popup", ImGuiPopupFlags_MouseButtonRight); in ShowDemoWindowPopups()
7328 ImGui::OpenPopupOnItemClick("context");
H A Dimgui.cpp437 - 2020/09/21 (1.79) - renamed OpenPopupContextItem() back to OpenPopupOnItemClick(), reverting the change from 1.77. For varieties of reason this is more self-explanatory.
438 - 2020/09/21 (1.79) - removed return value from OpenPopupOnItemClick() - returned true on mouse release on an item - because it is inconsistent with other popup APIs and makes others misleading. It's also and unnecessary: you can use IsWindowAppearing() after BeginPopup() for a similar result.
451 - 2020/06/15 (1.77) - renamed OpenPopupOnItemClick() to OpenPopupContextItem(). Kept inline redirection function (will obsolete). [NOTE: THIS WAS REVERTED IN 1.79]
8577 void ImGui::OpenPopupOnItemClick(const char* str_id, ImGuiPopupFlags popup_flags) in OpenPopupOnItemClick() function in ImGui
8598 // OpenPopupOnItemClick(str_id);
/third_party/mesa3d/src/imgui/
H A Dimgui_widgets.cpp3914 OpenPopupOnItemClick("context");
3941 OpenPopupOnItemClick("context");
3963 OpenPopupOnItemClick("context");
4192 OpenPopupOnItemClick("context");
4205 OpenPopupOnItemClick("context");
H A Dimgui.h549 IMGUI_API bool OpenPopupOnItemClick(const char* str_id = NULL, int mouse_button = 1); // helper to open popup when clicked on last item (note: actually triggers on the mouse _released_ event to be consistent with popup behaviors). return true when just opened.
H A Dimgui.cpp6798 bool ImGui::OpenPopupOnItemClick(const char* str_id, int mouse_button) in OpenPopupOnItemClick() function in ImGui

Completed in 93 milliseconds