imgui icon indicating copy to clipboard operation
imgui copied to clipboard

Add some RAII-style wrappers for windows, children, tree nodes, etc.

Open sethk opened this issue 6 years ago • 1 comments

As discussed in #2096, here is an additional header file with some RAII-style wrappers for common ImGui objects.

sethk avatar Nov 18 '18 14:11 sethk

@sethk There are some generated classes that are outdated now: PushAllowKeyboardFocus should be replaced with PushTabStop BeginChildFrame could be replaced with BeginChild(..., ImGuiChildFlags_FrameStyle, ...);, or removed outright. BeginPopupContextWindow does not take a boolean, but an ImGuiPopupFlags

learn-more avatar Mar 13 '24 19:03 learn-more