| 3046 | // Basic Helpers for widget code |
| 3047 | IMGUI_API void ItemSize(const ImVec2& size, float text_baseline_y = -1.0f); |
| 3048 | inline void ItemSize(const ImRect& bb, float text_baseline_y = -1.0f) { ItemSize(bb.GetSize(), text_baseline_y); } // FIXME: This is a misleading API since we expect CursorPos to be bb.Min. |
| 3049 | IMGUI_API bool ItemAdd(const ImRect& bb, ImGuiID id, const ImRect* nav_bb = NULL, ImGuiItemFlags extra_flags = 0); |
| 3050 | IMGUI_API bool ItemHoverable(const ImRect& bb, ImGuiID id); |
| 3051 | IMGUI_API bool IsClippedEx(const ImRect& bb, ImGuiID id); |
no test coverage detected