Undo IsHovered > IsItemHovered, shorter name wins

docking
ocornut 11 years ago
parent f30d23a502
commit 309ff44579

@ -1671,7 +1671,7 @@ ImVec2 GetMousePos()
return GImGui.IO.MousePos; return GImGui.IO.MousePos;
} }
bool IsItemHovered() bool IsHovered()
{ {
ImGuiWindow* window = GetCurrentWindow(); ImGuiWindow* window = GetCurrentWindow();
return window->DC.LastItemHovered; return window->DC.LastItemHovered;
@ -5427,7 +5427,7 @@ void ShowTestWindow(bool* open)
ImGui::RadioButton("radio c", &e, 2); ImGui::RadioButton("radio c", &e, 2);
ImGui::Text("Hover me"); ImGui::Text("Hover me");
if (ImGui::IsItemHovered()) if (ImGui::IsHovered())
ImGui::SetTooltip("I am a tooltip"); ImGui::SetTooltip("I am a tooltip");
static int item = 1; static int item = 1;

@ -231,7 +231,7 @@ namespace ImGui
// Utilities // Utilities
void SetTooltip(const char* fmt, ...); // set tooltip under mouse-cursor, typically use with ImGui::IsHovered(). (currently no contention handling, last call win) void SetTooltip(const char* fmt, ...); // set tooltip under mouse-cursor, typically use with ImGui::IsHovered(). (currently no contention handling, last call win)
void SetNewWindowDefaultPos(ImVec2 pos); // set position of window that do void SetNewWindowDefaultPos(ImVec2 pos); // set position of window that do
bool IsItemHovered(); // was the last item active area hovered by mouse? bool IsHovered(); // was the last item active area hovered by mouse?
ImVec2 GetItemBoxMin(); // get bounding box of last item ImVec2 GetItemBoxMin(); // get bounding box of last item
ImVec2 GetItemBoxMax(); // get bounding box of last item ImVec2 GetItemBoxMax(); // get bounding box of last item
bool IsClipped(ImVec2 item_size); // to perform coarse clipping on user's side (as an optimisation) bool IsClipped(ImVec2 item_size); // to perform coarse clipping on user's side (as an optimisation)

Loading…
Cancel
Save