| 3443 | IMGUI_API void MultiSelectAddSetAll(ImGuiMultiSelectTempData* ms, bool selected); |
| 3444 | IMGUI_API void MultiSelectAddSetRange(ImGuiMultiSelectTempData* ms, bool selected, int range_dir, ImGuiSelectionUserData first_item, ImGuiSelectionUserData last_item); |
| 3445 | inline ImGuiBoxSelectState* GetBoxSelectState(ImGuiID id) { ImGuiContext& g = *GImGui; return (id != 0 && g.BoxSelectState.ID == id && g.BoxSelectState.IsActive) ? &g.BoxSelectState : NULL; } |
| 3446 | inline ImGuiMultiSelectState* GetMultiSelectState(ImGuiID id) { ImGuiContext& g = *GImGui; return g.MultiSelectStorage.GetByKey(id); } |
| 3447 | |
| 3448 | // Internal Columns API (this is not exposed because we will encourage transitioning to the Tables API) |
no outgoing calls
no test coverage detected