Columns: Moved PushColumnClipRect() to imgui_internal.h

This commit is contained in:
omar
2017-08-20 23:09:43 +08:00
parent 54bdd00df7
commit adeaf1cd72
2 changed files with 2 additions and 2 deletions

View File

@ -762,6 +762,7 @@ namespace ImGui
// New Columns API
IMGUI_API void BeginColumns(const char* id, int count, ImGuiColumnsFlags flags = 0); // setup number of columns. use an identifier to distinguish multiple column sets. close with EndColumns().
IMGUI_API void EndColumns(); // close columns
IMGUI_API void PushColumnClipRect(int column_index = -1);
// NB: All position are in absolute pixels coordinates (never using window coordinates internally)
// AVOID USING OUTSIDE OF IMGUI.CPP! NOT FOR PUBLIC CONSUMPTION. THOSE FUNCTIONS ARE A MESS. THEIR SIGNATURE AND BEHAVIOR WILL CHANGE, THEY NEED TO BE REFACTORED INTO SOMETHING DECENT.