History for imgui / imgui.h
2018-07-30
@omar
Fixes for pre-C++11 compilers. ...
omar committed on 30 Jul 2018
2018-07-22
@omar
Added asserts to catch illegal modifications of the font atlas between NewFrame() and EndFrame()/Render(). (#1958)
omar committed on 22 Jul 2018
@omar
Changed ImGui::GetTime() return value from float to double to avoid accumulating floating point imprecisions over time.
omar committed on 22 Jul 2018
@Elias Daler
Ignore GCC warning (-Wclass-memaccess) in imgui.h (#1959)
Elias Daler authored on 22 Jul 2018 omar committed on 22 Jul 2018
2018-07-19
@omar
ImGuiTextFilter, TextRange: removed cruft from TextRange since it's not a publicly and generic helper at the moment + marked internal stuff + changed a reference to a pointer. (#1879)
omar committed on 19 Jul 2018
2018-07-12
@omar
Revert part of c7016c2 incorrectly renaming ImGuiCol_NavWindowingHighlight to ImGuiCol_NavWindowListHighlight, that was wholly unnecessary (and not documented!). (also invalidate #1939)
omar committed on 12 Jul 2018
2018-07-11
@omar
Examples: include for intptr_t on tdm-gcc + mingw32 (#1936) + mouse buttons comments
omar committed on 11 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
2018-07-09
@omar
Internals: Misc/shallow merge from Docking branch.
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
2018-07-08
@omar
Drag and Drop: Fixed ImGuiDragDropFlags_SourceNoDisableHover to affect hovering state prior to calling IsItemHovered() + fixed description. (#143)
omar committed on 8 Jul 2018
2018-07-06
@omar
Removed per-window ImGuiWindowFlags_ResizeFromAnySide beta flag in favor `io.OptResizeWindowsFromEdges=true` to enable the feature globally. (#1495) The feature is not currently enabled by default because it is not satisfying enough.
omar committed on 6 Jul 2018
2018-07-04
@omar
Links and thanks. Comments on using BeginCombo/EndCombo + moved the Combo() implementations closer to each others to maximize user seeing how it is implemented from any of the secondary function body.
omar committed on 4 Jul 2018
2018-06-29
@omar
Fixed software Hand cursor from not actually working. Fixed demo from crashing. Fixed typo and extraneous trailing space. Added Changelogs. (#1913, #1914)
omar committed on 29 Jun 2018
@Aiekick
add hand cursor support (+11 squashed commit)
Aiekick authored on 29 Jun 2018 omar committed on 29 Jun 2018
2018-06-28
@omar
ImVector: Added index_from_pointer() helper.
omar committed on 28 Jun 2018
2018-06-27
@omar
Double-click on resize grip doesn't need to test HoveredWindow (as button has the flattenchild flag anyway) + double-click on title bar verify that we don't have overlapping items to allow contents in title bar. + Comments
omar committed on 27 Jun 2018
2018-06-25
@omar
Version 1.63 WIP
omar committed on 25 Jun 2018
2018-06-22
@omar
Version 1.62
omar committed on 22 Jun 2018
2018-06-21
@omar
Examples: The functions in imgui_impl_xxx.cpp are prefixed with IMGUI_IMPL_API (which defaults to IMGUI_API) to facilitate some uses. (#1888) + Comments in imgui.h
omar committed on 21 Jun 2018
2018-06-13
@omar
Added _None values to various enum flags, useful for readability and some coding style likes it. (Unfortunately we can't refer to them as default value in imgui.h functions because they need to be declared below).
omar committed on 13 Jun 2018
@omar
Comments + missing changelog bits in 1.52 for SetNextWindowPos, SetNextWindowPosCenter. (obsolete #771)
omar committed on 13 Jun 2018
2018-06-12
@omar
Added IsItemDeactivatedAfterChange() if the last item was active previously, isn't anymore, and during its active state modified a value. Note that you may still get false positive. (#820, #956, #1875)
omar committed on 12 Jun 2018
@omar
Internals: Added GetItemID(), GetFocusID() for consistency. Made GetActiveID() inline. Comments, fixed typos, demo tweaks.
omar committed on 12 Jun 2018
@omar
Added IsItemDeactivated() to query if the last item was active previously but isn't anymore. Useful for Undo/Redo patterns. (#820, #956, #1875)
omar committed on 12 Jun 2018
@omar
Comments, changelog
omar committed on 12 Jun 2018
2018-06-10
@omar
Merge branch 'font_min_max_advance'
omar committed on 10 Jun 2018
2018-06-08
@omar
Big example binding refactor (manually imported from Viewport branch, stripped out of Viewport code). (#1870) ...
omar committed on 8 Jun 2018
@omar
ImFontConfig: Added GlyphMinAdvanceX/GlyphMaxAdvanceX settings useful to make a font appears monospaced, particularly useful for icon fonts. (#1869)
omar committed on 8 Jun 2018
2018-06-06
@omar
Added missing IMGUI_API markers in non-inline section of the IMGUI_DISABLE_OBSOLETE_FUNCTIONS block: old Begin(), InputFloat().
omar committed on 6 Jun 2018