History for imgui / imgui_internal.h
2018-05-03
@omar
Internals: Missing const, some renaming. Tweak legacy fast path.
omar committed on 3 May 2018
@omar
Internals: Tidying up internal helpers. Fixed a case ImParseFormatTrimDecorations() can return an off by one (out of bound) pointer if the format string is invalid. Extracted ImParseFormatFindEnd() out of TrimDecorations so we can use it to find the format type and replace the %f in old Int apis.
omar committed on 3 May 2018
@omar
Internals: Fixed DragInt* default format string. InputScalar(), InputScalarN(), removed InputFloatN(), InputInt(). Note that DragInt2/3/4 will %f format strings will currently be broken. (#320, #643, #708, #1011)
omar committed on 3 May 2018
@omar
Internal: DragScalar(), InputScalar() now support signed/unsigned, 32/64 bits, float/double data types. (#320, #643, #708, #1011)
omar committed on 3 May 2018
@omar
Internals: DragFloat: Fixed power handling. Use an temporary accumulator and no absolute values so we will be able to manipulate double as well as 64-bit integers. (#1011, #708, #320)
omar committed on 3 May 2018
@omar
Internals: DragFloat: Removed DragSpeedScaleFast/DragSpeedScaleSlow since it's not yet usable and Nav version doesn't have an equivalent.
omar committed on 3 May 2018
@omar
Internals: Data types: Added s64, u64 data types. Added support in InputScalar(). Removed internal.h InputScalarEx() to InputScalar(). Removed cheap-relative-operators support in recently added U32 data path, since this is heading toward being legacy code. + Fixed InputDouble parsing code. (#1011, #320, #708)
omar committed on 3 May 2018
@omar
DragFloat/SliderFloat internal InputScalar trim leading/trailing spaces emitted from the format string when presenting an edit box to the user. (#648) ...
omar committed on 3 May 2018
@omar
Internals: Renamed IsCharIsSpace() to IsCharIsBlank*() to match standard terminlogy and added ascii/u16 variations.
omar committed on 3 May 2018
2018-04-30
@omar
Internals: Added ImGuiDataType_Uint32 data type which is usable with InputScalarEx().
omar committed on 30 Apr 2018
@omar
DragFloat, SliderFloat: Rounding scalar using the provided format string instead of parsed precision. (#648)
omar committed on 30 Apr 2018
@omar
DragFloat/SliderFloat internal InputScalar trip trailing decoration off the format string when presenting an edit box to the user. (#648)
omar committed on 30 Apr 2018
@omar
DragFloat/SliderFloat internal InputScalar relies on the user supplied format string to format and parse value. (#648) ...
omar committed on 30 Apr 2018
2018-04-27
@omar
InputFloat,InputFloat2,InputFloat3,InputFloat4: Added variations taking a more flexible and consistent optional "const char* format" parameter instead of "int decimal_precision". This allow using custom formats to display values in scientific notation, and is generally more consistent with other API. Obsoleted functions using the optional "int decimal_precision" parameter. (#648)
omar committed on 27 Apr 2018
2018-04-25
@omar
Misc: Comments and shallow/small changes (merged from viewport branch to minimize branch drift).
omar committed on 25 Apr 2018
@omar
Internals: Removed unecessary Pos/PosFloat separation, only reason appears to be mostly pre-1.0. The only piece of code that I expected sub-pixel window position to matter actually already round its delta (wrongly so, will fix later/separately if we want).
omar committed on 25 Apr 2018
2018-04-24
@omar
Internals: Removed misleading ImRect::FixInverted + fix minor formatting in Readme. ...
omar committed on 24 Apr 2018
2018-04-18
@omar
BeginMainMenuBar: Followup to 1e41bad9. Removed public window flag. DisplaySafeAreaPadding defaults to (3,3) instead of (4.4). Comments, tab to spaces, Changelog. (#1439)
omar committed on 18 Apr 2018
@Doug Binks
Added DisplaySafeAreaPadding to MainMenuBar height and fixed starting x position. Fixes main menu bar problems with TVs. (#1439)
Doug Binks authored on 18 Apr 2018 omar committed on 18 Apr 2018
2018-04-11
@omar
Internals: Window: Aggregating ImDrawList into the ImGuiWindow structure.
omar committed on 11 Apr 2018
2018-04-10
@omar
Internals: Renamed GetFrontMostModalRootWindow() to GetFrontMostPopupModal() and exposed in imgui_internal.h (#1738)
omar committed on 10 Apr 2018
2018-04-09
@omar
Version 1.61 WIP
omar committed on 9 Apr 2018
2018-04-07
@omar
Version 1.60
omar committed on 7 Apr 2018
@omar
Internals: Removed unused internal variant of ArrowButton().
omar committed on 7 Apr 2018
@omar
Fixed a few zealous warnings.
omar committed on 7 Apr 2018
2018-04-06
@omar
NewFrame: Extract some code into a NewFrameUpdateHoveredWindowAndCaptureFlags() which can be of use with touch-based inputs systems.
omar committed on 6 Apr 2018
@omar
NewFrame: Extract some code into a NewFrameUpdateMouseInputs function. Moved settings saving higher up in the function so it is next to its peers.
omar committed on 6 Apr 2018
2018-04-03
@omar
Fixed Clang zealous cast-call warning (on par with GCC) which decided to warn against explicit C-style casts now.
omar committed on 3 Apr 2018
2018-03-22
@omar
Internals: Removed ImGuiDataType_Float2.
omar committed on 22 Mar 2018
@omar
Added InputDouble() function. We use a format string instead of a decimal_precision parameter to also for "%e" and variants. (#1011) May transition the other InputXXX function to use format strings as well.
omar committed on 22 Mar 2018