MCPcopy Create free account
hub / github.com/cinder/Cinder / GetBoxSelectState

Function GetBoxSelectState

include/imgui/imgui_internal.h:3445–3445  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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)

Callers 2

EndMultiSelectMethod · 0.85
MultiSelectItemFooterMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected