History for imgui / imgui_internal.h
2018-08-22
@omar
Internals: Wired a ImGuiItemStatusFlags_ValueChanged into ItemStatusFlags, for an hypothetical IsItemValueChanged() function. (#2034)
omar committed on 22 Aug 2018
@omar
Rearrange header comments to find enums easily + fixed inconsistent sorting.
omar committed on 22 Aug 2018
@omar
Internals: InputText: Renaming. Comments.
omar committed on 22 Aug 2018
@omar
InputText: Renamed ImGuiTextEditCallback to ImGuiInputTextCallback, ImGuiTextEditCallbackData to ImGuiInputTextCallbackData for consistency. Kept redirection types (will obsolete).
omar committed on 22 Aug 2018
2018-08-21
@omar
InputText: Added support for buffer size/capacity changes via the ImGuiInputTextFlags_CallbackResize flag. (#2006, #1443, #1008).
omar committed on 21 Aug 2018
@omar
InputText: Internal renaming of some fields + final copy uses edit_state.CurLenA+1 instead of buf_size.
omar committed on 21 Aug 2018
2018-08-20
@omar
Internals: Moved code out of SliderBehaviorT to reduce code bloat and also because caller may have use for the grab_bb for styling purposes.
omar committed on 20 Aug 2018
2018-08-17
@omar
Internals: Added ImTextCountUtf8BytesFromChar() helper.
omar committed on 17 Aug 2018
2018-08-16
@omar
Fixed assertion when transitioning from an active ID to another within a group, affecting ColorPicker (broken in 1.62). Made ActiveIdIsAlive track the actual ID to avoid incorrect polling in BeginGroup/EndGroup when the ID changes within the group. (#2023, #820, #956, #1875).
omar committed on 16 Aug 2018
2018-08-14
@omar
Selectable: Added ImGuiSelectableFlags_Disabled flag in the public API. (#211)
omar committed on 14 Aug 2018
2018-08-09
@omar
TODO + added missing _None enum for some internals flags.
omar committed on 9 Aug 2018
@omar
Internals: Extracted RenderMouseCursor() out of EndFrame(). Moved to imgui_draw.cpp along with RenderArrowPointingAt(). Comments. (#2013)
omar committed on 9 Aug 2018
2018-08-05
@omar
Internals: Minor renaming for consistency.
omar committed on 5 Aug 2018
2018-07-31
@omar
Fixed PushID() from keeping alive the new ID Stack top value (if a previously active widget shared the ID it would be erroneously kept alive) (drag and drop demo could soft-lock the UI until pressing Escape!)
omar committed on 31 Jul 2018
@omar
Drag and Drop: Payload stays available and under the mouse if the source stops being submitted, however the tooltip is replaced by "..." + moved FrameScopeActive = false at the bottom of EndFrame() for safety. (#1725)
omar committed on 31 Jul 2018
2018-07-30
@omar
Made assertion more clear when trying to call Begin() outside of the NewFrame()..EndFrame() scope. (#1987)
omar committed on 30 Jul 2018
@omar
Internals: Changed signature of ShadeVerts functions to remove pointers. (#1286, #1700, #1986)
omar committed on 30 Jul 2018
2018-07-26
@omar
Internals: Changed SplitterBehavior() signature to be consistent with other similar signatures. (#319).
omar committed on 26 Jul 2018
@omar
Internals: Extracted part of Begin into UpdateWindowParentAndRootLinks(). Useful to call to keep state updated immediately (namely useful for docking) + small tidying up of imgui_internal.h
omar committed on 26 Jul 2018
@omar
Internals: Child windows that are clipped or part of a collapsed parent are not marked as collapsed anymore, but just a separate hidden marker set. We distinguish hiding for size measurement vs hiding for other reasons. Cleaned a little the end of Begin.
omar committed on 26 Jul 2018
@omar
Nav: Tweaked CTRL+TAB to hide visual noise on fast switch + fading out screen dimming and highlight to make the experience less harsh
omar committed on 26 Jul 2018
2018-07-25
@omar
Internals: SplitterBehavior() added hover_visibility_delay parameter which is helpful to reduce visual noise. (#319)
omar committed on 25 Jul 2018
2018-07-24
@omar
Made it possible to move a window by dragging from the Collapse button (past the drag threshold). Extracted some code out to a CollapseButton() function.
omar committed on 24 Jul 2018
@omar
Internals: Renamed one of the arrow functions so their name don't collide.
omar committed on 24 Jul 2018
2018-07-22
@omar
Changed ImGui::GetTime() return value from float to double to avoid accumulating floating point imprecisions over time.
omar committed on 22 Jul 2018
2018-07-12
@omar
Comments, exposed a few things in imgui_internal.h for consistency, added ImQsort wrapper.
omar committed on 12 Jul 2018
2018-07-10
@omar
IsItemHovered(): Added ImGuiHoveredFlags_AllowWhenDisabled flag to query hovered status on disabled items. (#1940, #211) ...
omar committed on 10 Jul 2018
@omar
Internals: Extracted StartMouseMovingWindow so we can add code to turn an arbitrary widget into a window mover (will be useful to make the Collapse button a window mover past a mouse drag threshold) + added a couple of _None flags.
omar committed on 10 Jul 2018
2018-07-09
@omar
Internals: Move IMGUI_CDECL declaration to imgui_internal.h so everyone can profit.
omar committed on 9 Jul 2018
@omar
Nav: Added a CTRL+TAB window list and changed the highlight system accordingly. (#787)
omar committed on 9 Jul 2018