1530 Commits (ebbb98d5199cb9e37ea873bf12e3ebc5cf1367e5)

Author SHA1 Message Date
ocornut 8db94cd992 Internals: Scroll related, comments & shallow tweaks. ago%!(EXTRA string=5 years)
ocornut f4d062fa11 Nav: Added debug logging, extract bits of code into NavUpdateInitResult(). ago%!(EXTRA string=5 years)
ocornut ce230fc370 Internals: TabBar renaming and shuffling stuff around. ago%!(EXTRA string=5 years)
ocornut 13f718337a Internals: Added support for overriding locale decimal point, undocumented. (#2278) + Misc doc update. ago%!(EXTRA string=5 years)
ocornut 093afd4f7f Internals: Added Name to ImGuiDataTypeInfo + minor misc comments in BeginGroup(). ago%!(EXTRA string=5 years)
Louis Schnellbach 8c80d533d9 Tab Bar: Fixed a small bug where toggling a tab bar from Reorderable to not Reorderable would leave tabs reordered in the tab list popup. ago%!(EXTRA string=5 years)
ocornut 1e8b9f84da Nav: Removed stateful NavMoveFromClampedRefRect and made it more explicit that nav move request from gamepad start from a clipped location. ago%!(EXTRA string=5 years)
ocornut 30f0900b1c Docking: Fix honoring payload filter with overlapping nodes. (we incorrectly over-relied on g.HoveredDockNode when making change for #3398) ago%!(EXTRA string=5 years)
Rokas Kupstys 021c28ae39 Nav: Fix ScrollToBringRectIntoView() not bringing entire item into view when nav moves to the left. Correct some comments. ago%!(EXTRA string=5 years)
omar 2e50d0706b Selectable: Tweaks. Added internal ImGuiSelectableFlags_NoPadWithHalfSpacing. ago%!(EXTRA string=5 years)
ocornut 7b0570d6ba Revert "Drags, Sliders: internal ReadOnly flag gets forwarded properly to temp InputText()." ago%!(EXTRA string=5 years)
ocornut fdf952108d Drags, Sliders: internal ReadOnly flag gets forwarded properly to temp InputText(). ago%!(EXTRA string=5 years)
ocornut 9262609eaf Version 1.79 WIP ago%!(EXTRA string=5 years)
ocornut fc9ccad6b9 InputText: Add ImGuiInputTextFlags_CallbackEdit, selection helpers in ImGuiInputTextCallbackData(). Add simple InputText() callbacks demo. ago%!(EXTRA string=5 years)
ocornut 4c201994d4 DragFloat, DragScalar: Fixed ImGuiSliderFlags_ClampOnInput not being honored in the special case where v_min == v_max. (#3361) ago%!(EXTRA string=5 years)
ocornut 95c99aaa4b Version 1.78 ago%!(EXTRA string=5 years)
ocornut c6b01e8e1d Drag, Sliders: Merged ImGuiDragFlags back into ImGuiSliderFlags. (#3361, #1823, #1316, #642, #1829, #3209) ago%!(EXTRA string=5 years)
omar f32663b33c Drags, Sliders: Removed locking behavior with min > max (added in 1.73) ago%!(EXTRA string=5 years)
omar 7f8f0096d8 Internals: Renamed SliderCalcRatioFromValueT() -> ScaleRatioFromValueT(), SliderCalcValueFromRatioT() -> ScaleValueFromRatioT(). ago%!(EXTRA string=5 years)
Ben Carter fa279a6aa0 Drags, Sliders: Added deadzone to make selecting 0.0 on linear sliders easier, slider navigation delta accumulation. (#3361, #1823, #1316, #642) ago%!(EXTRA string=5 years)
omar 7607aea018 Drags, Sliders: Removed power features. Old entry points will pass-through if power=1.0f, otherwise assert + safe fallback. Remove 3 redirection functions (#3361, #1823, #1316, #642) ago%!(EXTRA string=5 years)
omar 43c099f31e Drags, Sliders: Logarithmic: Moved flags to internals, allowing 1.0f to pass by. (#3361, #1823, #1316, #642) ago%!(EXTRA string=5 years)
omar 152dae9e2a Drags, Sliders: Logarithmic: Split back flags into drag/slider flags. Moved to an obsolete section. (#3361, #1823, #1316, #642) ago%!(EXTRA string=5 years)
Ben Carter 9f98b4e7f2 Drags, Sliders: Logarithmic: Added logarithmic mode support to drag widgets, extended API to add flags to drag/sliders (#3361, #1823, #1316, #642) ago%!(EXTRA string=5 years)
Ben Carter a252a287bf Drags, Sliders: Logarithmic: WIP experiments with trying to make logarithmic sliders sensible (#3361, #1823, #1316, #642) ago%!(EXTRA string=5 years)
ocornut 46d75202b8 Tab Bar: Allow calling SetTabItemClosed() after a tab has been submitted (will process next frame). ago%!(EXTRA string=5 years)
omar 214dd68ec1 Comments, clarifying ClosePopupsOverWindow(). ago%!(EXTRA string=5 years)
omar a4dd4d60b4 CI: moved static analysis to a separate project + fix (uninitialized variable, was harmless in this case). ago%!(EXTRA string=5 years)
omar 8241cd6284 Make moving window prevent its active id from being stolen (#3392, #3243, #1738) ago%!(EXTRA string=5 years)
omar a5ba26806f Make moving window prevent its active id from being stolen (#3392, #3243, #1738) ago%!(EXTRA string=5 years)
omar 85a661d276 Docking: Storing HoveredDockNode in context which can be useful for easily detecting e.g. hovering an empty node. (#3398) ago%!(EXTRA string=5 years)
omar acf043a675 Docking: Moved code unjustly in DockNodeTreeFindNodeByPos() out of it and into caller (should have no side-effect ideally). Removed dupe in Begin() from earlier merge. ago%!(EXTRA string=5 years)
omar 89ac87cd91 Internals: Added SetLastItemData, rename ImGuiItemHoveredDataBackup to ImGuiLastItemDataBackup. ago%!(EXTRA string=5 years)
omar 8074b49148 Selectable: Fixed highlight/hit extent when used with horizontal scrolling (in or outside columns). (#3187, #3386) ago%!(EXTRA string=5 years)
omar 4929a8e4a5 InvisibleButton: Made public a small selection of ImGuiButtonFlags (previously in imgui_internal.h) and allowed to pass them to InvisibleButton(). ago%!(EXTRA string=5 years)
omar a876ad877d Window: Fixed clicking over an item which hovering has been disabled (e.g inhibited by a popup) from marking the window as moved. ago%!(EXTRA string=5 years)
omar 76ddacd2a1 Internals: Backport HoveredWindowUnderMovingWindow code from Docking branch. ago%!(EXTRA string=5 years)
omar 218ff3a2a5 Internals: Backport one ->WasActive test in NavRestoreLastChildNavWindow() from 9bf6509c6 + minor/shallow bits from docking branch. ago%!(EXTRA string=5 years)
omar c7f5876f8a Internals: backport window HitTestHole code from docking branch + RenderRectFilledWithHole() helper. (#1512, #3368) ago%!(EXTRA string=5 years)
omar fdc526e8f8 Stop advertisting for Drag v_min>v_max which was introduced in 1.73 likely for 0537ac00 then made unnecessary with 32c33c66, added undocumented ImGuiItemFlags_ReadOnly as possible replacement (unused), (#211) ago%!(EXTRA string=5 years)
omar b335225caa Internals: Extract ImFontAtlasBuildRender1bppRectFromString() out of ImFontAtlasBuildRenderDefaultTexData() + minor renaming, comments ago%!(EXTRA string=5 years)
omar 3a6c9907cd Texture-based thick lines: Minor tweaks and rename toward merging in master. Changes to allow changing AA_SIZE (disable texture path). ago%!(EXTRA string=5 years)
omar 78d6bdf080 Texture-based thick lines: Remove unnecessary indirection in fetching UV data, removed lerp call, renames, tweaks. ago%!(EXTRA string=5 years)
Ben Carter 403bf45245 Texture-based thick lines: Allow interpolation between textures for non-integer line widths ago%!(EXTRA string=5 years)
omar 222b7ddbfa Texture-based thick lines: Tweaks, fix for truetype builder. ago%!(EXTRA string=5 years)
Ben Carter 741ab74b55 Texture-based thick lines: Improvements to code for drawing anti-aliased lines using textures ago%!(EXTRA string=5 years)
Ben Carter 1d3c3070d8 Texture-based thick lines: Initial version of AA line drawing using textures (press SHIFT to enable) ago%!(EXTRA string=5 years)
omar fc9d6b6cb5 Docking: Added experimental flags to perform more docking filtering and disable resize per axis. Designed for toolbar patterns. ago%!(EXTRA string=5 years)
omar ab4ef822f0 Version 1.78 WIP ago%!(EXTRA string=5 years)
Rokas Kupstys 0738611559 Misc: Bunch of code formatting changes suggested by a pass running 'astyle' ago%!(EXTRA string=5 years)