History for imgui / imgui.cpp
2018-05-14
@omar
Nav: Draft internal api to forward move request with loop/wrap options. Will rework for parallel scoring of two paths (as a generalization of the NavFlattened concept). (#787)
omar committed on 14 May 2018
@omar
Nav: To keep the navigated item in view we also attempt to scroll the parent window as well as the current window. (#787)
omar committed on 14 May 2018
@omar
Version 1.62 WIP
omar committed on 14 May 2018
@omar
Version 1.61 + todo additions
omar committed on 14 May 2018
2018-05-13
@omar
ColorEdit: Fixed not being able to pass the ImGuiColorEditFlags_NoAlpha or ImGuiColorEditFlags_HDR flags to SetColorEditOptions(). Demo tweak.
omar committed on 13 May 2018
@omar
Fix for atof with glibc.
omar committed on 13 May 2018
@omar
Added ImAtof, ImCeil, ImFloorStd to IMGUI_DISABLE_MATH_FUNCTIONS for consistency. Configuration comments.
omar committed on 13 May 2018
@omar
Added IMGUI_DISABLE_MATH_FUNCTIONS in imconfig.h to make it slightly easier to redefine wrappers to std maths functions such as fabsf(), fmodf(), etc. Comments.
omar committed on 13 May 2018
2018-05-12
@omar
Data types: DragScalar: Fixed speed of integer values tweaking with keyboard/gamepad when speed < 1. Enforce min/max bounds when power curves are used. SliderScalar: Fixed integer/slow tweaking. (#643)
omar committed on 12 May 2018
2018-05-11
@omar
Data types: DragScalar, InputScalar: default parameters. Added IM_STATIC_ASSERT(). Comments.
omar committed on 11 May 2018
@omar
Documentation tweaks, comments
omar committed on 11 May 2018
@omar
Merge branch 'data_types' ...
omar committed on 11 May 2018
2018-05-10
@omar
Scrolling: Fixed a case where using SetScrollHere(1.0f) at the bottom of a window on the same frame the window height has been growing would have the scroll clamped using the previous height. (#1804)
omar committed on 10 May 2018
2018-05-09
@omar
Combo: Horizontally offset items using WindowPadding instead of Indent, for consistency.
omar committed on 9 May 2018
@omar
Internals: Made ContentsRegionRect absolute to reduce confusion. Renamed InnerRect to InnerMainRect, renamed WindowRectClipper to OuterRectClipped.
omar committed on 9 May 2018
@omar
Internals: Nav: Extracted code into a NavClampToVisibleAreaForMoveDir() + fix debug code + inline some functions, removed obsolete EndChild() comment.
omar committed on 9 May 2018
2018-05-08
@omar
Data types: Fix format srtings with leading blanks. Fix ColorEdit4() to not use obsolete formats (when using IMGUI_DISABLE_OBSOLETE_FUNCTIONS) (#643)
omar committed on 8 May 2018
@omar
Apply fix from data_types branch, some widgets broken when format string doesn't contains a %. Broken by 92f0165. Data_types branch fix c5fb929.
omar committed on 8 May 2018
@omar
Internals: Declaring DragBehavior, SliderBehavior in there (no warantee given) as they may be useful to custom widgets.
omar committed on 8 May 2018
@omar
Data types: Fixed empty format string (or no % specifier) breaking the parsing back of values.
omar committed on 8 May 2018
@omar
Fix to allow compiling in unity builds where stb_rectpack/stb_truetype may be already included in the same compilation unit.
omar committed on 8 May 2018
2018-05-07
@omar
Settings: Added LoadIniSettingsFromDisk(), LoadIniSettingsFromMemory(), SaveIniSettingsToDisk(), SaveIniSettingsToMemory(), io.WantSaveIniSettings. (#923, #993)
omar committed on 7 May 2018
@omar
Internals: Removed unnecessary allocation indirection for g.LogClipboard (this only made sense when there was a global context instance)
omar committed on 7 May 2018
2018-05-04
@omar
SliderScalar, VSliderScalar(): Support for any data types. Tested with various ranges/limits. Note that Drag/Slider/Input currently fail if the format string doesn't preview the actual value. Will fix next. (#320, #643, #708, #1011)
omar committed on 4 May 2018
@omar
Internals: A few selected math helpers are now using template to handle all supported types. Added ImPow() to wrap float/double in a standard manner without calling pow(double) when not needed in Drag code.
omar committed on 4 May 2018
@omar
Internals: Data types: Made format string optional. DragBehavior: Moved a bit of code outside of the template. Slider tidying up. Removed unnecessary call to fabsf().
omar committed on 4 May 2018
@omar
DragFloat, DragInt: Default format string is none is passed to the function. Fixed demo using old style %.0f.
omar committed on 4 May 2018
2018-05-03
@omar
Internals: Missing const, some renaming. Tweak legacy fast path.
omar committed on 3 May 2018
@omar
DragInt, DragScalar: Actually made the fast-past handle the now-most-common case..
omar committed on 3 May 2018
@omar
DragInt: Patch old format strings to replace %f by %d when using the DragInt() entry point. (#320, #643, #708, #1011)
omar committed on 3 May 2018