2019-09-17 |
Remove trailing spaces (grep for ' \r?$' in visual studio)
omar
committed
on 17 Sep 2019
|
---|---|
2019-09-16 |
Nav, Scrolling: Added support for Home/End key. (#787)
omar
committed
on 16 Sep 2019
|
2019-08-31 |
Fixed missing IMGUI_API for IsMouseDragPastThreshold().
omar
committed
on 31 Aug 2019
|
2019-08-29 |
TabBar: feed desired width (sum of unclipped tabs width) into layout system to allow for auto-resize. (#2768)
...
omar
committed
on 29 Aug 2019
|
2019-08-28 |
Added a mechanism to compact/free the larger allocations of unused windows (buffers are compacted when a window is unused for 60 seconds, as per io.ConfigWindowsMemoryCompactTimer = 60.0f). Note that memory usage has never been reported as a problem, so this is merely a touch of overzealous luxury. (#2636)
omar
committed
on 28 Aug 2019
|
2019-08-23 |
Internals: Storing settings using ImVec2ih to match what we are doing with dock node. + removed ImMax from reading Size value (done in Begin) + removed seemingly unnecessary FLT_MAX compare in SettingsHandlerWindow_WriteAll.
...
omar
committed
on 23 Aug 2019
|
2019-08-01 |
Version 1.73 WIP
omar
committed
on 1 Aug 2019
|
2019-07-31 |
Internal: Made ScrollToBringRectIntoView() handle recursing back to scroll parent window, so the function can be called elsewhere (instead of 1 deep recursion done in NavUpdateMoveResult().
omar
committed
on 31 Jul 2019
|
Version 1.72b (patch for nav)
omar
committed
on 31 Jul 2019
|
|
Nav: Made hovering non-MenuItem Selectable not re-assign the source item for keyboard navigation.
omar
committed
on 31 Jul 2019
|
|
Scrolling, Nav: Fixed programmatic scroll leading to a slightly incorrect scroll offset when the window has decorations or a menu-bar (broken in 1.71). This was mostly noticeable when a keyboard/gamepad movement led to scrolling the view, or using e.g. SetScrollHereY() function. Fix/amend a0994d74.
omar
committed
on 31 Jul 2019
|
|
2019-07-30 |
Internal refactor: moved all Scroll related functions in a same spot.
omar
committed
on 30 Jul 2019
|
Internal: Moved NavScrollToBringItemIntoView() declaration to imgui_internal.h. Fixed spacing missing in 494d804. Fixed changelog wreck from 1.72.
omar
committed
on 30 Jul 2019
|
|
Internal: Added ImGuiInputTextState::ClearText() helper.
omar
committed
on 30 Jul 2019
|
|
2019-07-29 |
Version 1.73 WIP
omar
committed
on 29 Jul 2019
|
2019-07-27 |
Version 1.72
omar
committed
on 27 Jul 2019
|
2019-07-26 |
|
2019-07-23 |
Internals: Added IMGUI_DEBUG_INI_SETTINGS. Made IMGUI_DEBUG_LOG redefinable in imconfig.h. Comments. Fix to allow Metrics's NodeWindow() being called with a NULL window.
omar
committed
on 23 Jul 2019
|
Internals: Merge in minor noise from wip Tables branch to simplify further merging.
omar
committed
on 23 Jul 2019
|
|
2019-07-22 |
Scrolling: Made mouse-wheel scrolling lock the underlying window until the mouse is moved again or until a short delay expires (2 seconds). This allow uninterrupted scroll even if child windows are passing under the mouse cursor. (#2604)
omar
committed
on 22 Jul 2019
|
Scrolling: Made it possible for mouse wheel and navigation-triggered scrolling to override a call to SetScrollX()/SetScrollY(), making it possible to use a simpler stateless pattern for auto-scrolling.
...
omar
committed
on 22 Jul 2019
|
|
2019-07-19 |
Debug Tools: Added DebugStartItemPicker() in imgui_internal.h to facilitate binding this anywhere in user's tool. Adedd highlight. Added IMGUI_DEBUG_TOOL_ITEM_PICKER_EX to break in ItemAdd().
ocornut
authored
on 19 Jul 2019
omar
committed
on 19 Jul 2019
|
2019-07-17 |
Internals: Refactor: Moved all Columns code from imgui.cpp to imgui_widgets.cpp (#125)
...
omar
committed
on 17 Jul 2019
|
Fixed old SetWindowFontScale() api value from not being inherited by child window. Added comments about the right way to scale your UI (load a font at the right side, rebuild atlas, scale style).
...
omar
committed
on 17 Jul 2019
|
|
2019-07-16 |
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
|
2019-07-14 |
Moved ImGuiColumnsFlags erroneously forward declared in imgui.h + demo bit.
omar
committed
on 14 Jul 2019
|
2019-06-30 |
Internals: Checkbox: Added undocumented mixed/indeterminate/tristate support via ImGuiItemFlags_MixedValue. (#2644)
omar
committed
on 30 Jun 2019
|
2019-06-19 |
Internals: Renamed GetFrontMostPopupModal() to GetTopMostPopupModal() to be consistent. Renamed other locals to follow that terminology.
omar
committed
on 19 Jun 2019
|
2019-06-17 |
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
|
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
|