History for imgui / imgui.cpp
2017-11-20
@omar
Exposed ImDrawCornerFlags, replaced occurences of ~0 with an explicit ImDrawCornerFlags_All. Inversed BotLeft (prev 1<<3, now 1<<2) and BotRight (prev 1<<2, now 1<<3).
omar committed on 20 Nov 2017
@omar
Color picker: Tweak vertex shading code, since we aren't shading between PrimReserve and PrimVert the code can be expressed more naturally. (#346)
omar committed on 20 Nov 2017
2017-11-19
@omar
Fix for drag and drop branch.
omar committed on 19 Nov 2017
@omar
Merge branch 'master' into drag_and_drop
omar committed on 19 Nov 2017
@omar
Style, Begin: removed ImGuiWindowFlags_ShowBorders window flag. Borders are now fully set up in the ImGuiStyle structure (see e.g. style.FrameBorderSize, style.WindowBorderSize). Use ImGui::ShowStyleEditor() to look them up. (#707, fix #819, #1031, ref #1019, ref #447)
omar committed on 19 Nov 2017
@omar
Reorder fields for consistency.
omar committed on 19 Nov 2017
@omar
Style: renamed ImGuiCol_ChildWindowBg to ImGuiCol_ChildBg. (#707)
omar committed on 19 Nov 2017
@omar
NewFrame() now asserts if neither Render or EndFrame have been called. Exposed EndFrame(). Made it legal to call EndFrame() more than one. (#1423 etc.)
omar committed on 19 Nov 2017
@omar
NewFrame(): using literal strings in the most-frequently firing IM_ASSERT expression to increase the odd of programmers seeing them (especially those who don't use a debugger).
omar committed on 19 Nov 2017
2017-11-18
@omar
Merge branch 'master' into drag_and_drop
omar committed on 18 Nov 2017
@omar
Combo: Offset popup position by border size so that a double border isn't so visible. (#707)
omar committed on 18 Nov 2017
@omar
Style: Added PopupRounding setting. (#1112)
omar committed on 18 Nov 2017
@omar
Fix IsItemHovered() returning true for non-title bar hidden items that are clipped due to window collapsing logic. Fix 27fd1b9. (#823)
omar committed on 18 Nov 2017
@omar
Internals: Renamed ImGuiWindow::Accessed to WriteAccessed.
omar committed on 18 Nov 2017
@omar
Style: Removed ImGuiCol_ComboBg in favor of combo boxes using ImGuiCol_PopupBg for consistency. (#707)
omar committed on 18 Nov 2017
@omar
Internals: Window minor internal renaming + added WindowRounding latch.
omar committed on 18 Nov 2017
@omar
Style: renamed style.ChildWindowRounding to style.ChildRounding, ImGuiStyleVar_ChildWindowRounding to ImGuiStyleVar_ChildRounding.
omar committed on 18 Nov 2017
2017-11-17
@omar
Style: ScaleAllSizes() helper rounds down every values so they are aligned on integers.
omar committed on 17 Nov 2017
2017-11-16
@omar
Columns: Added ImGuiColumnsFlags_GrowParentContentsSize to internal API to restore old content sizes behavior. (#1444, #125)
omar committed on 16 Nov 2017
@omar
Merge branch 'master' into drag_and_drop
omar committed on 16 Nov 2017
@omar
Internals: Updating condition/allow flags with a function.
omar committed on 16 Nov 2017
@omar
Internals: Window: Store whether the windows has a close button (we need that info for window/tabs dropping preview calculation)
omar committed on 16 Nov 2017
@omar
Internals: Added BringWindowToFront(), BringWindowToBack() helpers.
omar committed on 16 Nov 2017
2017-11-15
@omar
Windows with MenuBar have a larger minimum height to avoid artefacts (I fixed most of the vertical/horizontal artefacts, but the ones in rounded corners were too hard to fix).
omar committed on 15 Nov 2017
@omar
Menu: Fixed minor rendering issues on the right size with rounded window when resizing a window small.
omar committed on 15 Nov 2017
@omar
Scrollbar: Minor graphical fix for when scrollbar don't have enough visible space to display the full grab.
omar committed on 15 Nov 2017
@omar
Minor comments, tweaks
omar committed on 15 Nov 2017
@omar
Make it possible to use SetNextWindowPos() on a child window. Useful internally.
omar committed on 15 Nov 2017
@omar
Merge branch 'master' into drag_and_drop
omar committed on 15 Nov 2017
@omar
Made it guaranteed by API that after calling Begin() the last Item represent the title bar. (#823)
omar committed on 15 Nov 2017