summaryrefslogtreecommitdiffstats
path: root/scene/gui/menu_button.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Treat `MenuBar` and `MenuButton` as advanced UIA Thousand Ships2024-08-281-3/+0
|
* Always store ID of PopupMenu itemskobewi2024-08-201-1/+1
|
* [Tests] Fix various unit tests on minimal buildsA Thousand Ships2024-07-181-0/+3
|
* Fix a bunch of orphan StringName errors at ProjectSettings/Editor exitYuri Rubinsky2024-07-091-0/+1
|
* Fix PropertyListHelper::_get_property returning a valid value even if an ↵Gilles Roudière2024-05-101-0/+1
| | | | | | index is outside the array valid indices Co-authored-by: Tomasz Chabora <kobewi4e@gmail.com>
* Add PropertyListHelper in all simple caseskobewi2024-04-111-35/+19
|
* Make auto translation inheritableMichael Alexsander2024-02-151-4/+0
|
* Fix `MenuBar` hover position scaling properly with the scale factor multiplierEmmanouil Papadeas2024-01-241-20/+2
|
* Add option to allow echo events in menu shortcutsTomasz Chabora2023-08-161-1/+1
|
* Fix position and size of MenuButton popupMarkus Sauermann2023-06-151-7/+6
| | | | Use the same logic as in OptionButton::show_popup
* Remove unused variable `PopupMenu::parent_rect`Markus Sauermann2023-06-151-1/+0
| | | | | This private variable is not read anywhere. Remove it and all places, where it is set.
* Auto translate popup menus of MenuButton and OptionButtonHaoyu Qiu2023-03-271-0/+4
| | | | | | Currently, `auto_translate` property of a `MenuButton` or `OptionButton` won't affect its popup menu. It's okay if you want to auto translate, but requires extra setup if you don't.
* 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-4/+0
| | | | contexts. Also ensure that controls with no context are only triggered AFTER nodes which do have a context.
* Fix MSVC warnings, rename shadowed variables, fix uninitialized values, ↵bruvzg2022-10-071-10/+10
| | | | change warnings=all to use /W4.
* Improve MenuButton and OptionButtonEricEzaM2022-10-031-16/+18
| | | | | * MenuButton + OptionButton: Add method `show_popup()` which performs required popup setup before showing (prefer use of this over `get_popup()->popup()`, otherwise GH #66308 occurs) * MenuButton: Ensure that the menu can be opened with a shortcut, if one is set for the button. (GH #66403). Ensure that popupmenu item shortcuts are checked first before the MenuButton shortcut.
* Rename `PopupMenu`'s `set/get_current_index()` to `set/get_focused_item()`Michael Alexsander2022-09-061-2/+2
|
* Fix some corner cases in the `Menu/OptionButton` item auto-highlightMichael Alexsander2022-08-281-3/+11
|
* Merge pull request #64768 from bruvzg/popups_hide_if_visibleRémi Verschelde2022-08-261-5/+6
|\
| * Hide MenuButton / OptionButton popup on click if it's already visible.bruvzg2022-08-231-5/+6
| |
* | Merge pull request #64635 from YeldhamDev/menu_buttons_popup_fixRémi Verschelde2022-08-241-3/+1
|\ \ | | | | | | Make `Menu/OptionButton` item auto-highlight behave better
| * | Make `Menu/OptionButton` item auto-highlight behave betterMichael Alexsander2022-08-191-3/+1
| |/
* / Add some codes, returnes directly if the value is not changed.风青山2022-08-231-0/+5
|/ | | | Avoid executing the following value-changed logics if the value does not really change.
* Implement `MenuBar` control to wrap `PopupMenu`s or native menu, use native ↵bruvzg2022-08-181-1/+5
| | | | menu for editor.
* Remove Signal connect bindsJuan Linietsky2022-07-291-2/+2
| | | | | Remove the optional argument p_binds from `Object::connect` since it was deprecated by Callable.bind(). Changed all uses of it to Callable.bind()
* Capitalize/fix some property enum hintsFireForge2022-05-121-1/+1
|
* [Input] Add extra `shortcut_input` input processing step to process Unicode ↵bruvzg2022-04-051-2/+2
| | | | character input with Alt / Ctrl modifiers, after processing of shortcuts.
* Fix typo in BaseButton shortcut context methodsHugo Locurcio2022-03-071-1/+1
|
* Add optional constructor arguments to more Control nodesHugo Locurcio2022-03-041-1/+2
| | | | | | | | | This can be used to make editor code more compact. However, as of writing, these constructor arguments cannot be used from the scripting API. This was already provided for Label and CheckBox, but it was missing for other Control nodes where it made sense to provide a default value.
* Use `switch` consistently in `_notification` (`scene` folder)Rémi Verschelde2022-02-151-0/+2
|
* Make popups from `MenuButton`, `OptionButton`, and submenus obey the layout ↵Michael Alexsander2022-02-061-0/+3
| | | | direction
* Make popup menus focus items automatically when not using the mouseMichael Alexsander2022-01-251-1/+7
|
* Merge pull request #54647 from rafallus/fix/popupmenu_idsRémi Verschelde2022-01-081-1/+1
|\ | | | | Fix `PopupMenu` items id range in inspector
| * Fix `PopupMenu` items id range in inspectorrafallus2022-01-071-1/+1
| |
* | Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | | | | | Happy new year to the wonderful Godot community!
* | Rename "items_count" property to "item_count"Aaron Franke2021-12-061-1/+1
|/
* Add missing argument names for bindings in GDExtensionRémi Verschelde2021-11-041-1/+1
|
* Implement inspector property array for `PopupMenu` and `MenuButton`rafallus2021-11-031-11/+63
|
* Fix RTL layout Label text, VBox child, 3D node editor controls, and popup ↵bruvzg2021-09-211-3/+5
| | | | menu alignment.
* Merge pull request #49376 from menip/OptionButtonFixRémi Verschelde2021-09-171-3/+3
|\
| * Make Color Picker, Menu Button, Option Button consider camera position scale ↵menip2021-08-301-3/+3
| | | | | | | | for popup position.
* | Add support for internal nodeskobewi2021-08-281-1/+1
|/
* Entirely removes BIND_VMETHOD in favor of GDVIRTUALreduz2021-08-231-3/+3
| | | | | | | | * `_gui_input`, `_input`, `_unhandled_input` and `_unhandled_key_input` are now regular C++ virutal functions. * Everything else converted to GDVIRTUAL * BIND_VMETHOD is gone, always use the new syntax from now on. Creating `_gui_input` method and using the binder to register events will no longer work, simply override the virtual function now.
* Fix MenuButton not emitting about_to_popup signalHaoyu Qiu2021-08-161-0/+1
|
* Added EditorCommandPaletteBhuvan Vemula2021-08-091-1/+1
|
* Make `switch_on_hover` work on embedded windowsMichael Alexsander2021-07-261-12/+33
|
* Make `MenuButton`'s `switch_on_hover` work againMichael Alexsander2021-07-221-6/+27
|
* Fix crashes in *_input functionsRafał Mikrut2021-04-051-0/+2
|
* Initialize class variables with default values in scene/ [2/2]Rafał Mikrut2021-02-091-1/+0
|
* Update copyright statements to 2021Rémi Verschelde2021-01-011-2/+2
| | | | | | | | | | | | | | Happy new year to the wonderful Godot community! 2020 has been a tough year for most of us personally, but a good year for Godot development nonetheless with a huge amount of work done towards Godot 4.0 and great improvements backported to the long-lived 3.2 branch. We've had close to 400 contributors to engine code this year, authoring near 7,000 commit! (And that's only for the `master` branch and for the engine code, there's a lot more when counting docs, demos and other first-party repos.) Here's to a great year 2021 for all Godot users 🎆