1. 9bcf77e Fixed using IsItemEdited() after Combo() not matching the return value from Combo(). (#2034) + fix some PVS warnings, fix typo, blanks. by ocornut · 3 years, 5 months ago
  2. 7d5d571 Backends: OpenGL2, OpenGL3: Backup and restore GL_SHADE_MODAL, GL_STENCIL_TEST, clear GL_NORMAL_ARRAY. Comments., (#3671, #3668) by ocornut · 3 years, 5 months ago
  3. 0a5f399 Tables: Fix hiding column right after the frozen line. Fix hovering/resising column delimiter scrolled under frozen columns. (#3678) by ocornut · 3 years, 5 months ago
  4. 1c1d3b7 Added 64-bit variants of CheckboxFlags() in imgui_internal.h. Improve assert on mismatched ListBoxFooter() call. Fix FAQ index. (#3687) by ocornut · 3 years, 5 months ago
  5. 8ec5daf Happy new year! by ocornut · 3 years, 5 months ago
  6. fa963b9 Inputs: Internal: added SetItemUsingMouseWheel() and mechanism to request mouse wheel for both HoveredId and ActiveId. (#2891) by ocornut · 3 years, 5 months ago
  7. eb88fee Tables: internal tidying up, calculate WidthAuto in first loop of layout + TableSetupColumn() with unspecified stretch weight leaves it at -1.0f (unset) rather than overrding default. Amend 3b3503e. by ocornut · 3 years, 5 months ago
  8. 68faa16 Tables: report auto-fit width in EndTable(), extracted TableGetColumnWidthAuto(). fix minor flickering with IsPreserveWidthAuto (which is a debug feature still), moved some code. by ocornut · 3 years, 5 months ago
  9. 3573195 Tables: (breaking) rename ImGuiTableFlags_ColumnsWidthStretch > ImGuiTableFlags_SizingPolicyStretch, ImGuiTableFlags_ColumnsWidthFixed > ImGuiTableFlags_SizingPolicyFixed in prevision for other policies. by ocornut · 3 years, 5 months ago
  10. b015ea9 Style tweaks, disabled default window rounding by default, reduced size of resize grip, made less prominent, increased WindowBg alpha in classic style. by ocornut · 3 years, 5 months ago
  11. 3fbb928 Tables: explicit/custom width in TableSetupColumn() is reapplied when table or column becomes not resizable. Comments. by ocornut · 3 years, 5 months ago
  12. 9564357 Tables: (breaking) renamed ImGuiTableColumnFlags_WidthAutoResize to _WidthAuto., default to WidthFixed policy when host window has auto-resize. by ocornut · 3 years, 5 months ago
  13. d497f11 Tables: simplified and tidying up TableSetColumnWidth(), fixes resizing a fixed column surrounded by stretch column (manually or via auto-fit menu). TableHeader() showing highlighted when held. by ocornut · 3 years, 5 months ago
  14. 972ca81 Tables: extracted code for TableGetMaxColumnWidth(), fixing "stuck" resize being lossy as it used an older calculation for it and didn't honor e.g. _NoKeepColumnsVisible by ocornut · 3 years, 5 months ago
  15. 1aa59f9 Minor API comments and tweaks, standardize index used in imgui.h. Tables: tweaked TableSetupColumn() assert to use IM_ASSERT_USER_ERROR(). by ocornut · 3 years, 5 months ago
  16. 2e48c2d Removed redirecting functions/enums names that were marked obsolete in 1.63 (August 2018) + tables tweaks. by ocornut · 3 years, 5 months ago
  17. 4d8e839 Renamed ImDrawList::AddBezierCurve() to ImDrawList::AddBezierCubic(), ImDrawList::PathBezierCurveTo() to ImDrawList::PathBezierCubicCurveTo(). (#3127, #3664, #3665) by ocornut · 3 years, 5 months ago
  18. 550bfcf Amend defce31 Add ImDrawList::AddQuadBezierCurve(), ImDrawList::PathQuadBezierCurveTo() (#3127, #3664, #3665) by ocornut · 3 years, 5 months ago
  19. defce31 Add ImDrawList::AddQuadBezierCurve(), ImDrawList::PathQuadBezierCurveTo() (#3127, #3664, #3665) by Aiekick · 3 years, 5 months ago
  20. a640698 Clipper: Fixed incorrect end-list positioning when using ImGuiListClipper with 1 item (bug in 1.79). (#3663) by nyorain · 3 years, 5 months ago
  21. ae63d56 Tables: remove ImGuiTableFlags_NoHeadersWidth since it is so rarely used and can be specified on a per-column basis. by ocornut · 3 years, 5 months ago
  22. 532aa5a Tables: (breaking) change outer_size.x default value to -FLT_MIN, make outer_size.x == 0.0f act as ImGuiTableFlags_NoHostExtendX (#3605, ad83976b) when no scrolling and no stretch column. Which is more consistent. by ocornut · 3 years, 5 months ago
  23. 22ace44 Tables: clarify assumption that rendering of bg/borders in bg0/bg1 are cpu-clipped allowing frozen/unfrozen to share drawcmd + remove offset on outer borders of scrolling tables. by ocornut · 3 years, 5 months ago
  24. 3046882 Tables: Internal: Maintain InnerRect to further clarify some code. Renamed Bg1 fields to Bg2 (used by Selectable) as the other handles Bg0+Bg1. by ocornut · 3 years, 5 months ago
  25. ad83976 Tables: Added ImGuiTableFlags_NoHostExtendX (#3605) marked as WIP, will probably rename. by ocornut · 3 years, 5 months ago
  26. c4dbab8 Tables: reset all width apply to hidden stretch columns. Comments. by ocornut · 3 years, 5 months ago
  27. 1fb26d1 Tables: fixed seemingly unnecessarily copy of ImGuiTableColumnFlags_NoDirectResize_ which broken resizing from W3| in a F1 W3 F2 setup. Header only allow overlap on hover, not when active (amend f2df804f) by ocornut · 3 years, 5 months ago
  28. 892b48e Tables: Lock contents width while resizing down an horizontal scrolling table. Headers declare ideal width regardless of clipping. Misc comments. by ocornut · 3 years, 6 months ago
  29. bd899ef Tables: fixed "resize to default" of multiple stretch column (added 3b3503e, broken 7a61f340). by ocornut · 3 years, 6 months ago
  30. f2df804 Tables: four small fixes. by ocornut · 3 years, 6 months ago
  31. 738606a Tables: added ImGuiTableFlags_SortTristate. Renamed ImGuiTableFlags_MultiSortable to ImGuiTableFlags_SortMulti. Removed now unused FlagsIn storage. by ocornut · 3 years, 6 months ago
  32. cad8935 Tables: revert setting colum cliprect.max.x to WorkMax.x instead of Max.x at it complicates header code. Fix clipped sort arrow. (amend 17536f9a) by ocornut · 3 years, 6 months ago
  33. bff1836 Internals: added facility to hide windows from render without interfering with the HiddenFramesCanSkipItems/HiddenFramesCannotSkipItems fields which have effects on layout. Compact some fields. by ocornut · 3 years, 6 months ago
  34. 1ad5502 Tables: Closer to zero-clear constructor. Lazily clearing name offsets to avoid an iteration in BeginTable(). Removed unused TableSetColumnIsEnabled(), signature went faulty anyway. by ocornut · 3 years, 6 months ago
  35. 76964a2 Tables: moved TableNextRow(), TableBeginRow(), TableEndRow(), TableNextColumn(), TableBeginCell(), TableEndCell() to their own section. by ocornut · 3 years, 6 months ago
  36. e6b875c Tables: Ditch old columns flags/setting if not called again. Displaying right-most border when using _SameWidths. Moving Width-related functions to their own section. by ocornut · 3 years, 6 months ago
  37. 3346544 Examples: Fix batch files (amend b1a18d82, #3513), standardize them + DirectX12: Move ImGui::Render() call above the first barrier to clarify its lack of effect on the graphics pipe. by ocornut · 3 years, 6 months ago
  38. 17536f9 Tables: more consistent use of CellPadding.x*2 and clip-rect on right-most side of non-bordered column + fix cellbg for standalone TableHeader call. by ocornut · 3 years, 6 months ago
  39. 9874077 Merge branch 'tables' by ocornut · 3 years, 6 months ago
  40. 0b14dd9 Tables: fixed propagation of line height from outside the table. Added outer-width demo. by ocornut · 3 years, 6 months ago tables
  41. 6e38026 Tables: changelog. removed TableGetHoveredColumn() from public API in favor of using TableGetColumnFlags(). renamed ImGuiTableSortSpecsColumn to ImGuiTableColumnSortSpecs. by ocornut · 3 years, 6 months ago
  42. 7a61f34 Tables: support internal TableResetSettings(), clarify lifetime, fixed missing auto-fit on column unhidden after first run, fixed resize assert when changing column sizing policy to stretch mid-frame (before of -1.0f weight) by ocornut · 3 years, 6 months ago
  43. b194df4 Tables: exposed status flags via TableGetColumnFlags(), removed TableGetColumnIsSorted() by ocornut · 3 years, 6 months ago
  44. 984c4cb Tables: distinguishing per-column IsVisible from IsRequestOutput which is returned to user. Clarified clipping rules/requirements. Comments. by ocornut · 3 years, 6 months ago
  45. f70bf69 Tables: comments and tweaks on TableUpdateLayout(). changed "apply final width" loop to use natural column order. by ocornut · 3 years, 6 months ago
  46. 155b8bb Tables: Shared menu item id for "Size all" variations. Avoid allocation on single sort specs. Fix TableGetColumnIsEnabled(). Massage TableHeaderRows(). by ocornut · 3 years, 6 months ago
  47. e126a64 Tables: using a typedef in internal code to specify column/draw channel index storage. by ocornut · 3 years, 6 months ago
  48. 6aa8388 Tables: index tweaks, fixed some inconsistent spacings. by ocornut · 3 years, 6 months ago
  49. 5877b9d Tables: moved TablePushBackgroundChannel(), TablePopBackgroundChannel(), TableDrawBorders() to their own section. by ocornut · 3 years, 6 months ago
  50. 5180025 Tables: moved + renamed TableSetupDrawChannels(), TableMergeDrawChannels() to their own section. by ocornut · 3 years, 6 months ago
  51. b7c83e4 Tables: moved TableGetSortSpecs(), TableGetColumnIsSorted(), TableFixColumnSortDirection(), TableSetColumnSortDirection() to their own section. by ocornut · 3 years, 6 months ago
  52. d6b1f0d Tables: moved TableHeadersRow(), TableHeader() to their own section. by ocornut · 3 years, 6 months ago
  53. 592fc69 Tables: moved TableDrawContextMenu(), TableOpenContextMenu() to their own section. by ocornut · 3 years, 6 months ago
  54. 7aed4b1 Tables: improve index, file structure tweaks. by ocornut · 3 years, 6 months ago
  55. 082f1d1 Tables: renamed TableBeginUpdateColumns to TableBeginApplyRequests, moved code to TableUpdateLayout, in order to ensure that enable state is not inconsistent due to TableSetupColumn column hiding requests. by ocornut · 3 years, 6 months ago
  56. 79c9eaa Tables: Internals: renamed Visible to Enabled to avoid confusion with visibility checks. by ocornut · 3 years, 6 months ago
  57. 5ef7b83 Tables: removed ImGuiTableSortSpecs::ColumnsMask because it needlessly exposes our 64-columns limitation which we'd eventually would like to lift by ocornut · 3 years, 6 months ago
  58. e09454a Tables: removed TableGetColumnIsVisible from public api, re-specced as TableGetColumnIsHidden() returning same flag as setter, clipper increase CurrentRow. by ocornut · 3 years, 6 months ago
  59. a70c6aa Tables: demo synced tables + fix resizing indented synced tables. by ocornut · 3 years, 6 months ago
  60. 0c9ab0a Tables: setup and maintain ItemWidth per column. by ocornut · 3 years, 6 months ago
  61. 8f126d5 Tables: rename ImGuiTableFlags_SizingPolicyStretchX to ImGuiTableFlags_ColumnsWidthStretch, ImGuiTableFlags_SizingPolicyFixedX to ImGuiTableFlags_ColumnsWidthFixed. by ocornut · 3 years, 6 months ago
  62. 41f89e0 Tables: added ImGuiTableFlags_SameWidths, used in demo. Reordered columns flags and exposed them all in Columns Flags section. by ocornut · 3 years, 6 months ago
  63. 3a2f0bf Tables: demo inner_size + scrollx + stretch, added TableGetRowIndex(), renamed _WidthAlwaysAutoResize to _WidthAutoResize. by ocornut · 3 years, 6 months ago
  64. 3b3503e Tables: decent support for auto-resize of stretch columns (trickier than it sounds) by ocornut · 3 years, 6 months ago
  65. c5dcf2f Tables: rework keep-visible/max-width code to be less incorrect, but right-most column may effectively has few pixels less of visible cliprect width. by ocornut · 3 years, 6 months ago
  66. 197e9c0 Tables: separate bg0 and bg1 draw channels, selectable above bg color + will facilitate drawing of borders in EndTable(). by ocornut · 3 years, 7 months ago
  67. 52f24df Tables: comments, tweaks, added internal TableSetColumnVisible(), merged the two TableSetColumnWidth(). by ocornut · 3 years, 7 months ago
  68. bf197c7 Tables: storing WorkMaxX, made offset_x == MinX to be clearer, clip rect merge uses ClipRect.max.x directly, removed unused ShrinkWidth code, metrics. by ocornut · 3 years, 7 months ago
  69. 5465d30 Tables: added ImGuiTableFlags_PreciseStretchWidths. by ocornut · 3 years, 7 months ago
  70. 10db896 Tables: store RawData in a simple void* pointer, rename ContentMinX > WorkMinX, misc tidying up. by ocornut · 3 years, 7 months ago
  71. 82cf41d Tables: tooltip on clipped TableHeader() (amended) by ocornut · 3 years, 7 months ago
  72. 507db49 Tables: work on background draw channel handling (amend "create a separate background draw channel") + Selectable disable spacing when spanning. by ocornut · 3 years, 7 months ago
  73. fe61311 Tables: Additionally commentary about clipper in the demo + minor padding tweak. by ocornut · 3 years, 7 months ago
  74. 94d99f9 Tables: Fixed crash when increaasing columns count with bound settings. by ocornut · 3 years, 7 months ago
  75. 24a7c45 Tables: Fix for 64 columns (maximum of 131 temporary draw channels). by ocornut · 3 years, 7 months ago
  76. e5a5256 Tables: Garbage collection to relieve draw splitter buffers + for test engine: compact settings, remove table. by ocornut · 3 years, 7 months ago
  77. f80097c Tables: Fix applying WorkRect in non-scrolling tables. Fix inverted BackgroundClipRect being passed to ImDrawCmd. by ocornut · 3 years, 7 months ago
  78. 557253e Tables: create a separate background draw channel for rows below the frozen line. by ocornut · 3 years, 7 months ago
  79. fae362f Tables: fixed auto-fitting columns not marking settings as dirty + fixed CellBg fill not narrow clipping on ScrollX + freeze. by ocornut · 3 years, 7 months ago
  80. 9918b2f Tables: Shuffled ordering of draw channels merge group so vertically unfrozen ones come, allowing us to split background channels in two. by ocornut · 3 years, 7 months ago
  81. d322208 Tables: Moved TableSetupScrollFreeze(), TableUpdateDrawChannels() lower in more adequate spots. by ocornut · 3 years, 7 months ago
  82. d9ca393 Tables: Tidy up comments. Replaced some Columns by Tables in demo. Removed ImGuiTableFlags_Scroll (combining ScrollX/ScrollY) because each axis inccur different requirements/constraints. by ocornut · 3 years, 7 months ago
  83. 51abdd5 Tables: renamed somehow-duplicate ContentWidth members (implicitly == Max - Min), renamed StartX to ContentMinX for consistency. by ocornut · 3 years, 7 months ago
  84. 1731ae5 Tables: Reworked padding/spacing/width. by ocornut · 3 years, 8 months ago
  85. 75c5f53 Tables: Avoid allocating into ColumnsName for empty strings, changed TableGetColumnName() to return "" on missing name, generally more friendly. by ocornut · 3 years, 7 months ago
  86. f4800db Tables: Extracted parts of BeginTable() into TableFixFlags() and TableBeginInitMemory(). by ocornut · 3 years, 7 months ago
  87. ac5b164 Tables: Various internal renaming + merge StartXHeaders/StartXRows into StartX. by ocornut · 3 years, 7 months ago
  88. 77e561a Tables: Made demo options consistently compact, replaced constants with font-based sizes, added comments on memory allocations. by ocornut · 3 years, 8 months ago
  89. 02b27b7 Tables: Added ImGuiTableFlags_NoBordersInBody, ImGuiTableFlags_NoBordersInBodyUntilResize, removed ImGuiTableFlags_BordersFullHeightV. by ocornut · 3 years, 8 months ago
  90. 172704c Tables: Add demo code. Remove dead code + seemingly duplicate border in TableDrawBorders(). by ocornut · 3 years, 8 months ago
  91. 2ee20fd Tables: Frozen rows/columns in nav menu layer, fixed conflict between column id and holding child id. by ocornut · 3 years, 8 months ago
  92. e66b286 Tables: Added ImGuiTableFlags_ContextMenuInBody flag. by ocornut · 3 years, 8 months ago
  93. 6182973 Tables: (Breaking) Rename TableNextCell() to TableNextColumn(), made TableNextRow() NOT enter into first column. by ocornut · 3 years, 8 months ago
  94. b1ebf96 Tables: Moved TableSetColumnIndex() next to TableNextCell() since they are so similar + made NextCell() crash proof. by ocornut · 3 years, 8 months ago
  95. 248960d Tables: Fix ImGuiTableColumnFlags_WidthAlwaysAutoResize columns when clipped (which would be default behavior without _Resizable and when clipping/scrolling) by ocornut · 3 years, 8 months ago
  96. 25b5cc2 Tables: Fixes to support any number of frozen rows (over modifications to clipper code in master) + make clipper run eval after clipect update by omar · 3 years, 8 months ago
  97. cc12ea0 Tables: Added TableSetColumnSortDirection() + added in default context menu code (disabled, feels unnecessary, but work is done to ensure programmatic access) by ocornut · 3 years, 8 months ago
  98. 9b37087 Tables: (Breaking) Rename TableAutoHeaders() to TableHeadersRow() + added TableGetColumnCount(). by ocornut · 3 years, 8 months ago
  99. 3021608 Tables: (Breaking) Add TableSetupScrollFreeze() api, remove ImGuiTableFlags_ScrollFreezeXXX flags, tweak comments, move columns block. by ocornut · 3 years, 8 months ago
  100. 36b2f3b Tables: renamed ImGuiTableFlags_NoClipX to ImGuiTableFlags_NoClip, clarified purpose, moved lower in the list as it doesn't need to be so prominent. by ocornut · 3 years, 8 months ago