Commit Graph

  • 42f47590f9 Fixed ad37b79 breaking IsItemHovered()->IsItemFocused() passthrough for navigation. ocornut 2024-10-14 19:13:04 +0200
  • fcdd58757a Backends: comments. ocornut 2024-10-14 19:13:04 +0200
  • 97da66209c Internals: removing ImGuiButtonFlags_Repeat (in favor of ImGuiItemFlags_ButtonRepeat), ImGuiButtonFlags_DontClosePopups (unused) ocornut 2024-10-14 19:03:33 +0200
  • 462d167456 Nav: rectangle highlight not rendered for items with ImGuiItemFlags_NoNav. (#8057) ocornut 2024-10-14 17:37:36 +0200
  • ad37b79bca Nav: shallow tidying up. ocornut 2024-10-14 17:30:14 +0200
  • 626d358e55 Nav: fixed Ctrl+Tab so when starting with no focused window it starts from the top-most window. (#3200) ocornut 2024-10-14 17:10:36 +0200
  • b001038901 Nav: added io.ConfigNavEscapeClearFocusWindow to clear focused window on Escape. (#3200) ocornut 2024-10-14 16:57:34 +0200
  • ba5161740e Amend d885fe4, fixes default value of ConfigNavCaptureKeyboard. (#2517, #2009) ocornut 2024-10-14 16:52:25 +0200
  • d885fe4dd0 (Breaking) moved ImGuiConfigFlags_NavEnableSetMousePos -> io.ConfigNavMoveSetMousePos, ImGuiConfigFlags_NavNoCaptureKeyboard -> ConfigNavCaptureKeyboard. (#2517, #2009) ocornut 2024-10-14 15:28:00 +0200
  • 349af8766c InputText: ensure mouse cursor is set regardless of whether keyboard mode is enabled or not. (#6417) ocornut 2024-10-14 13:52:40 +0200
  • 20ae8bd4c3 Error Handling: turned IsItemHovered()/IsWindowHovered() checks into IM_ASSERT_USER_ERROR. (#1651) ocornut 2024-10-14 10:22:24 +0200
  • c4bc674482 IO: WantCaptureKeyboard is never set when ImGuiConfigFlags_NoKeyboard is enabled. (#4921) ocornut 2024-10-11 15:31:01 +0200
  • 98d52b7b26 DrawList: AddCallback() added an optional size parameter allowing to copy and store any amount of user data for usage by callbacks: (#6969, #4770, #7665) ocornut 2024-10-11 13:29:13 +0200
  • f29e505d94 CI: remove --disableLicenseExpirationCheck. ocornut 2024-10-09 17:14:44 +0200
  • a0b811dd37 Backends: SDLRenderer2/3: expose selected state in ImGui_ImplXXXX_RenderState structures during render loop. (#6969, #5834, #7468, #3590 + #7616) ocornut 2024-10-09 16:39:28 +0200
  • 9fbc313459 InputText: amend 661bba0. (#8048) ocornut 2024-10-09 14:01:47 +0200
  • 661bba09ce InputText: fixed an issue with not declaring ownership of Delete/Backspace/Arrow keys. (#8048) ocornut 2024-10-09 13:54:39 +0200
  • 22503bfe75 Backends: changed all backends to allow enabling ImGuiConfigFlags_ViewportsEnable after initialization. (#5371) ocornut 2024-10-08 20:47:24 +0200
  • f3d242a90d Tables: fixed initial auto-sizing issue with synched-instances. (#8045, #7218) ocornut 2024-10-08 19:45:58 +0200
  • c3629adbeb Backends: Metal: fixed ImTextureID cast. (#1641) ocornut 2024-10-08 14:33:17 +0200
  • 6b8accbfa1 Fixed building when defining ImTextureID to a multi-token name. (#1641) ocornut 2024-10-08 14:29:21 +0200
  • 92b94980c6 (Breaking) Default ImTextureID to use a Im64 instead of void* (#1641) ocornut 2024-10-07 16:45:34 +0200
  • 19b494df89 Examples: DirectX12: update Windows SDK version. ocornut 2024-10-08 12:37:33 +0200
  • f890d85381 Backends: Fixed typo in comments from old wip work 'io.BackendRendererRenderState' -> 'platform_io.Renderer_RenderState'. (#6969, #5834, #7468, #3590 ocornut 2024-10-07 22:12:09 +0200
  • fa9277d12d Merge branch 'master' into docking ocornut 2024-10-07 22:05:57 +0200
  • 42206b3d51 Backends: DX9, DX10, DX11, DX12, OpenGL, Vulkan, WGPU: Changed default texture sampler to Clamp instead of Repeat/Wrap. (#7468, #7511, #5999, #5502) ocornut 2024-10-07 22:02:55 +0200
  • 74dd38d27c Backends: Vulkan: fixed warnings when building in 32-bit mode. ocornut 2024-10-07 21:53:46 +0200
  • e94f95d82b Backends: DX11, DX12, Vulkan, WGPU: Expose some backend-specific render state usable for callbacks. (#6969, #5834, #7468, #3590) ocornut 2024-10-07 21:00:07 +0200
  • 9bd5d8a240 Backends: misc renaming of locals. Use 'draw_list' instead of 'cmd_list'. Avoid using 'ctx'. ocornut 2024-10-07 17:52:57 +0200
  • 1dde20ff4a Version 1.91.4 WIP ocornut 2024-10-07 17:39:28 +0200
  • b4c96355c9 Merge branch 'master' into docking v1.91.3-docking ocornut 2024-10-04 15:43:05 +0200
  • cb16568fca Version 1.91.3 v1.91.3 ocornut 2024-10-04 14:06:33 +0200
  • 8db126188d Fixed static analyser warning. Amend b3c8747 ocornut 2024-10-03 17:32:05 +0200
  • 3d399bceca Docs: amend docs to explain case of using multiple overlayed ButtonBehavior(). (#8030, #7961, #7669) ocornut 2024-10-03 16:49:38 +0200
  • b3c87475a5 Drags, Slider: added ImGuiSliderFlags_ClampOnInput, ImGuiSliderFlags_ClampZeroRange. (#7968, #3361, #76) ocornut 2024-10-03 16:17:45 +0200
  • 3293ef8bbc Backends: Win32: Use ResisterClassW()/CreateWindowExW() for secondary viewports. (#7979, #5725) ocornut 2024-10-03 12:04:54 +0200
  • 02b9797696 Backends: SDL3: fixes use of now removed SDL_bool. ocornut 2024-10-03 11:56:14 +0200
  • e80498f5e7 Merge branch 'master' into docking ocornut 2024-10-03 11:33:26 +0200
  • 5109a77f69 Tooltips: Tooltips triggered from touch inputs are positionned above the item. (#8036) ocornut 2024-10-02 18:39:17 +0200
  • 014b722963 Tooltips, Drag and Drop: Stabilized name of drag and drop tooltip window. (#8036) ocornut 2024-10-02 18:26:02 +0200
  • f0575411c0 Tooltips, Drag and Drop: Fixed an issue where the fallback drag and drop payload tooltip appeared during drag and drop release. ocornut 2024-10-02 15:23:54 +0200
  • 004f03945f TabBar: added TabBarQueueFocus() by name for non-docking tab bars. (#8029, #6681) ocornut 2024-09-30 20:01:06 +0200
  • 655fcf8287 TabBar: added TabBarQueueFocus() by name for non-docking tab bars. (#8029, #6681) ocornut 2024-09-30 19:36:58 +0200
  • 03f007d4cd Comments (#1651) ocornut 2024-09-30 12:04:48 +0200
  • 29cff2be06 Silence PVS Studio static analyzer false positives. ocornut 2024-09-28 16:54:45 +0200
  • 793773209b Comments. Fixed warnings. ocornut 2024-09-27 19:23:41 +0200
  • ba14c70b02 Comments. Fixed warnings. ocornut 2024-09-27 19:23:41 +0200
  • d1ea03b872 Merge branch 'master' into docking ocornut 2024-09-27 19:03:25 +0200
  • 199a44e31e Error Handling: fixed not rewinding to recorded tree and id stack size (#1651) ocornut 2024-09-26 17:51:46 +0200
  • 30c29d291f Error Handling: enabled experimental recovery systems. (#1651, #5654) ocornut 2024-09-24 20:51:51 +0200
  • 8776678a46 Error Handling: replaced log callback in recovery functions with calls to IM_ASSERT_USER_ERROR(). (#1651, #5654) ocornut 2024-09-24 17:31:04 +0200
  • 718a594b1e Error Handling: rewired asserts in PopID(), PopFont(), PopItemFlag(), EndDisabled(), PopTextWrapPos(), PopFocusScope(), PopItemWidth() to use IM_ASSERT_USER_ERROR(). (#1651, #5654) ocornut 2024-09-24 15:59:54 +0200
  • 2360061520 Error Handling, Debug Log: added IMGUI_DEBUG_LOG_ERROR() with special handling. (#5855, #1651, #5654) ocornut 2024-09-24 15:58:09 +0200
  • 26785fd873 Internals: NewFrame: move the window reset loop higher up, namely before UpdateHoveredWindowAndCaptureFlags() -> FindHoveredWindowEx(). ocornut 2024-09-27 15:06:05 +0200
  • 797101a882 Windows: BeginChild(): made it possible to call SetNextWindowSize() on a child window using ImGuiChildFlags_ResizeX/ImGuiChildFlags_ResizeY. (#1710, #8020) ocornut 2024-09-26 14:58:56 +0200
  • 9644c51183 Error handling: rework error tooltip logic (will be reused by upcoming feature). (#7961, #7669, #1651) ocornut 2024-09-25 18:59:08 +0200
  • d0107f5da2 Internals: misc tweaks to facilitate branch merging. ocornut 2024-09-24 21:53:25 +0200
  • aa81272900 Merge branch 'master' into docking ocornut 2024-09-24 20:31:26 +0200
  • 726aad8e08 Refactor: moved ImGuiContext contructor to imgui.cpp ocornut 2024-09-24 20:24:51 +0200
  • 44a73be6ea TestEngine: log calls don't need testing hook active. ocornut 2024-09-24 20:22:16 +0200
  • bc77041b57 Error Handling: fixed an issue ErrorCheckEndWindowRecover() when aborting in a child inside a tab bar. (#1651) ocornut 2024-09-23 16:44:16 +0200
  • d7cedd648b Backends: SDL2, SDL3: Fixed building for UWP platforms. (#8008) ocornut 2024-09-23 14:03:36 +0200
  • 7f81fbc542 Backends: WGPU: Fix new WGPUStringView breaks shader compilation. (#8009, #8010) Mark Sibly 2024-09-22 16:05:28 +1200
  • 10fe2b674a Merge branch 'master' into docking ocornut 2024-09-20 18:42:48 +0200
  • fb410463e6 Scrollbar: added io.ConfigScrollbarScrollByPage setting. (#8002, #7328) ocornut 2024-09-20 18:40:32 +0200
  • a727332e77 Scrollbar: Shift+Click always use absolute positionning scroll. (#8002, #7328) ocornut 2024-09-20 18:08:13 +0200
  • 4aeae5d718 Error check: fixed build when using IMGUI_DISABLE_DEBUG_TOOLS. ocornut 2024-09-20 17:27:51 +0200
  • d0750ee4e7 Error check: clarified that carriage returns are emitted by our code. Added helper default callback. Comments. (#1651) ocornut 2024-09-19 16:13:21 +0200
  • 0af2c4ef76 Backends: SDL3: Update for API changes: SDL_bool removal. SDL_INIT_TIMER removal. (#7999) ocornut 2024-09-19 16:02:23 +0200
  • faca859043 Version 1.91.3 WIP ocornut 2024-09-19 15:51:06 +0200
  • bc77cccd31 Merge branch 'master' into docking v1.91.2-docking ocornut 2024-09-19 14:52:29 +0200
  • a9f72ab681 Version 1.91.2 v1.91.2 ocornut 2024-09-19 14:33:03 +0200
  • 42272505c9 Backends: ensure that ImGuiPlatformMonitor list is available after backend Init call. (#7995) ocornut 2024-09-19 14:25:01 +0200
  • cfae5ac71b Backends: make ImGui_ImplSDL2_KeyEventToImGuiKey(), ImGui_ImplSDL3_KeyEventToImGuiKey(), ImGui_ImplGlfw_KeyToImGuiKey(), ImGui_ImplWin32_KeyEventToImGuiKey(), ImGui_ImplAllegro5_KeyCodeToImGuiKey(), ImGui_ImplOSX_KeyCodeToImGuiKey(), non-static. (#7997) ocornut 2024-09-19 14:09:45 +0200
  • ae8688974b Merge branch 'master' into docking ocornut 2024-09-17 21:08:03 +0200
  • f7ba645398 InputText: fixed not filling callback's SelectionEnd. (#7925) ocornut 2024-09-17 21:07:15 +0200
  • e648dbb59d Tables: fixed auto-width columns when using synced-instances of same table. (#7218) ocornut 2024-09-17 20:34:54 +0200
  • 6aade6912a Inputs: SetNextItemShortcut() with ImGuiInputFlags_Tooltip doesn't show tooltip when item is active. ocornut 2024-09-17 18:52:12 +0200
  • dad9f45e3e Windows: fixed an issue where double-click to collapse could be triggered even while another item is active. (#7841, #7369) ocornut 2024-09-17 18:27:31 +0200
  • 71714eab53 Tables: fixed assertion related to inconsistent outer clipping when sizes are not rounded. (#7957) ocornut 2024-09-17 18:09:02 +0200
  • 11fba027e5 Tables: using table->InnerClipRect more consistently. Fixes an assertion with tables with borders when clipped by parent. (#6765, #3752, #7428) ocornut 2024-09-17 16:35:55 +0200
  • 1ab1e3c656 Backends: SDL3: rework implementation of ImGuiViewportFlags_NoTaskBarIcon. (#7989) RT2 2024-09-15 19:57:37 +0200
  • 6ce26ef11d AddFont: added assert to better detect uninitialized struct. (#7993) ocornut 2024-09-17 12:25:21 +0200
  • 08b1496b7e Backends: Win32: fixed an issue where a viewport destroyed while clicking would hog mouse tracking and temporary lead to incorrect update of HoveredWindow. (#7971) ocornut 2024-09-16 17:22:31 +0200
  • 8ba7efb738 Backends: Win32: fixed an issue where a viewport destroyed while clicking would hog mouse tracking and temporary lead to incorrect update of HoveredWindow. (#7971) ocornut 2024-09-16 17:22:31 +0200
  • 1ac162f2b0 Backends: WGPU: add IMGUI_IMPL_WEBGPU_BACKEND_DAWN/IMGUI_IMPL_WEBGPU_BACKEND_WGPU to support more targets. (#7977, #7969, #6602, #6188, #7523) Aaron C Gaudette 2024-09-16 16:07:02 +0200
  • 4925695ae8 InputText: optimize InputTextCalcTextLenAndLineCount() for inactive multiline path. (#7925) ocornut 2024-09-16 14:52:42 +0200
  • 7ac50bf77d InputText: more tidying up of selection search loop. ocornut 2024-09-16 14:42:58 +0200
  • aef07aea27 InputText: minor tidying up of selection search loop (no need to imply it runs in single line mode) ocornut 2024-09-16 14:36:25 +0200
  • b53d91a4c4 InputText: optimization for large text: using memchr() instead of strchr() shaves 0.2 ms on 865k multi-line text case. Approximately 20%. (#7925) ocornut 2024-09-16 14:15:43 +0200
  • 44a74509af Backends: Win32: fixed direct calls to platform_io.Platform_SetWindowPos()/Platform_SetWindowSize() on windows created by application (typically main viewport). ocornut 2024-09-16 13:56:25 +0200
  • 510b6adc9b CI: disable month-long PVS Studio warning about expiring licence. ocornut 2024-09-16 12:09:02 +0200
  • 8040c02b32 Viewports: fixed an issue where a window manually constrained to the main viewport while crossing over main viewport bounds isn't translated properly. (#7985) ocornut 2024-09-16 12:05:25 +0200
  • dab63231d8 Misc: Made it accepted to call SetMouseCursor() with any out-of-bound value, as a way to allow hacking in custom cursors if desirable. ocornut 2024-09-16 11:19:05 +0200
  • 8326dabe5e Merge branch 'master' into docking ocornut 2024-09-12 23:19:26 +0200
  • 4d00bf8add MultiSelect+Tables: fixed an issue where box-select would skip items while drag-scrolling in a table with outer borders. (#7970, #7821). ocornut 2024-09-12 23:13:32 +0200
  • 6dcb7be35f CI: amend build tests for emscripten (#7965) Yan Pujante 2024-09-07 10:23:20 -0700
  • ac2ad79812 Backends: GLFW+Emscripten: use OSX behaviors automatically when using contrib glfw port. (#7965, #7915) Yan Pujante 2024-09-07 10:22:45 -0700
  • 484764860d Backends: SDL3: added support for viewport->ParentViewportId field to support parenting windows at OS level. (#7973) RT2 2024-09-11 11:41:37 +0200
  • 52a6ab44b1
    Doc: Fix typo. (#7974) David Briscoe 2024-09-12 10:24:37 -0700