History for imgui / imgui.cpp
2017-10-18
@omar
CollapsingHeader(bool*) variant: fixed for IsItemHovered() to work properly in the nav branch.Basically the close button now has to use ItemAdd() to be navable into, which overwrite the IsItemHovered data. (#600, #787)
omar committed on 18 Oct 2017
@omar
Internals: ButtonBehavior: made ImGuiButtonFlags_PressedOnClick and ImGuiButtonFlags_PressedOnDoubleClick set the click offset correctly + hold on g.ActiveId so Held state can be reported. Added ImGuiButtonFlags_NoHoldingActiveId flag to disable the later.
omar committed on 18 Oct 2017
@omar
Checkbox: Using checkmark. MenuItem: Tweaked checkmark, thicker.
omar committed on 18 Oct 2017
2017-10-17
@omar
Begin: Marked 5 parameters version of Begin() as obsolete. Now waiting for a riot to happen!
omar committed on 17 Oct 2017
@omar
Begin: Work toward obsoleting the 5-arguments Begin() overload. Internal BeginEx() becomes the normal public Begin() again! (4)
omar committed on 17 Oct 2017
@omar
Begin: Work toward obsoleting the 5-arguments Begin() overload. Removed bg_alpha from internal BeginEx(). (3)
omar committed on 17 Oct 2017
@omar
Begin: Work toward obsoleting the 5-arguments Begin() overload. Removed size_on_first_use from internal BeginEx(). (2)
omar committed on 17 Oct 2017
@omar
Begin: Work toward obsoleting the 5-arguments Begin() overload. (1)
omar committed on 17 Oct 2017
2017-10-16
@omar
BeginPopupContextItem() now supports a NULL string identifier and uses the last item ID if available. For interactive items (that have an ID) this works! For non interactive items we assert.
omar committed on 16 Oct 2017
@omar
Fix IsItemHovered() issue on child by temporarily reverting 344d48b. This is not the ideal solution. (Fix #1370)
omar committed on 16 Oct 2017
2017-10-13
@omar
Removed apparently unncessary code in InputFloatN() and InputInt().
omar committed on 13 Oct 2017
@omar
Exposed Scrollbar() in imgui_internal.h and removed a bool arg
omar committed on 13 Oct 2017
2017-10-11
@omar
Rnamed AlignFirstTextHeightToWidgets() to AlignTextToFramePadding(). Kept inline redirection function (will obsolete).
omar committed on 11 Oct 2017
@omar
TreeNode: Added ImGuiTreeNodeFlags_FramePadding flag
omar committed on 11 Oct 2017
2017-10-06
@omar
Internal: ItemAdd(), IsClippedEx(): removed unnecessary indirection for ID parameter
omar committed on 6 Oct 2017
@omar
Removed extraneous calls to GetCurrentWindowRead() when we already have a ImGuiContext. Internal RenderXXX functions also don't need to write into the Accessed field at all.
omar committed on 6 Oct 2017
2017-10-05
@omar
ColorButton: Reduced bordering artefact that would be particularly visible with opaque Col_FrameBg and FrameRounding enabled.
omar committed on 5 Oct 2017
@omar
TextUnformatted(): minor tweak
omar committed on 5 Oct 2017
@omar
Made AlignFirstTextHeightToWidgets() saner and faster (still disliking its name very much!)
omar committed on 5 Oct 2017
@omar
SetKeyboardFocusHere() added assert to prevent passing values smaller than -1 as we may have to outlaw them (I think nobody was using that)
omar committed on 5 Oct 2017
@omar
Removed obsolete comment.
omar committed on 5 Oct 2017
2017-10-04
@omar
Styles: Added ImGuiStyle::ScaleAllSizes(float) helper to make it easier to have application transition to e.g. High DPI with a matching style.
omar committed on 4 Oct 2017
@matiTechno
typo
matiTechno committed on 4 Oct 2017
2017-10-02
@omar
Changed the internal name formatting of child windows to use slashes as separator, more readable.
omar committed on 2 Oct 2017
@omar
Metrics: Draw window bounding boxes when hovering Pos/Size. List all draw layers, trimming empty commands like Render() does.
omar committed on 2 Oct 2017
2017-09-29
@omar
BeginMenu(): fixed logic to distinguish vertical menu from one layed out in a menu bar. Makes MenuItem() in a regular window behave more consistently, and this will be also needed by upcoming menu-navigation changes in the nav branch. (#126, #787)
omar committed on 29 Sep 2017
@omar
BeginMenu: Shuffling braces around to clarify flow
omar committed on 29 Sep 2017
2017-09-28
@omar
Begin: Shallow tweak to minimize diff with nav branch
omar committed on 28 Sep 2017
@omar
Merged from Navigation branch: ImGuiItemFlags_SelectableDontClosePopup flag
omar committed on 28 Sep 2017
@omar
Added VerticalSeparator() entry point in imgui_internal. Seperator() in an horizontal layout context still does that.
omar committed on 28 Sep 2017