History for imgui / imgui.cpp
2019-07-17
@omar
Internals: Refactor: Moved all Columns code from imgui.cpp to imgui_widgets.cpp (#125) ...
omar committed on 17 Jul 2019
2019-07-16
@omar
Debug, Metrics: Added "Tools->Item Picker" tool which allow clicking on a widget to break in the debugger within the item code. The tool calls IM_DEBUG_BREAK() which can be redefined in imconfig.h if needed.
omar committed on 16 Jul 2019
@omar
Style: Added style.ColorButtonButton (left/right, defaults to ImGuiDir_Right) to move the color button of ColorEdit3/ColorEdit4 functions to either side of the inputs.
omar committed on 16 Jul 2019
2019-07-15
@omar
Removed TreeAdvanceToLabelPos() which is rarely used and only does SetCursorPosX(GetCursorPosX() + GetTreeNodeToLabelSpacing()). Kept redirection function (will obsolete). (#581, #324)
omar committed on 15 Jul 2019
@omar
Fixed unnecessary test in UpdateMouseWheel() (thanks PVS). ...
omar committed on 15 Jul 2019
2019-07-12
@omar
Settings: Minor optimization to reduce calls in SettingsHandlerWindow_WriteAll.
omar committed on 12 Jul 2019
@omar
Renamed ImFontAtlas::CustomRect to ImFontAtlasCustomRect. Keep redirection typedef (will obsolete).
omar committed on 12 Jul 2019
@omar
Prefixed internal structs exposed in imgui.h with a fully qualified name to facilitate auto-generation with cimgui.
omar committed on 12 Jul 2019
2019-07-02
@omar
Window: Mouse wheel scrolling while hovering a child window is automatically forwarded to parent window if ScrollMax is zero on the scrolling axis. Also still case if ImGuiWindowFlags_NoScrollWithMouse is set (not new), but previously the forwarding ...
omar committed on 2 Jul 2019
2019-07-01
@omar
Misc: Added IMGUI_DISABLE_METRICS_WINDOW imconfig.h setting to explicitly compile out ShowMetricsWindow(). + Internals: Minor renaming.
omar committed on 1 Jul 2019
@omar
Added SetScrollXHere, SetScrollFromPosX: Changelog, demo, comments (#1580).
omar committed on 1 Jul 2019
@kevreco
Added 'SetScrollHereX' and 'SetScrollFromPosX' (#1580)
kevreco authored on 30 Jan 2018 omar committed on 1 Jul 2019
2019-06-29
@omar
Child windows inherit Hidden frames setting from parent more accurately, so HiddenFramesCannotSkipItems is honored by child windows.
omar committed on 29 Jun 2019
@omar
Internals: Moved CalcListClipping close to ImGuiListClipper code (no-op)
omar committed on 29 Jun 2019
@omar
Internals: ImGuiListClipper using absolute coordinate (instead of relative one). Minor no-op tweaks + ImDrawListSplitter assert
omar committed on 29 Jun 2019
2019-06-26
@omar
Doc: Tweak and extra mention of AddCustomRectFontGlyph + made the example register two rectangles.
omar committed on 26 Jun 2019
2019-06-19
@omar
Internals: Renamed GetFrontMostPopupModal() to GetTopMostPopupModal() to be consistent. Renamed other locals to follow that terminology.
omar committed on 19 Jun 2019
2019-06-18
@omar
Window: Fixed InnerClipRect right-most coordinates using wrong padding setting (introduced in 1.71).
omar committed on 18 Jun 2019
2019-06-17
@omar
Internals: Columns: Poke into WorkRect and use them in the GetContentRegionMax() functions. This should be a no-op, but preparing us to transition toward using WorkRect instead of ContentRegionRect. ...
omar committed on 17 Jun 2019
@omar
Disable -Wpragmas warning in GCC to avoid relying on version checks, as unusual/forks/mods don't appear to always have same warning<>version. (#2618) ...
omar committed on 17 Jun 2019
2019-06-14
@omar
Removed redirecting functions/enums that were obsoleted in version 1.51 (June 2017): ImGuiCol_Column*, ImGuiSetCond_*, IsItemHoveredRect(), IsPosHoveringAnyWindow(), IsMouseHoveringAnyWindow(), IsMouseHoveringWindow(), IMGUI_ONCE_UPON_A_FRAME.
omar committed on 14 Jun 2019
@omar
Version 1.72 WIP
omar committed on 14 Jun 2019
2019-06-12
@omar
Version 1.71 + comments
omar committed on 12 Jun 2019
2019-06-11
@omar
Internals: Reworked RenderTextEllipsis() to satisfy what we need for table headers.
omar committed on 11 Jun 2019
@omar
Readme, comments, dear imgui prefixes
omar committed on 11 Jun 2019
@omar
Log/Capture: Fixed BeginTabItem() label not being included in a text log/capture. ...
omar committed on 11 Jun 2019
2019-06-07
@omar
Window: child windows outer decorations (e.g. scrollbar) are rendered as part of their parent window, avoiding the creation of an extraneous draw command. ...
omar committed on 7 Jun 2019
@omar
Internals: Added drawlist and color arg to RenderArrow(), RenderBullet(). Reordered args for RenderPixelEllipsis.
omar committed on 7 Jun 2019
2019-06-06
@omar
Made PushID() behave the same in 32-bit and 64-bit, by not padding the integer into a void*. (Also technically faster.)
omar committed on 6 Jun 2019
@omar
Synced/merged minor cruft from docking branch to minimize drift. AFAIK the only meaningful no-op change is that the call UpdateHoveredWindowAndCaptureFlags() was moved above UpdateMouseMovingNewFrame() to match what docking branch has been doing for a while.
omar committed on 6 Jun 2019