Drag and Drop: Exposed some internals.

This commit is contained in:
omar
2017-12-12 23:37:27 +01:00
parent 90788a1242
commit 8b59ed0708
2 changed files with 9 additions and 2 deletions

View File

@ -873,6 +873,8 @@ namespace ImGui
IMGUI_API bool SplitterBehavior(ImGuiID id, const ImRect& bb, ImGuiAxis axis, float* size1, float* size2, float min_size1, float min_size2, float hover_extend = 0.0f);
IMGUI_API bool BeginDragDropTargetCustom(const ImRect& bb, ImGuiID id);
IMGUI_API void ClearDragDrop();
IMGUI_API bool IsDragDropPayloadBeingAccepted();
// FIXME-WIP: 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().