877 Commits (32c33c6659902e3472aadbb624518f0037d4f5ab)

Author SHA1 Message Date
Rokas Kupstys 32c33c6659 ColorEdit: Preserve last saturation value when V=0. Disable Hue editing lock. ago%!(EXTRA string=5 years)
omar d581939387 Removed trailing spaces. ago%!(EXTRA string=5 years)
omar 854fc08194 Amend f70204f2 to facilitate merges. ago%!(EXTRA string=5 years)
omar a610f1da52 Bezier Tweaks, fixed parameter order of 3831d50 ago%!(EXTRA string=5 years)
Rokas Kupstys 3831d50ab9 Add ImBezierClosestPoint() function which returns a point on bezier curve which is closed to a specified point. ago%!(EXTRA string=5 years)
omar 10fdc03a46 Clarification about Im helpers + moving GetColorXXX functions outside of that block. ago%!(EXTRA string=5 years)
omar 43bd80a40d Internals: Breaking: ImRect() default constructor initializes all fields with 0.0f ago%!(EXTRA string=5 years)
omar e42c1e1668 Exposed IMGUI_DEBUG_PARANOID in imconfig.h + using a #define with no value to match other uses in imconfig.h ago%!(EXTRA string=5 years)
Ben Carter 697f15e339 Added PrimUnreserve() API. Obsoleted calling ImDrawList::PrimReserve() with a negative count. ago%!(EXTRA string=5 years)
omar e4a59d0025 TabItem: honor ImGuiTabItemFlags_NoCloseButton passed as parameter (although undocumented and part of private api) (#2923) ago%!(EXTRA string=5 years)
omar f656e7775e Inputs: Added ImGuiMouseButton enum for convenience (e.g. ImGuiMouseButton_Right=1). ago%!(EXTRA string=5 years)
omar abaf0256b8 Version 1.75 WIP ago%!(EXTRA string=5 years)
omar a8092085b1 Internal: Added unused parameter named to facilitate cimgui parsing of imgui_internal.h ago%!(EXTRA string=6 years)
omar bdce833636 Version 1.74 ago%!(EXTRA string=6 years)
omar bbe0409942 Metrics: Show wire-frame mesh and approximate surface area when hovering ImDrawCmd. Amend aeb5795. ago%!(EXTRA string=6 years)
omar b205ab01f2 Internals: Added IM_ASSERT_PARANOID, IMGUI_DEBUG_PARANOID define. Shuffled a bit of the macros section in imgui_internal.h ago%!(EXTRA string=6 years)
omar a899c1e570 Internals: Using ImU64 for internal ImFile api so we can later wrap them to fseeko/ftello//_fseeki64/_ftelli64 (#2734) ago%!(EXTRA string=6 years)
omar ecbedc8c26 Tweaks, ammend 93efa54, rename to IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS (#1038) ago%!(EXTRA string=6 years)
omar 4e90906b04 Added IMGUI_DISABLE_DEFAULT_FILE_FUNCTIONS / IMGUI_DISABLE_FILE_FUNCTIONS #2734) ago%!(EXTRA string=6 years)
omar 93efa5415f Renamed IMGUI_DISABLE_FORMAT_STRING_FUNCTIONS to IMGUI_DISABLE_DEFAULT_FORMAT_STRING_FUNCTIONS. (#1038) ago%!(EXTRA string=6 years)
omar ca30ef4269 Drag and drop: Increase local payload buffer from 8 to 16 bytes. ago%!(EXTRA string=6 years)
omar 7e232092a6 Internals: Added GetWindowResizeID(), renamed GetScrollbarID() to GetWindowScrollbarID(). Using integer for resize ID so they matches regardless of the pointer size. ago%!(EXTRA string=6 years)
omar be05e12e21 Misc: Using static_assert() when using C++11, instead of our own construct (avoid zealous Clang warnings). ago%!(EXTRA string=6 years)
omar 03852470de Internals: Routing recoverable user errors via IMGUI_USER_ERROR() macro. (#1651) ago%!(EXTRA string=6 years)
omar 25eee91542 Error handling: Assert if user mistakenly calls End() instead of EndChild() on a child window. (#1651) ago%!(EXTRA string=6 years)
omar b138f8cbcd Internal: Nav rename preparing for nav inputs ownership changes. IsNavInputPressed() -> IsNavInputTest() ago%!(EXTRA string=6 years)
omar 57dc34f4e8 TreeNode: Added IsItemToggledOpen() to explicitly query if item was just open/closed, facilitating interactions with custom multi-selections patterns. (#1896, #1861) ago%!(EXTRA string=6 years)
omar 011d475532 TreeNode: The collapsing arrow accepts click even if modifier keys are being held, facilitating interactions with multi-select patterns. (#2886, #1896, #1861) ago%!(EXTRA string=6 years)
omar d003674f2c Internals: Added ImChunkStream, used by window settings. (more generic followup to 4c13807, the class will be used more extensively by Tables) ago%!(EXTRA string=6 years)
omar a337e219b6 Internals: ImPool: Renaming. ago%!(EXTRA string=6 years)
omar 28f1d60de1 Internals: Renaming + added ImStrSkipBlank() from docking branch. ago%!(EXTRA string=6 years)
omar 09b2310237 Internals: Added index of helpers and shuffled a few things. ago%!(EXTRA string=6 years)
omar 4c13807b7d Misc: Optimized storage of window settings data (reducing allocation count). ago%!(EXTRA string=6 years)
omar 8fee5a4349 Internals: Renaming for consistency. ago%!(EXTRA string=6 years)
stfx 6bf5aed325 Declaration and assignment can be joined, Member function may be 'const'. (#2875) ago%!(EXTRA string=6 years)
Rokas Kupstys c863c1f6a1 Clean up number rounding. Now it is more obvious what code is doing. (#2862) ago%!(EXTRA string=6 years)
omar ec0e953cca Fixed a couple of subtle bounding box vertical positioning issues relating to text baseline alignment. ago%!(EXTRA string=6 years)
Rokas Kupstys 714fe29d1a Replace manual flooring with IM_FLOOR() macro. (#2850) ago%!(EXTRA string=6 years)
omar a41f0b2df4 Inputs: Fixed a miscalculation in the keyboard/mouse "typematic" repeat delay/rate calculation, used by keys and e.g. repeating mouse buttons as well as the GetKeyPressedAmount() function. ago%!(EXTRA string=6 years)
omar c7bdec7e18 InputText, Nav: Fixed Left!Right keys broken when activating Keyboard Navigation. (#787) Amend 892dfb1 ago%!(EXTRA string=6 years)
omar bf746c4215 DragScalar, SliderScalar, InputScalar: Added p_ prefix to parameter that are pointers to the datato clarify how they are used, and more comments redirecting to the demo code. (#2844) ago%!(EXTRA string=6 years)
omar a6c3be4bda Internals: Tweaks to ItemSize() should be harmless. Added DebugDrawItemRect() helper. ago%!(EXTRA string=6 years)
omar 892dfb1dea InputText, Nav: Fixed Home/End key broken when activating Keyboard Navigation. (#787) ago%!(EXTRA string=6 years)
omar c262276988 Version 1.74 WIP ago%!(EXTRA string=6 years)
omar d5efe16157 Version 1.73 ago%!(EXTRA string=6 years)
omar ca858c084b Demo tweaks. Comments. Compacting the rarely used AutoFitXXX fields in ImGuiWindowTempData. ago%!(EXTRA string=6 years)
omar 52deb415e0 Internal: Refactored internal RenderMouseCursor so colors can be specified. (#2614) ago%!(EXTRA string=6 years)
omar 25849234f6 Internal: Tree: tweaks (initially tried to implement auto-scrolling, stashed) ago%!(EXTRA string=6 years)
omar eab03f4467 Selectable: Added ImGuiSelectableFlags_AllowItemOverlap flag in public api (was previously internal only). ago%!(EXTRA string=6 years)
omar 38d22bc47d ColorPicker / ColorEdit: restore Hue when zeroing Saturation. (#2722, #2770) - changelog, fixed uninitialized variables, tweaks, renaming. ago%!(EXTRA string=6 years)