| 2798 | // Basic Helpers for widget code |
| 2799 | IMGUI_API void ItemSize(const ImVec2& size, float text_baseline_y = -1.0f); |
| 2800 | 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. |
| 2801 | IMGUI_API bool ItemAdd(const ImRect& bb, ImGuiID id, const ImRect* nav_bb = NULL, ImGuiItemFlags extra_flags = 0); |
| 2802 | IMGUI_API bool ItemHoverable(const ImRect& bb, ImGuiID id); |
| 2803 | IMGUI_API bool IsClippedEx(const ImRect& bb, ImGuiID id); |
no test coverage detected