ImGuiSelectionBasicStorage constructor needs visibility (#7906)
This commit is contained in:
parent
e471206b08
commit
59e69dc6df
2
imgui.h
2
imgui.h
@ -2860,7 +2860,7 @@ struct ImGuiSelectionBasicStorage
|
|||||||
ImGuiStorage _Storage; // [Internal] Selection set. Think of this as similar to e.g. std::set<ImGuiID>. Prefer not accessing directly: iterate with GetNextSelectedItem().
|
ImGuiStorage _Storage; // [Internal] Selection set. Think of this as similar to e.g. std::set<ImGuiID>. Prefer not accessing directly: iterate with GetNextSelectedItem().
|
||||||
|
|
||||||
// Methods
|
// Methods
|
||||||
ImGuiSelectionBasicStorage();
|
IMGUI_API ImGuiSelectionBasicStorage();
|
||||||
IMGUI_API void ApplyRequests(ImGuiMultiSelectIO* ms_io); // Apply selection requests coming from BeginMultiSelect() and EndMultiSelect() functions. It uses 'items_count' passed to BeginMultiSelect()
|
IMGUI_API void ApplyRequests(ImGuiMultiSelectIO* ms_io); // Apply selection requests coming from BeginMultiSelect() and EndMultiSelect() functions. It uses 'items_count' passed to BeginMultiSelect()
|
||||||
IMGUI_API bool Contains(ImGuiID id) const; // Query if an item id is in selection.
|
IMGUI_API bool Contains(ImGuiID id) const; // Query if an item id is in selection.
|
||||||
IMGUI_API void Clear(); // Clear selection
|
IMGUI_API void Clear(); // Clear selection
|
||||||
|
Loading…
Reference in New Issue
Block a user