History for imgui / docs
2019-07-26
@omar
Internal: Added IsMouseDragPastThreshold(). Tweaks. Todo. ...
omar committed on 26 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
InputTextMultiline: Fixed vertical scrolling tracking glitch. ...
omar committed on 22 Jul 2019
2019-07-21
@omar
Backends: DX10/DX11: Backup, clear and restore Geometry Shader is any is bound when calling renderer. ...
omar committed on 21 Jul 2019
@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
Amend 0f86116, renamed to ImGuiKey_KeyPadEnter Changelog.. (#2677, #2005)
omar committed on 21 Jul 2019
@omar
Columns: Made GetColumnOffset() and GetColumnWidth() behave when there's no column set, consistently with other column functions + fixed Columns demo (#2683)
omar committed on 21 Jul 2019
2019-07-19
@omar
Columns: Improved honoring alignment with various values of ItemSpacing.x and WindowPadding.x. (#125, #2666)
omar committed on 19 Jul 2019
@omar
Columns: Made the right-most edge reaches up to the clipping rectangle (removing WindowPadding.x*0.5 worth of asymmetrical/extraneous padding). (#125, #2666) ...
omar committed on 19 Jul 2019
@omar
Revert "Columns: Improved honoring left-most and right-most alignment with various values of ItemSpacing.x and WindowPadding.x. In particular, the right-most edge now reaches up to the clipping rectangle while ensuring that the right-most column clipping width matches others. (#125, #2666)" ...
omar committed on 19 Jul 2019
2019-07-17
@omar
Columns: Improved honoring left-most and right-most alignment with various values of ItemSpacing.x and WindowPadding.x. In particular, the right-most edge now reaches up to the clipping rectangle while ensuring that the right-most column clipping width matches others. (#125, #2666)
omar committed on 17 Jul 2019
@omar
Columns: Fixed a regression from 1.71 where the right-side of the contents rectangle within each column would wrongly use a WindowPadding.x instead of ItemSpacing.x like it always did. (#125, #2666)
omar committed on 17 Jul 2019
@omar
Misc: Made Button(), ColorButton() not trigger an "edited" event leading to IsItemDeactivatedAfterEdit() returning true. This also effectively make ColorEdit4() not incorrect trigger IsItemDeactivatedAfterEdit() when clicking the color button to open the picker popup. (#1875) ...
omar committed on 17 Jul 2019
@omar
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
@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
TabBar: Fixed unfocused tab bar separator color (was using ImGuiCol_Tab, should use ImGuiCol_TabUnfocusedActive).
omar committed on 15 Jul 2019
@omar
Fixed unnecessary test in UpdateMouseWheel() (thanks PVS). ...
omar committed on 15 Jul 2019
2019-07-12
@omar
Renamed ImFontAtlas::CustomRect to ImFontAtlasCustomRect. Keep redirection typedef (will obsolete).
omar committed on 12 Jul 2019
2019-07-11
@omar
Combo: Hide arrow when there's not enough space even for the square button. ...
omar committed on 11 Jul 2019
2019-07-10
@omar
fonts/binary_to_compress: display error message when failing to open file + misc comments.
omar committed on 10 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
Scrollbar: Avoid overlapping the opposite side when window (often a child window) is forcibly too small.
omar committed on 1 Jul 2019
@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
2019-06-30
@omar
Internals: Checkbox: Added undocumented mixed/indeterminate/tristate support via ImGuiItemFlags_MixedValue. (#2644)
omar committed on 30 Jun 2019
2019-06-27
@omar
Style: Attenuated default opacity of ImGuiCol_Separator in Classic and Light styles.
omar committed on 27 Jun 2019
2019-06-20
@omar
ImDrawListSplitter: Fixed memory leak when using low-level split api (was not affecting ImDrawList api, also this type was added in 1.71 and not advertised as a public-facing feature).
omar committed on 20 Jun 2019