Home
last modified time | relevance | path

Searched refs:mouse_button (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/imgui/
Dimgui.h544 …IMGUI_API bool BeginPopupContextItem(const char* str_id = NULL, int mouse_button = 1); …
545 …IMGUI_API bool BeginPopupContextWindow(const char* str_id = NULL, int mouse_button = 1, b…
546 …IMGUI_API bool BeginPopupContextVoid(const char* str_id = NULL, int mouse_button = 1); …
549 …IMGUI_API bool OpenPopupOnItemClick(const char* str_id = NULL, int mouse_button = 1); …
607 …IMGUI_API bool IsItemClicked(int mouse_button = 0); // is …
Dimgui.cpp4252 bool ImGui::IsItemClicked(int mouse_button) in IsItemClicked() argument
4254 return IsMouseClicked(mouse_button) && IsItemHovered(ImGuiHoveredFlags_None); in IsItemClicked()
6798 bool ImGui::OpenPopupOnItemClick(const char* str_id, int mouse_button) in OpenPopupOnItemClick() argument
6801 if (IsMouseReleased(mouse_button) && IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup)) in OpenPopupOnItemClick()
6981 bool ImGui::BeginPopupContextItem(const char* str_id, int mouse_button) in BeginPopupContextItem() argument
6986 if (IsMouseReleased(mouse_button) && IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup)) in BeginPopupContextItem()
6991 bool ImGui::BeginPopupContextWindow(const char* str_id, int mouse_button, bool also_over_items) in BeginPopupContextWindow() argument
6996 if (IsMouseReleased(mouse_button) && IsWindowHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup)) in BeginPopupContextWindow()
7002 bool ImGui::BeginPopupContextVoid(const char* str_id, int mouse_button) in BeginPopupContextVoid() argument
7007 if (IsMouseReleased(mouse_button) && !IsWindowHovered(ImGuiHoveredFlags_AnyWindow)) in BeginPopupContextVoid()
[all …]