ocornut
|
4e2126ee44
|
Merge branch 'master' into docking
# Conflicts:
# docs/CHANGELOG.txt
# imgui.cpp
# imgui.h
# imgui_demo.cpp
# imgui_widgets.cpp
|
2024-10-18 18:59:27 +02:00 |
|
ocornut
|
ab9ce2a927
|
Nav: added io.ConfigNavCursorVisibleAuto, io.ConfigNavCursorVisibleAlways. (#1074, #2048, #7237, #8059, #3200, #787)
Note: the NavCursorHideFrames addition is to support 88a354585 even though ConfigNavCursorVisibleAlways is set.
|
2024-10-18 18:54:46 +02:00 |
|
ocornut
|
3982cb35dc
|
Nav, Docs: consistently use "keyboard/gamepad" instead of sometimes "gamepad/keyboard".
|
2024-10-18 18:49:44 +02:00 |
|
ocornut
|
1ff9768aa3
|
Nav: (Breaking) renamed ImGuiCol_NavHighlight to ImGuiCol_NavCursor. (#1074, #2048, #7237, #8059, #1712, #7370, #787)
|
2024-10-18 18:49:44 +02:00 |
|
ocornut
|
634a7ed988
|
Nav: added SetNavCursorVisible(). (#1074, #2048, #7237, #8059)
+ Further internal renaming for consistency.
|
2024-10-18 18:49:44 +02:00 |
|
ocornut
|
23b655f8e3
|
Internals: (Breaking) changed g.NavDisableHighlight to g.NavCursorVisible : same logic but inverted value. (#1074, #2048, #7237, #8059, #1712, #7370, #787)
|
2024-10-18 18:49:43 +02:00 |
|
ocornut
|
7a56b41124
|
Nav: added io.ConfigNavEscapeClearFocusItem. (#8059, #2048, #1074, #3200)
|
2024-10-18 18:49:43 +02:00 |
|
ocornut
|
38617a5ad3
|
Internals: remove ImGuiInputTextFlags_NoMarkEdited and g.LockMarkEdited n favor of ImGuiItemFlags_NoMarkEdited.
|
2024-10-17 15:38:00 +02:00 |
|
ocornut
|
83ecc846dc
|
Disabled: clicking a disabled item focuses parent window. (#8064)
|
2024-10-16 20:25:48 +02:00 |
|
ocornut
|
67e5f3505d
|
InvisibleButton: disable navigation properly + added ImGuiButtonFlags_EnableNav to enable navigation. (#8057)
|
2024-10-16 19:56:20 +02:00 |
|
ocornut
|
49a9eee33f
|
Commented out obsolete internals's SetItemUsingMouseWheel() (#2891), TreeNodeBehaviorIsOpen() (#4814, #5423, #282, #2958, #924)
+ Removed obsolete header checks for IMGUI_DISABLE_METRICS_WINDOW.
|
2024-10-15 10:45:10 +02:00 |
|
ocornut
|
514a97a9b7
|
Merge branch 'master' into docking
# Conflicts:
# backends/imgui_impl_dx11.cpp
# backends/imgui_impl_dx11.h
# backends/imgui_impl_dx12.cpp
# backends/imgui_impl_dx12.h
# backends/imgui_impl_glfw.cpp
# backends/imgui_impl_sdlrenderer2.cpp
# backends/imgui_impl_sdlrenderer2.h
# backends/imgui_impl_sdlrenderer3.cpp
# backends/imgui_impl_sdlrenderer3.h
# backends/imgui_impl_vulkan.cpp
# backends/imgui_impl_vulkan.h
# backends/imgui_impl_wgpu.cpp
# backends/imgui_impl_wgpu.h
# backends/imgui_impl_win32.cpp
# imgui.cpp
# imgui_demo.cpp
|
2024-10-14 19:23:23 +02:00 |
|
ocornut
|
b001038901
|
Nav: added io.ConfigNavEscapeClearFocusWindow to clear focused window on Escape. (#3200)
+ pressing escape to hide nav highlight doesn't clear location from when ctrl+tabbing back into same window later.
|
2024-10-14 16:57:34 +02:00 |
|
ocornut
|
ba5161740e
|
Amend d885fe4 , fixes default value of ConfigNavCaptureKeyboard. (#2517, #2009)
|
2024-10-14 16:52:25 +02:00 |
|
ocornut
|
d885fe4dd0
|
(Breaking) moved ImGuiConfigFlags_NavEnableSetMousePos -> io.ConfigNavMoveSetMousePos, ImGuiConfigFlags_NavNoCaptureKeyboard -> ConfigNavCaptureKeyboard. (#2517, #2009)
|
2024-10-14 15:29:24 +02:00 |
|
ocornut
|
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)
|
2024-10-11 13:29:13 +02:00 |
|
ocornut
|
f3d242a90d
|
Tables: fixed initial auto-sizing issue with synched-instances. (#8045, #7218)
|
2024-10-08 19:45:58 +02:00 |
|
ocornut
|
92b94980c6
|
(Breaking) Default ImTextureID to use a Im64 instead of void* (#1641)
|
2024-10-08 14:21:44 +02:00 |
|
ocornut
|
fa9277d12d
|
Merge branch 'master' into docking
# Conflicts:
# backends/imgui_impl_dx10.cpp
# backends/imgui_impl_dx11.cpp
# backends/imgui_impl_dx11.h
# backends/imgui_impl_dx12.cpp
# backends/imgui_impl_dx12.h
# backends/imgui_impl_dx9.cpp
# backends/imgui_impl_opengl2.cpp
# backends/imgui_impl_opengl3.cpp
# backends/imgui_impl_vulkan.cpp
# backends/imgui_impl_vulkan.h
# backends/imgui_impl_wgpu.cpp
# backends/imgui_impl_wgpu.h
# imgui.h
|
2024-10-07 22:05:57 +02:00 |
|
ocornut
|
e94f95d82b
|
Backends: DX11, DX12, Vulkan, WGPU: Expose some backend-specific render state usable for callbacks. (#6969, #5834, #7468, #3590)
|
2024-10-07 21:45:19 +02:00 |
|
ocornut
|
1dde20ff4a
|
Version 1.91.4 WIP
|
2024-10-07 17:39:28 +02:00 |
|
ocornut
|
b4c96355c9
|
Merge branch 'master' into docking
# Conflicts:
# imgui.cpp
|
2024-10-04 15:43:05 +02:00 |
|
ocornut
|
cb16568fca
|
Version 1.91.3
|
2024-10-04 15:42:45 +02:00 |
|
ocornut
|
b3c87475a5
|
Drags, Slider: added ImGuiSliderFlags_ClampOnInput, ImGuiSliderFlags_ClampZeroRange. (#7968, #3361, #76)
|
2024-10-03 16:26:44 +02:00 |
|
ocornut
|
e80498f5e7
|
Merge branch 'master' into docking
# Conflicts:
# imgui.cpp
|
2024-10-03 11:33:26 +02:00 |
|
ocornut
|
014b722963
|
Tooltips, Drag and Drop: Stabilized name of drag and drop tooltip window. (#8036)
|
2024-10-03 11:18:59 +02:00 |
|
ocornut
|
03f007d4cd
|
Comments (#1651)
|
2024-09-30 14:31:51 +02:00 |
|
ocornut
|
d1ea03b872
|
Merge branch 'master' into docking
# Conflicts:
# imgui.cpp
# imgui_internal.h
|
2024-09-27 19:03:25 +02:00 |
|
ocornut
|
30c29d291f
|
Error Handling: enabled experimental recovery systems. (#1651, #5654)
Setup a couple of features to configure them, including ways to display error tooltips instead of assserting.
|
2024-09-27 19:00:56 +02:00 |
|
ocornut
|
797101a882
|
Windows: BeginChild(): made it possible to call SetNextWindowSize() on a child window using ImGuiChildFlags_ResizeX/ImGuiChildFlags_ResizeY. (#1710, #8020)
|
2024-09-26 14:58:56 +02:00 |
|
ocornut
|
aa81272900
|
Merge branch 'master' into docking
# Conflicts:
# docs/CHANGELOG.txt
# imgui_internal.h
|
2024-09-24 20:31:26 +02:00 |
|
ocornut
|
44a73be6ea
|
TestEngine: log calls don't need testing hook active.
Docs: tweak comments on BeginDisabled(false)/EndDisabled() pairs.
|
2024-09-24 20:22:53 +02:00 |
|
ocornut
|
10fe2b674a
|
Merge branch 'master' into docking
|
2024-09-20 18:43:48 +02:00 |
|
ocornut
|
fb410463e6
|
Scrollbar: added io.ConfigScrollbarScrollByPage setting. (#8002, #7328)
|
2024-09-20 18:40:32 +02:00 |
|
ocornut
|
faca859043
|
Version 1.91.3 WIP
|
2024-09-19 15:51:06 +02:00 |
|
ocornut
|
bc77cccd31
|
Merge branch 'master' into docking
|
2024-09-19 14:52:43 +02:00 |
|
ocornut
|
a9f72ab681
|
Version 1.91.2
|
2024-09-19 14:47:13 +02:00 |
|
ocornut
|
ae8688974b
|
Merge branch 'master' into docking
|
2024-09-17 21:08:03 +02:00 |
|
ocornut
|
71714eab53
|
Tables: fixed assertion related to inconsistent outer clipping when sizes are not rounded. (#7957)
|
2024-09-17 18:09:02 +02:00 |
|
ocornut
|
8326dabe5e
|
Merge branch 'master' into docking
|
2024-09-12 23:19:26 +02:00 |
|
ocornut
|
d1b7817959
|
InputText: amends: renames, coding style. (#7925)
|
2024-09-11 14:46:29 +02:00 |
|
ocornut
|
68aa9a86ec
|
Merge branch 'master' into docking
# Conflicts:
# backends/imgui_impl_sdl2.cpp
|
2024-09-10 16:29:14 +02:00 |
|
ocornut
|
67cd4ead65
|
Added io.ConfigDebugHighlightIdConflicts debug feature! (#7961, #7669)
Also #74, #96, #480, #501, #647, #654, #719, #843, #894, #1057, #1173, #1390, #1414, #1556, #1768, #2041, #2116, #2330, #2475, #2562, #2667, #2807, #2885, #3102, #3375, #3526, #3964, #4008, #4070, #4158, #4172, #4199, #4375, #4395, #4471, #4548, #4612, #4631, #4657, #4796, #5210, #5303, #5360, #5393, #5533, #5692, #5707, #5729, #5773, #5787, #5884, #6046, #6093, #6186, #6223, #6364, #6387, #6567, #6692, #6724, #6939, #6984, #7246, #7270, #7375, #7421, #7434, #7472, #7581, #7724, #7926, #7937 and probably more.. Tagging to increase visibility!
|
2024-09-10 15:40:37 +02:00 |
|
ocornut
|
7694e89e89
|
Merge branch 'master' into docking
# Conflicts:
# imgui.cpp
|
2024-09-09 16:54:40 +02:00 |
|
ocornut
|
ca5701d458
|
InputText: moved all ImGuiInputTextState functions to not be inline.
|
2024-09-09 16:29:47 +02:00 |
|
ocornut
|
a2366f9022
|
TextLinkOpenURL: display a verb in front the link. Update Gallery & other links. (#7885, #7660)
|
2024-09-06 11:45:32 +02:00 |
|
ocornut
|
193c1e2366
|
Version 1.91.2 WIP
|
2024-09-05 20:03:23 +02:00 |
|
ocornut
|
f63c95a076
|
Merge branch 'master' into docking
# Conflicts:
# backends/imgui_impl_sdl3.cpp
# docs/CHANGELOG.txt
# imgui.cpp
# imgui.h
# imgui_internal.h
|
2024-09-04 16:58:44 +02:00 |
|
ocornut
|
1dfbb100d6
|
Version 1.91.1
|
2024-09-04 16:53:43 +02:00 |
|
ocornut
|
722a2a12fb
|
Tables: comments. (#7937)
|
2024-09-04 14:42:00 +02:00 |
|