Commit Graph

  • 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
  • dc6346b763 Fonts: fixed ellipsis "..." rendering width miscalculation bug introduced in 1.91.0. (#7976) ocornut 2024-09-12 19:22:09 +0200
  • 8807b01b28 InputText: amends: now can use memchr()/strchr() for line counting. Much faster! (#7925) ocornut 2024-09-11 14:15:23 +0200
  • 19accb14a9 InputText: amends: fixed undo-stack reconcile. fixed metrics crash. fixes character filtering. (#7925) ocornut 2024-09-11 12:57:54 +0200
  • 3d1e593b5b InputText: amends: fixed next/prev word implementation. (#7925) ocornut 2024-09-05 19:56:12 +0200
  • e240bc151a InputText: amends: add note about STB_TEXTEDIT_GETCHAR. tweak InputTextCalcTextSize() to use similar debug-friendly logic as ImFont:CalcTextSizeA(). misc small tidying up. (#7925) ocornut 2024-09-05 16:29:30 +0200
  • 1674fe96ff InputText: amends: add stb_textedit_text() api. (#7925) ocornut 2024-09-05 16:31:41 +0200
  • d1b7817959 InputText: amends: renames, coding style. (#7925) ocornut 2024-09-05 15:25:30 +0200
  • abd07f6d30 InputText: added native support for UTF-8 text editing and god rid of the wchar buffer. (#7925) alektron 2024-08-27 01:37:50 +0200
  • 68aa9a86ec Merge branch 'master' into docking ocornut 2024-09-10 16:29:14 +0200
  • 67cd4ead65 Added io.ConfigDebugHighlightIdConflicts debug feature! (#7961, #7669) ocornut 2024-09-10 15:28:40 +0200
  • a8eec24405 Demo: fix some id conflicts. (#7961) Pascal Thomet 2024-09-09 21:07:10 +0200
  • 4236bc088f Backends: SDL2: use SDL_Vulkan_GetDrawableSize with Vulkan instead of SDL_GL_GetDrawableSize. (#7967, #3190) scribam 2024-09-08 12:19:51 +0200
  • 7694e89e89 Merge branch 'master' into docking ocornut 2024-09-09 16:54:40 +0200
  • 15cb7d61f9 InputText: moved imstb_textedit.h include to imgui_widgets.cpp ocornut 2024-09-09 16:52:16 +0200
  • ca5701d458 InputText: moved all ImGuiInputTextState functions to not be inline. ocornut 2024-09-09 16:29:47 +0200
  • 21d03edcb0 InputText: renamed namespace from stb_texture structure and added an indirection. ocornut 2024-09-09 16:22:55 +0200
  • a2366f9022 TextLinkOpenURL: display a verb in front the link. Update Gallery & other links. (#7885, #7660) ocornut 2024-09-06 11:38:48 +0200
  • a5cf4fe374 InputText: added CJK double-width punctuation to list of separators considered for CTRL+Arrow. ocornut 2024-09-05 20:45:07 +0200
  • d16cb171c6 Nav: pressing any keyboard key while holding Alt disable toggling nav layer on Alt release. (#4439, extend #370, #369) ocornut 2024-09-05 20:16:37 +0200
  • 193c1e2366 Version 1.91.2 WIP ocornut 2024-09-05 20:03:23 +0200
  • d0b742efde CI: build with Clang C++26 on Linux. (#7954) ocornut 2024-09-05 15:30:29 +0200
  • 4a1a38f7ed CI: Amend 943fd21. ocornut 2024-09-05 15:28:41 +0200
  • 943fd216ec CI: Amend e3cb016. ocornut 2024-09-05 15:19:04 +0200
  • e3cb016328 CI: upgrade Ubuntu version to get newer Clang. Add C++26 build test. (#7954) ocornut 2024-09-05 15:15:49 +0200
  • 41eebc87a0
    Fixed C++26 invalid enum operation (#7954) CrackedMatter 2024-09-05 12:04:28 +0200
  • f63c95a076 Merge branch 'master' into docking v1.91.1-docking ocornut 2024-09-04 16:58:44 +0200
  • 1dfbb100d6 Version 1.91.1 v1.91.1 ocornut 2024-09-04 16:17:30 +0200
  • f75cf62d2f Tables: fixed resizing columns when using multiple synched instances that are layed out at different X positions. (#7933) ocornut 2024-09-04 15:31:39 +0200
  • 8dd33839f0 Tables: fixed an issue detecting hovering column/row when using multiple synched instances layed out at different X positions. (#7933) ocornut 2024-09-04 15:15:48 +0200
  • 722a2a12fb Tables: comments. (#7937) ocornut 2024-09-04 14:41:22 +0200
  • 776813416b PlotHistogram, PlotLines: use ButtonBehavior() to be idiomatic. (#7935, #3072) ocornut 2024-09-03 21:55:26 +0200
  • afb15e9795 PlotHistogram, PlotLines: register item ID in a more idiomatic manner. (#7935, #3072) ocornut 2024-09-03 21:49:35 +0200
  • f99febfd6f Made BeginItemTooltip() and IsItemHovered() with delay flag infer an implicit ID using Pos only. (#7945, #1485, #143) ocornut 2024-09-03 21:19:25 +0200
  • a93f7db875 Misc merge/small stuff from docking to reduce drift. ocornut 2024-09-03 20:55:00 +0200
  • 6d70c2dc73 Viewports: fixed misuse of inset_max.y, which typically would have broken using BeginViewportSideBar() with ImGuiDir_Down, regression from 1.91.0. (#7940, #7823) ocornut 2024-09-03 20:01:10 +0200
  • 30dcdcbe73 Backends: GLFW: Emscripten: use OpenURL() when available and using EMSCRIPTEN_USE_PORT_CONTRIB_GLFW3. Fixes popup blocked in some browsers. (#7915, #7660) Yan Pujante 2024-08-23 09:56:02 -0700
  • 07be01767a Demo: added emscripten version. (#7915) Yan Pujante 2024-08-23 10:05:38 -0700
  • 6af9ac29ec Backends: SDL3: following SDL3 reverting their change, result of SDL_GetDisplays() must be freed. (#7809) ocornut 2024-09-03 19:13:45 +0200
  • 4832027eb6 Examples: SDL3: Update for API changes: SDL_Init() returns 0 on failure. ocornut 2024-09-03 19:05:32 +0200
  • 6a7319543c Backends: SDL3: following SDL3 reverting their change, result of SDL_GetGamepads must be freed. (#7918, #7898, #7807) Matt Guerrette 2024-08-25 13:07:10 -0400
  • ee9e3a2ed6 Tabs: avoid queuing a refocus when tab is already focused, which would have the side-effect of e.g. closing popup on a mouse release. (#7914) ocornut 2024-08-23 19:40:47 +0200
  • 4a06fe59b4
    Update FONTS.md (#7944) omar 2024-09-03 15:32:40 +0200
  • 28caa22356
    Fix minor typo (#7943) James Wrigley 2024-09-03 00:50:20 +0200
  • 1d88609043
    Changed call from cosf to ImCos (#7939) tanoxyz 2024-09-01 11:40:48 +0200
  • 226e0d579d Fixed duplicate declaration of GetPlatformIO() in header. (#7917) ocornut 2024-08-25 15:07:36 +0200
  • 8c4dceba08 Tabs: avoid queuing a refocus when tab is already focused, which would have the side-effect of e.g. closing popup on a mouse release. (#7914) ocornut 2024-08-23 19:40:47 +0200
  • 4fc187dc60 Merge branch 'master' into docking ocornut 2024-08-23 19:19:22 +0200
  • 864a2bf6b8 Tables: another attempt at making contents not overlap the bottom and right border in a scrolling table. (#6765, #3752, #7428) ocornut 2024-08-23 19:12:54 +0200
  • a131c3e611 Tables: revert a34071876 extending outer bottom/right border by 1, this is not the right solution. (#6765, #3752) ocornut 2024-08-23 18:24:44 +0200
  • 947961b7b4 Fixed Clang17 C++26 warning. (#7383) ocornut 2024-08-23 15:51:05 +0200
  • 0b9adc2c79 BeginChild: (BREAKING) renamed ImGuiChildFlags_Border to ImGuiChildFlags_Borders. ocornut 2024-08-23 15:24:22 +0200
  • 1e939fcc32 Tooltips, Drag and Drop: made it possible to override BeginTooltip() position while inside a drag and drop source or target. (#6973) ocornut 2024-08-23 14:55:27 +0200
  • 088e6fc047 Examples: Win32+OpenGL3: added batch. file for msys2/mingw build. (#6544) BillKek 2023-06-22 17:44:00 +0300
  • 438f9e1a3e InputText: amend d474ed7 for static analysis. (#7913) ocornut 2024-08-23 14:14:07 +0200