Popups: Exposing a little more of popups internals in imgui_internals.h

This commit is contained in:
omar
2017-09-25 12:52:06 +02:00
parent 3dd3d0b248
commit 0a5fb24f10
2 changed files with 9 additions and 9 deletions

View File

@ -774,7 +774,9 @@ namespace ImGui
IMGUI_API void PopItemFlag();
IMGUI_API void OpenPopupEx(ImGuiID id, bool reopen_existing);
IMGUI_API void ClosePopup(ImGuiID id);
IMGUI_API bool IsPopupOpen(ImGuiID id);
IMGUI_API bool BeginPopupEx(ImGuiID id, ImGuiWindowFlags extra_flags);
IMGUI_API int CalcTypematicPressedRepeatAmount(float t, float t_prev, float repeat_delay, float repeat_rate);