History for imgui / imgui_internal.h
2017-10-05
@omar
Nav: Menus and popups now have move request wrap around vertically (using the move request forward thing added recently). (#787)
omar committed on 5 Oct 2017
2017-10-04
@omar
Comments
omar committed on 4 Oct 2017
@omar
Nav: Added code to render thin highlight type. (#787)
omar committed on 4 Oct 2017
2017-10-03
@omar
Nav: Added NavMoveResultParentId internal info to record when the parent/context of a given NavId. Useful for various algorithms (currently looking at range selection stuff) (#787)
omar committed on 3 Oct 2017
@omar
Nav: Added NavJustNavigatedId internal info to record when we land on a given item after a navigation request, useful for various algorithms (currently looking at range selection stuff) (#787)
omar committed on 3 Oct 2017
2017-09-29
@omar
Nav: It's now possible to navigate sibling of a menu-bar while navigating inside one of their child. If a Left<>Right navigation request fails to find a match we forward the request to the root menu. (#787, #126) ...
omar committed on 29 Sep 2017
@omar
Nav: Taking note that we should aim to remove MenuBarAppending later.
omar committed on 29 Sep 2017
@omar
Nav: Fixed uninitialized variable (that had no side-effects due to the code/data flow involved)
omar committed on 29 Sep 2017
@omar
Nav: Renamed internal field.
omar committed on 29 Sep 2017
@omar
Nav: Rectangle rectangle stored per window and per layer as well. Makes things simpler, allows enable us to visualize more data.
omar committed on 29 Sep 2017
@omar
Nav: Store per-window last nav id also per-layer so we can easily query them for menu navigation code. (#787)
omar committed on 29 Sep 2017
@omar
Merge branch 'master' into navigation ...
omar committed on 29 Sep 2017
2017-09-28
@omar
Nav: Commiting some better organized Debug helper because this going to stay for a bit.
omar committed on 28 Sep 2017
@omar
Comments
omar committed on 28 Sep 2017
@omar
ColorPicker4: Use nav flag to provide a slighly better experience when using navigation (#787, #346)
omar committed on 28 Sep 2017
@omar
Nav: Added ImGuiItemFlags_NoNav item flag
omar committed on 28 Sep 2017
@omar
Nav: Internal nenaming
omar committed on 28 Sep 2017
@omar
Comments
omar committed on 28 Sep 2017
@omar
Nav: Changed internal flag to NoNavDefaultFocus to be false by allow, and more consistent (#787)
omar committed on 28 Sep 2017
@omar
Merge branch 'master' into navigation ...
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
@omar
Merge branch 'master' into navigation ...
omar committed on 28 Sep 2017
@omar
Fixed IsItemHovered() - part of the processing has to be done in ItemAdd() because the widget may alter clipping rectangle temporarily.
omar committed on 28 Sep 2017
2017-09-27
@omar
Merge branch 'master' into navigation
omar committed on 27 Sep 2017
@omar
Refactor to move the responsability of SetHovered() to ItemHoverable() - previously IsHovered(). Simpler and the parallel to ItemAdd is clearer with the new name.
omar committed on 27 Sep 2017
@omar
Internals: ButtonBehavior(), IsHovered() moved the responsability of flatten_child higher level to ButtonBehavior() - not super sure about the elegance of this
omar committed on 27 Sep 2017
@omar
Merge branch 'master' into navigation
omar committed on 27 Sep 2017
@omar
IsItemHovered(), ItemAdd(): finishing cleaning up, moved the code to IsItemHovered() so ItemAdd() is more lightweight and the two IsXXXHovered functions are now very similar, making their differences less confusing.
omar committed on 27 Sep 2017
@omar
ItemAdd(), not performing computation for IsItemRectHovered() which does them itself, allowing us in the next commit to optimize ItemAdd() and make its logic more consistent with IsHovered().
omar committed on 27 Sep 2017