summaryrefslogtreecommitdiffstats
path: root/scene/gui/menu_bar.h
Commit message (Collapse)AuthorAgeFilesLines
* [MenuBar] Use NativeMenu RIDs instead of indices to track items.bruvzg2024-03-251-1/+1
|
* [NativeMenu] Implement native popup menu support on Windows.bruvzg2024-03-131-1/+1
|
* Move `global_menu_*` methods to a separate `NativeMenu` class.bruvzg2024-03-041-8/+12
|
* Merge pull request #86322 from bruvzg/mac_global_indexRémi Verschelde2024-02-131-0/+1
|\ | | | | | | [MenuBar] Store and use global menu item indices.
| * [MenuBar] Store and use global menu item indices.bruvzg2023-12-191-0/+1
| |
* | Fix `MenuBar` hover position scaling properly with the scale factor multiplierEmmanouil Papadeas2024-01-241-1/+0
|/
* [macOS] Add `about_to_open` and `popup_hide` callback for the global menus, ↵bruvzg2023-10-041-4/+20
| | | | move part of logic to the PopupMenu to allow live menu modification.
* Register theme properties with ThemeDBYuri Sizov2023-09-111-1/+0
|
* Removed unused property hints and `Object::get_translatable_strings()`Juan Linietsky2023-01-091-1/+0
| | | | | | | | | | | | | | | | * Remove unused `EditorPropertyMember` and related hints, previouly used by VisualScript. Such logic should be implemented in the VS module itself. * As the above broke compatibility with the VS module, clean up the other hacks that were still in core in support of VisualScript. * `PROPERTY_USAGE_INTERNATIONALIZED` was only used in Object's `get_translatable_strings()`, which is a legacy function not used anywhere. So both are removed. * Reordered some usage flags after the above removal to minimize the diff. * General clean up. Fixes #30203. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
* One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* Move Shortcut Context to Control and ensure that `shortcut_input` adheres to ↵Eric M2022-10-131-5/+0
| | | | contexts. Also ensure that controls with no context are only triggered AFTER nodes which do have a context.
* Add a lifecycle method for manual theme item caching to ControlYuri Sizov2022-09-011-0/+28
|
* Fix switching `MenuBar`'s menus with the keys while mouse hoveringMichael Alexsander2022-08-301-0/+1
|
* Add item auto-highlighting to `MenuBar`Michael Alexsander2022-08-281-1/+1
|
* Implement `MenuBar` control to wrap `PopupMenu`s or native menu, use native ↵bruvzg2022-08-181-0/+156
menu for editor.