History for imgui / imgui.cpp
2019-09-17
@omar
Remove trailing spaces (grep for ' \r?$' in visual studio)
omar committed on 17 Sep 2019
@Qix
Fix signed types warning in pasteboard handler (#2786)
Qix authored on 17 Sep 2019 omar committed on 17 Sep 2019
2019-09-16
@omar
Nav, Scrolling: Added support for Home/End key. (#787)
omar committed on 16 Sep 2019
2019-08-28
@omar
Disable with ConfigWindowsMemoryCompactTimer < 0.0f (#2636)
omar committed on 28 Aug 2019
@omar
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
@omar
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-22
@omar
Using offsetof() when available in C++11. Avoids Clang sanitizer complaining about old-style macros. (#94)
omar committed on 22 Aug 2019
@omar
More typos in comments (#2738)
omar committed on 22 Aug 2019
@omar
TabBar: fixed single-tab not shrinking their width down. ...
omar committed on 22 Aug 2019
2019-08-19
@omar
Internals: Renaming window size calc functions.
omar committed on 19 Aug 2019
2019-08-16
@omar
ColorPicker: Made rendering aware of global style alpha of the picker can be faded out. (#2711) ...
omar committed on 16 Aug 2019
2019-08-01
@omar
Version 1.73 WIP
omar committed on 1 Aug 2019
2019-07-31
@omar
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
@omar
Version 1.72b (patch for nav)
omar committed on 31 Jul 2019
@omar
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
@omar
Internal refactor: moved all Scroll related functions in a same spot.
omar committed on 30 Jul 2019
@omar
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
@omar
Internal: Avoid using GImGui multiple times in same function.
omar committed on 30 Jul 2019
@omar
Nav: Fixed an issue with NavFlattened window flag where widgets not entirely fitting in child window (often selectable because of their extruded bits) would be not considered to navigate toward the child window. (#787) ...
omar committed on 30 Jul 2019
2019-07-29
@omar
Version 1.73 WIP
omar committed on 29 Jul 2019
2019-07-27
@omar
Version 1.72
omar committed on 27 Jul 2019
2019-07-26
@omar
Internal: Added IsMouseDragPastThreshold(). Tweaks. Todo. ...
omar committed on 26 Jul 2019
2019-07-24
@omar
Fixed Clang 8.0 warning "empty expression statement has no effect; remove unnecessary ';' to silence this" warning [-Wextra-semi-stmt] ...
omar committed on 24 Jul 2019
2019-07-23
@omar
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
@omar
Internals: Merge in minor noise from wip Tables branch to simplify further merging.
omar committed on 23 Jul 2019
2019-07-22
@omar
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
@omar
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
@omar
Internals: Nav: Tweak NavUpdatePageUpPageDown() to make it more readable.
omar committed on 22 Jul 2019
2019-07-21
@omar
OSX: Disabled default native Mac clipboard copy/paste implementation in core library (added in 1.71), because it needs application to be linked with '-framework ApplicationServices'. It can be explicitly enabled back by using '#define IMGUI_ENABLE_OSX_DEFAULT_CLIPBOARD_FUNCTIONS' in imconfig.h. Re-added equivalent using NSPasteboard api in the imgui_impl_osx.mm experimental back-end. (#2546)
omar committed on 21 Jul 2019
@omar
Fixed incorrect application of io.DisplaySafeAreaPadding which would be problematic with multi-viewports when a monitor uses negative coordinates (correct clamping is done right below). (#2674)
omar committed on 21 Jul 2019