ImGuiStorage: Added BuildSortByKey() helper to rebuild storage from stratch.

This commit is contained in:
omar
2017-11-24 11:26:42 +01:00
parent ef5dd30625
commit d9c5d72962
2 changed files with 20 additions and 0 deletions

View File

@ -1097,6 +1097,9 @@ struct ImGuiStorage
// Use on your own storage if you know only integer are being stored (open/close all tree nodes)
IMGUI_API void SetAllInt(int val);
// For quicker full rebuild of a storage (instead of an incremental one), you may add all your contents and then sort once.
IMGUI_API void BuildSortByKey();
};
// Shared state of InputText(), passed to callback when a ImGuiInputTextFlags_Callback* flag is used and the corresponding callback is triggered.