History for imgui / imgui_internal.h
2019-03-13
@omar
Version 1.69, comments, typos
omar committed on 13 Mar 2019
2019-03-12
@omar
TabBar: Reworked scrolling policy (when ImGuiTabBarFlags_FittingPolicyScroll is set) to teleport the view when aiming at a tab far away the visible section, and otherwise accelerate the scrolling speed to cap the scrolling time to 0.3 seconds.
omar committed on 12 Mar 2019
2019-03-11
@omar
Internal: Removed unused fields from ImGuiMenuColumns.
omar committed on 11 Mar 2019
2019-03-09
@Bruce Mitchener
Fix typos. (#2413)
Bruce Mitchener authored on 9 Mar 2019 omar committed on 9 Mar 2019
2019-03-08
@Bruce Mitchener
Don't use const qualified parameters in declarations. ...
Bruce Mitchener authored on 8 Mar 2019 omar committed on 8 Mar 2019
2019-03-06
@Lucas Lazare
Added InputTextWithHint() (#2400) ...
Lucas Lazare authored on 6 Mar 2019 omar committed on 6 Mar 2019
2019-03-05
@omar
Internal: Tabbing/Focus: Tidying up old code, moved some state to context instead of window. Storing new data will allow us to fix the bug mentioned in #2215 (probably in next commit).
omar committed on 5 Mar 2019
@omar
Internal: Tabbing: Tweaks to FocusableItemRegister and using the standard mechanism to allow/block Tab being interpreting by tabbing instead of InputText() widget.
omar committed on 5 Mar 2019
@omar
Internal: Text: Extracted TextUnformatted into TextEx over which we can freely atter the signature. Clarified current large text behavior of TextUnformatted with explicit ImGuiTextFlags_NoWidthForLargeClippedText flag (always set).
omar committed on 5 Mar 2019
2019-03-04
@omar
Renamed GetOverlayDrawList() to GetForegroundDrawList() for consistency. Kept redirection function (will obsolete). (#2391) ...
omar committed on 4 Mar 2019
@omar
Added GetBackgroundDrawList() helper to quickly get access to a ImDrawList that will be rendered behind every other windows. (#2391)
omar committed on 4 Mar 2019
2019-02-27
@omar
InputInt, InputScalar: +/- buttons now respects the natural type limits instead of overflowing or underflowing the value.
omar committed on 27 Feb 2019
2019-02-26
@omar
InputText: Fixed various display corruption related to swapping the underlying buffer while a input widget is active (both for writable and read-only paths). Often they would manifest when manipulating the scrollbar of a multi-line input text.
omar committed on 26 Feb 2019
@omar
Internal: InputText: Minor changes (intended to have side-effect but clarify next commit, however there is rarely such a thing as zero side effect in InputText land!)
omar committed on 26 Feb 2019
2019-02-23
@omar
Fixed uninitialized variable (leading to asserts in the docking branch). (#2376, #2371)
omar committed on 23 Feb 2019
@omar
Log/Capture: Fixed extraneous leading carriage return. Fixed an issue when empty string on a new line would not emit a carriage return.
omar committed on 23 Feb 2019
@omar
Log/Capture: Fixed LogXXX functions 'auto_open_depth' parameter being treated as an absolute tree depth instead of a relative one. Fixed CollapsingHeader trailing ascii representation being "#" instead of "##". Minor tidying up the of code.
omar committed on 23 Feb 2019
@omar
Internal: Log/Capture: Rework to add an internal LogToBuffer() function which is useful for writing automated tests. Clarified logging state by adding an enum.
omar committed on 23 Feb 2019
2019-02-22
@omar
TabBar: Fixed a crash when using BeginTabBar() recursively (didn't affect docking). (#2371) ...
omar committed on 22 Feb 2019
2019-02-21
@omar
Internal: InputText: Made clipboard copy/cut use its own temporary buffer (like paste) so we can guarantee that TempBuffer if not altered and can be preserved. Renamed TempBufferA to TextA to celebrate this.
omar committed on 21 Feb 2019
@omar
Internal: InputText: Renamed is_editable to !is_readonly, Hopefully more explicit. Renamed internal member. Shuffled some code. Added comments, assert (_will_ trigger on !readonly > readonly edge, old bug).
omar committed on 21 Feb 2019
2019-02-20
@omar
Internal: InputText: Comments. Renamed internal member. Renamed ImGuiStb->ImStb.
omar committed on 20 Feb 2019
2019-02-19
@omar
Version 1.69 WIP
omar committed on 19 Feb 2019
@omar
Internal: Changed Scrollbar() signature. Using GetScrollbarID() in InputTextMultiline(). ...
omar committed on 19 Feb 2019
@omar
Version 1.68
omar committed on 19 Feb 2019
2019-02-14
@omar
Examples: Extracted gamepad code into ImGui_ImplGlfw_UpdateGamepads(). Renamed matching Win32 function for consistency. ...
omar committed on 14 Feb 2019
@omar
Scrollbar: Fade out and disable interaction when too small, in order to facilitate using the resize grab on very small window, as well as reducing visual noise/overlap. (+1 squashed commits) ...
omar committed on 14 Feb 2019
2019-02-06
@omar
Minor tweaks to reduce false positive of PVS Studio static analyzer.
omar committed on 6 Feb 2019
2019-02-05
@omar
Plot: Register an ID to take the click the same way as other framed widgets. Set HoveredId in the FramePadding zone (between inner_bb and frame_bb).
omar committed on 5 Feb 2019
@omar
Tabs: Non-docking tab bars are storing names to allow tab list button + whole style scaling. Added ImGuiTabBarFlags_TabListPopupButton flag to show a popup button on manual tab bars. Locking FramePadding for the scope of a tab-bar to avoid sheering/clipping of tab item. Made scaling of tab ellipsis less awkward. (#261, #351)
omar committed on 5 Feb 2019