summaryrefslogtreecommitdiffstats
path: root/scene/gui/menu_bar.cpp
Commit message (Expand)AuthorAgeFilesLines
* update MenuBar after child renamed in editorAnish Mishra2024-10-081-0/+1
* [MenuBar] Make menu start index more consistent.bruvzg2024-09-061-7/+10
* Treat `MenuBar` and `MenuButton` as advanced UIA Thousand Ships2024-08-281-3/+0
* Merge pull request #92841 from kleonc/menu-bar-proper-canvas-transform-popup-...Rémi Verschelde2024-08-191-2/+3
|\
| * Fix MenuBar popup placement assuming it's in viewport default canvaskleonc2024-06-061-2/+3
* | [Tests] Fix various unit tests on minimal buildsA Thousand Ships2024-07-181-0/+3
|/
* [MenuBar] Use NativeMenu RIDs instead of indices to track items.bruvzg2024-03-251-31/+55
* [NativeMenu] Implement native popup menu support on Windows.bruvzg2024-03-131-5/+5
* [NativeMenu] Add checks to avoid unnecessary warnings.bruvzg2024-03-071-2/+2
* Move `global_menu_*` methods to a separate `NativeMenu` class.bruvzg2024-03-041-49/+66
* Merge pull request #86322 from bruvzg/mac_global_indexRémi Verschelde2024-02-131-19/+27
|\
| * [MenuBar] Store and use global menu item indices.bruvzg2023-12-191-19/+27
* | Merge pull request #86304 from OverloadedOrama/fix-menubar-scalingRémi Verschelde2024-01-261-20/+2
|\ \ | |/ |/|
| * Fix `MenuBar` hover position scaling properly with the scale factor multiplierEmmanouil Papadeas2024-01-241-20/+2
* | [macOS] Add default Window and Help menus, allow special menu customization.bruvzg2023-12-131-19/+29
|/
* [Menu Bar] Update min. size when items are added/removed/changed.bruvzg2023-10-251-0/+5
* [macOS] Add `about_to_open` and `popup_hide` callback for the global menus, m...bruvzg2023-10-041-102/+126
* Register theme properties with ThemeDBYuri Sizov2023-09-111-29/+26
* Add option to allow echo events in menu shortcutsTomasz Chabora2023-08-161-1/+1
* Code simplificationsMarkus Sauermann2023-06-211-1/+1
* Remove unused variable `PopupMenu::parent_rect`Markus Sauermann2023-06-151-1/+0
* Use `get_node_or_null` when null checks are presentNinni Pipping2023-06-101-3/+3
* Fix MenuBar item order in RTL layout.bruvzg2023-05-291-3/+13
* Fix auto-translations in editorkobewi2023-03-221-1/+3
* Fix exported type for Menubar start_indexjustchen13692023-03-101-1/+1
* MenuBar add auto-translation of Menu namesАлексей Смирнов2023-01-201-4/+4
* Removed unused property hints and `Object::get_translatable_strings()`Juan Linietsky2023-01-091-21/+0
* One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
* Fix hovering-color of MenuBar entries when reentering MenuBarMarkus Sauermann2022-12-291-0/+1
* Merge pull request #66337 from EricEzaM/sprite-framesRémi Verschelde2022-10-131-2/+2
|\
| * Ensure all checks of `is_action` in the editor which are for 'shortcut' use, ...Eric M2022-09-241-2/+2
* | Move Shortcut Context to Control and ensure that `shortcut_input` adheres to ...Eric M2022-10-131-36/+0
* | Fix MSVC warnings, rename shadowed variables, fix uninitialized values, chang...bruvzg2022-10-071-10/+10
|/
* Fix #66062: editing shortcut_context in inspectorRedMser2022-09-191-1/+1
* Rename `PopupMenu`'s `set/get_current_index()` to `set/get_focused_item()`Michael Alexsander2022-09-061-1/+1
* Merge pull request #65156 from YuriSizov/control-customizable-cache-p1Rémi Verschelde2022-09-011-32/+56
|\
| * Add a lifecycle method for manual theme item caching to ControlYuri Sizov2022-09-011-32/+56
* | Merge pull request #65132 from bruvzg/global_menu_shortcuts_contextRémi Verschelde2022-09-011-6/+9
|\ \ | |/ |/|
| * [macOS] Handle accelerator and click events of the global menu items separately.bruvzg2022-09-011-6/+9
* | Fix switching `MenuBar`'s menus with the keys while mouse hoveringMichael Alexsander2022-08-301-0/+5
|/
* Rename `CanvasItem.update()` to `queue_redraw()`Micky2022-08-291-6/+6
* Add item auto-highlighting to `MenuBar`Michael Alexsander2022-08-281-3/+12
* [macOS] Extend editor contents to the window titlebar for better space usage.bruvzg2022-08-261-5/+2
* Fix MenuBar minimum size adding unnecessary extra spacing after the last item.bruvzg2022-08-191-2/+4
* Fix MenuBar not processing shortcuts.bruvzg2022-08-191-0/+1
* Implement `MenuBar` control to wrap `PopupMenu`s or native menu, use native m...bruvzg2022-08-181-0/+865