ocornut
742e53434f
Child Windows: adjust resizing limits to match window padding rather than inner clipping rectangle. ( #7440 )
ago%!(EXTRA string=1 year)
cfillion
515b437c08
Child windows: look at the parent window's flags to decide whether to clamp child resizes. ( #7440 , #1710 )
ago%!(EXTRA string=1 year)
cfillion
976dc23965
Windows: extend outer resize borders to the edges when there are no corner grips. ( #7440 , #1710 )
ago%!(EXTRA string=1 year)
cfillion
cf4c10bef7
Style: added ImGuiStyleVar_TabBorderSize, ImGuiStyleVar_TableAngledHeadersAngle. ( #7411 )
ago%!(EXTRA string=1 year)
cfillion
868facff9d
ImDrawList: (Breaking) merge float radius_x/radius_y parameters into ImVec2 radius in PathEllipticalArcTo(), AddEllipse(), AddEllipseFilled(). ( #2743 , #7417 )
ago%!(EXTRA string=1 year)
ocornut
40df3db1a2
Tweaking terminology
ago%!(EXTRA string=1 year)
ocornut
3c435c0297
Inputs: (Breaking) More formally obsoleted GetKeyIndex() when IMGUI_DISABLE_OBSOLETE_FUNCTIONS is set. ( #4921 )
ago%!(EXTRA string=1 year)
ocornut
286cd5bd41
Internals, InputText: removed ImGuiInputSource_Clipboard. ( #4005 )
...
Added by f08566b4d
ago%!(EXTRA string=1 year)
ocornut
65dc67f63c
Windows: Double-click to collapse may be disabled via key-ownership mechanism. ( #7369 )
ago%!(EXTRA string=1 year)
ocornut
04f40014a6
Docs: added a mini wiki index in main source files.
ago%!(EXTRA string=1 year)
ocornut
0573513d6d
Windows: Scrollbar visibility decision uses current size when both size and contents size are submitted by API. ( #7252 )
ago%!(EXTRA string=1 year)
ocornut
44c7dfca03
Menus, Popup: Amend c3f8f4d
for static analyzer warning ("condition always true"). ( #7325 )
ago%!(EXTRA string=1 year)
ocornut
c3f8f4de25
Menus, Popups: Fixed an issue where sibling menu popups re-opening in successive frames would erroneously close the window. ( #7325 , #7287 , #7063 )
...
Amend 014e0ac8
ago%!(EXTRA string=1 year)
ocornut
9877941775
Popups, Menus: rename ImGuiPopupData::BackupNavWindow > RestoreNavWindow and minor tweaks. Should be functionally a no-op.
...
This is expected to clear the noise so next commit can be cleared to read. (#7325 )
Last renamed in b3ea01d86
ago%!(EXTRA string=1 year)
ocornut
e46d1e69ac
Version 1.90.5 WIP
ago%!(EXTRA string=1 year)
ocornut
277ae93c41
Version 1.90.4
ago%!(EXTRA string=1 year)
ocornut
f5be90523d
Nav: Fixed SetKeyboardFocusHere() or programmatic tabbing API from not working on windows with the ImGuiWindowFlags_NoNavInputs flag.
...
Amend/fix 13d91ff
3a078466
ago%!(EXTRA string=1 year)
ocornut
13d91ff918
Nav: Fixed SetKeyboardFocusHere() or programmatic tabbing API from not working on windows with the ImGuiWindowFlags_NoNavInputs flag.
...
Amend/fix 3a078466a
ago%!(EXTRA string=1 year)
ocornut
34965cf23a
Modals: Temporary changes of ImGuiCol_ModalWindowDimBg are properly handled by BeginPopupModal(). ( #7340 )
...
+ Misc: Added optional alpha multiplier parameter to GetColorU32(ImU32) variant.
ago%!(EXTRA string=1 year)
ocornut
659fb41d0a
Debug Tools: moved DebugStartItemPicker() to public API. Added to Demo->Tools menu. ( #2673 )
ago%!(EXTRA string=1 year)
ocornut
d3f1a7165c
Popups: allow Child Popups to be resizable if not explicitly disabling.
ago%!(EXTRA string=1 year)
ocornut
e78ce72eb6
Popups: Fixed resizable popup minimum size being too small. Standardized CalcWindowMinSize() logic a bit more. ( #73290
...
Amend e2035a514
, 623bff23ce
, 923535240
, etc.
ago%!(EXTRA string=1 year)
ocornut
014e0ac8c9
Menus, Popups: Fixed an issue where hovering a parent-menu upward would erroneously close the window. ( #7325 , #7287 , #7063 )
...
Amend 76e09c4b0
. Initial call to ClosePopupToLevel d31fe97f7
(#2880 ).
See "widgets_menu_reopen_2" in TestSuite.
ago%!(EXTRA string=1 year)
Tim-Rex
9159cd7b4a
Updated invalid documentation link ( #7331 )
ago%!(EXTRA string=1 year)
cvionis
ccc5347e45
Fix typos ( #7332 )
ago%!(EXTRA string=1 year)
ocornut
8a14b71f22
Version 1.90.4 WIP
ago%!(EXTRA string=1 year)
ocornut
5b6f03213d
Version 1.90.3
ago%!(EXTRA string=1 year)
ocornut
9dfa2397de
Internals: Fixed ImFileOpen not working before context is created. ( #7314 , #7315 )
...
Amend daf49e9d8
ago%!(EXTRA string=1 year)
ocornut
3af739a2d1
Menus, Popups: fixed menus and popups with child window flag erroneously not displaying a scrollbar when contents is over parent viewport size. ( #7287 , #7063 )
...
Amend f37f6f6
ago%!(EXTRA string=1 year)
ocornut
915c6393ad
Version 1.90.3 WIP
ago%!(EXTRA string=1 year)
ocornut
8490a262c4
Debug Tools: Metrics: Improved Monitors and Viewports minimap display. Highlight on hover. (amends)
ago%!(EXTRA string=1 year)
ocornut
536090303a
Version 1.90.2
ago%!(EXTRA string=1 year)
ocornut
7b5357d817
Debug Tools: Metrics: Improved Monitors and Viewports minimap display. Highlight on hover.
...
Added ImGuiViewport ID in Master branch.
ago%!(EXTRA string=1 year)
ocornut
30ba3c347c
Viewports: Fixed moving accross monitors when io.ConfigWindowsMoveFromTitleBarOnly is set. ( #7299 , #3071 )
ago%!(EXTRA string=1 year)
ocornut
70aa717a8e
Combo: Fixed not reusing windows optimally when used inside a popup stack.
ago%!(EXTRA string=1 year)
ocornut
76e09c4b0f
ClosePopupsOverWindow(): amend to remove _ChildWindow test.
...
Said test seems unnecessary and incorrect as we test hierarchy now. See test "nav_ctrl_tab_popups" in ImGuiTestSuite.
ago%!(EXTRA string=1 year)
ocornut
3a078466a7
Nav: ImGuiWindowFlags_NoNavInputs is tested during scoring so NavFlattened windows can use it.
ago%!(EXTRA string=1 year)
ocornut
a5e0e90c16
Nav: tweak RenderNavHighlight() syntax. ImGuiNavHighlightFlags_TypeThin -> ImGuiNavHighlightFlags_Compact.
ago%!(EXTRA string=1 year)
ocornut
a06dd7a27b
OpenPopup(): Added ImGuiPopupFlags_NoReopen. Nav, Menus: Fixed click on a BeginMenu() followed by right-arrow. ( #1497 , #1533 )
...
reopen
ago%!(EXTRA string=1 year)
ocornut
f104967c68
Comments
ago%!(EXTRA string=1 year)
ocornut
06ce312745
InputText: Internal: added reload from user-buf feature. ( #2890 )
...
Very highly requested feature (#6962 , #5219 , #3290 , #4627 , #5054 , #3878 , #2881 , #1506 , #1216 , #968 ).
Also useful for interactive completion/selection popups (#2057 , #718 )
Based on @kudaba PR. Design for Inputtext V2 should make this obsolete.
ago%!(EXTRA string=1 year)
ocornut
96839b445e
Nav: Improve handling of Alt key to toggle menu so that key ownership may be claimed on indiviudal left/right alt key without intefering with the other.
...
See test "inputs_owner_single_mod"
ago%!(EXTRA string=1 year)
ocornut
7194756370
Shortcut: fixed single mod-key Shortcut from working e.g. Shortcut(ImGuiKey_LeftCtrl)
ago%!(EXTRA string=1 year)
ocornut
8491cf36ad
Inputs: g.ActiveIdUsingManyKeys[] prevent routes from being claimed.
...
Amend fc134f5
ago%!(EXTRA string=1 year)
ocornut
9176eedf24
Internals: SetShortcutRouting() move code so next commit is easier to read. Should be no-op.
ago%!(EXTRA string=1 year)
ocornut
81e0be856a
Fixed strict-aliasing violation in FormatTextureIDForDebugDisplay(). ( #7090 , #7256 )
ago%!(EXTRA string=1 year)
ocornut
a201af7354
Added SetNextItemShortcut() wip function. ( #456 )
...
Mark widget as hovered. Amend d10641b
.
ago%!(EXTRA string=1 year)
ocornut
4c2c09450a
Nav: keyboard/gamepad activation feedback properly timed instead of frame buffer. ( #456 )
...
Amend d10641b
ago%!(EXTRA string=1 year)
ocornut
763100b385
Nav: Fixed pressing Escape while in a child window with _NavFlattened flag. ( #7237 )
ago%!(EXTRA string=1 year)
ocornut
c7edb446ca
Shortcut(): always test ownership.
...
- It doesn't sense to test route without ownership (which may be overrided by code not using routing)
- It also wouldn't be possible to call Shortcut() with _None anyway, since successful routing sets ownership.
Tangential to experiments for #7237
ago%!(EXTRA string=1 year)