Searched refs:mouse_button (Results 1 - 7 of 7) sorted by relevance
| /xsrc/external/mit/MesaLib.old/dist/src/imgui/ |
| H A D | imgui.h | 544 IMGUI_API bool BeginPopupContextItem(const char* str_id = NULL, int mouse_button = 1); // helper to open and begin popup when clicked on last item. if you can pass a NULL str_id only if the previous item had an id. If you want to use that on a non-interactive item such as Text() you need to pass in an explicit ID here. read comments in .cpp! 545 IMGUI_API bool BeginPopupContextWindow(const char* str_id = NULL, int mouse_button = 1, bool also_over_items = true); // helper to open and begin popup when clicked on current window. 546 IMGUI_API bool BeginPopupContextVoid(const char* str_id = NULL, int mouse_button = 1); // helper to open and begin popup when clicked in void (where there are no imgui windows). 549 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. 607 IMGUI_API bool IsItemClicked(int mouse_button = 0); // is the last item clicked? (e.g. button/node just clicked on) == IsMouseClicked(mouse_button) && IsItemHovered()
|
| H A D | imgui.cpp | 404 - 2018/02/18 (1.60) - BeginDragDropSource(): temporarily removed the optional mouse_button=0 parameter because it is not really usable in many situations at the moment. 4252 bool ImGui::IsItemClicked(int mouse_button) argument 4254 return IsMouseClicked(mouse_button) && IsItemHovered(ImGuiHoveredFlags_None); 6798 bool ImGui::OpenPopupOnItemClick(const char* str_id, int mouse_button) argument 6801 if (IsMouseReleased(mouse_button) && IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup)) 6981 bool ImGui::BeginPopupContextItem(const char* str_id, int mouse_button) argument 6986 if (IsMouseReleased(mouse_button) && IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup)) 6991 bool ImGui::BeginPopupContextWindow(const char* str_id, int mouse_button, bool also_over_items) argument 6996 if (IsMouseReleased(mouse_button) && IsWindowHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup)) 7002 bool ImGui::BeginPopupContextVoid(const char* str_id, int mouse_button) argument 8498 int mouse_button = 0; local in function:ImGui::BeginDragDropSource [all...] |
| /xsrc/external/mit/MesaLib/dist/src/imgui/ |
| H A D | imgui.h | 544 IMGUI_API bool BeginPopupContextItem(const char* str_id = NULL, int mouse_button = 1); // helper to open and begin popup when clicked on last item. if you can pass a NULL str_id only if the previous item had an id. If you want to use that on a non-interactive item such as Text() you need to pass in an explicit ID here. read comments in .cpp! 545 IMGUI_API bool BeginPopupContextWindow(const char* str_id = NULL, int mouse_button = 1, bool also_over_items = true); // helper to open and begin popup when clicked on current window. 546 IMGUI_API bool BeginPopupContextVoid(const char* str_id = NULL, int mouse_button = 1); // helper to open and begin popup when clicked in void (where there are no imgui windows). 549 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. 607 IMGUI_API bool IsItemClicked(int mouse_button = 0); // is the last item clicked? (e.g. button/node just clicked on) == IsMouseClicked(mouse_button) && IsItemHovered()
|
| H A D | imgui.cpp | 404 - 2018/02/18 (1.60) - BeginDragDropSource(): temporarily removed the optional mouse_button=0 parameter because it is not really usable in many situations at the moment. 4252 bool ImGui::IsItemClicked(int mouse_button) argument 4254 return IsMouseClicked(mouse_button) && IsItemHovered(ImGuiHoveredFlags_None); 6798 bool ImGui::OpenPopupOnItemClick(const char* str_id, int mouse_button) argument 6801 if (IsMouseReleased(mouse_button) && IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup)) 6981 bool ImGui::BeginPopupContextItem(const char* str_id, int mouse_button) argument 6986 if (IsMouseReleased(mouse_button) && IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup)) 6991 bool ImGui::BeginPopupContextWindow(const char* str_id, int mouse_button, bool also_over_items) argument 6996 if (IsMouseReleased(mouse_button) && IsWindowHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup)) 7002 bool ImGui::BeginPopupContextVoid(const char* str_id, int mouse_button) argument 8498 int mouse_button = 0; local in function:ImGui::BeginDragDropSource [all...] |
| /xsrc/external/mit/xterm/dist/ |
| H A D | button.c | 5503 screen->mouse_button |= ButtonBit(button); 5522 screen->mouse_button &= ~ButtonBit(button); 5544 count = EMIT_BUTTON(FirstBitN(screen->mouse_button));
|
| H A D | ptyx.h | 2563 int mouse_button; /* current button pressed */ member in struct:__anon7e1168c34108
|
| H A D | charproc.c | 10539 screen->mouse_button = 0;
|
Completed in 75 milliseconds