summaryrefslogtreecommitdiffstats
path: root/scene/gui/base_button.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@cb411fa960f0b7fdbd97dcdb4c90f9346360ee0eSpartan3222024-11-121-0/+1
|\
| * Fix `Button` minimum size when `disabled` is toggled.Mounir Tohami2024-10-071-0/+1
| |
* | Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| |
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
|/ | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* Make _make_custom_tooltip receive raw tooltip for buttons with shortcut enabledHaoyu Qiu2024-09-261-9/+25
|
* Merge pull request #93500 from anniryynanen/multi-pressRémi Verschelde2024-09-161-7/+3
|\ | | | | | | Improve button behavior when multiple mouse buttons are used at the same time
| * Improve button behavior when multiple mouse buttons are used at the same timeAnni Ryynänen2024-09-151-7/+3
| | | | | | | | | | | | - To emit `pressed`, buttons require that the press was initiated while hovering. - Controls can't grab focus from a mouse click if they're not hovered. - Hovers are updated both before and after a handled mouse button event.
* | [Scene] Add SceneStringName::toggledYuri Rubinsky2024-08-281-1/+1
|/
* [Scene] Add SceneStringNames::pressedA Thousand Ships2024-05-141-4/+4
|
* Use Core/Scene stringnames consistentlykobewi2024-05-131-1/+0
|
* Revert "Update Node::get_configuration_warnings signature"Rémi Verschelde2024-02-171-2/+2
| | | | This reverts commit d3852deaa450d77edb30df2bb1c77bd7bc45befc.
* Update Node::get_configuration_warnings signatureRedMser2024-02-081-2/+2
|
* Fix BaseButton.shortcut_feedback's timer raises errorsjsjtxietian2023-10-251-1/+1
| | | | when a button is removed from the scene tree
* Rename button_pressed bindings to avoid shadowingMewPurPur2023-07-051-2/+2
|
* Fix ButtonGroup unpressingMarkus Sauermann2023-06-161-5/+3
| | | | | | | It was possible to unpress a button group that had `allow_unpress = false` using shortcuts. Adjust `BaseButton::shortcut_input` to use the same logic as `BaseButton::on_action_event`.
* Add option for ButtonGroups to be unpressedTheSecondReal02023-04-201-1/+12
| | | | | | | | | | Add an option for ButtonGroups to be unpressed Apply suggestions from code review Co-Authored-By: Tomek <kobewi4e@gmail.com> Co-Authored-By: Yuri Rubinsky <chaosus89@gmail.com> Co-Authored-By: kleonc <9283098+kleonc@users.noreply.github.com>
* Add more sections to Button and BaseButtonVolTer2023-01-251-2/+4
|
* Fix constant editor redraw after shortcutJuan Linietsky2023-01-211-0/+1
| | | | Introduced by me by mistake on #71328. Fixes #71652.
* Button shortcuts no longer "press" the Button.Juan Linietsky2023-01-131-22/+53
| | | | | | | | * Button shortcuts were treated as generic input events on buttons. This means that to activate a button shortcut you had to press and release. * This logic is removed and now shortcuts always activate on press. * This makes the editor feel more responsive and solves problems related to this behavior. Fixes #45033 and possibly others.
* Use BitField<> in core type masksJuan Linietsky2023-01-081-3/+3
| | | | | | | | * All core types masks are now correctly marked as bitfields. * The enum hacks in MouseButtonMask and many other types are gone. This ensures that binders to other languages non C++ can actually implement type safe bitmasks. * Most bitmask operations replaced by functions in BitField<> * Key is still a problem because its enum and mask at the same time. While it kind of works in C++, this most likely can't be implemented safely in other languages and will have to be changed at some point. Mostly left as-is. * Documentation and API dump updated to reflect bitfields in core types.
* 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".
* Add configuration warning when ButtonGroup is used with non-toggleable buttonsMarkus Sauermann2022-12-221-0/+12
| | | | Also fix ambiguous documentation of ButtonGroup.
* Merge pull request #68097 from KoBeWi/no_signal🔕Rémi Verschelde2022-11-041-7/+4
|\ | | | | | | Add `set_value_no_signal()` to Range
| * Add set_value_no_signal() to Rangekobewi2022-10-311-7/+4
| |
* | Make `BaseButton` Shortcut feedback togglableGeorge L. Albany2022-10-201-1/+18
|/
* Merge pull request #66337 from EricEzaM/sprite-framesRémi Verschelde2022-10-131-1/+1
|\ | | | | | | Ensure control built-in shortcuts are matched exactly & add shortcuts for SpriteFrames editor
| * Ensure all checks of `is_action` in the editor which are for 'shortcut' use, ↵Eric M2022-09-241-1/+1
| | | | | | | | check the action exactly.
* | Move Shortcut Context to Control and ensure that `shortcut_input` adheres to ↵Eric M2022-10-131-36/+0
| | | | | | | | contexts. Also ensure that controls with no context are only triggered AFTER nodes which do have a context.
* | Fix MSVC warning C4702: unreachable codeRémi Verschelde2022-09-281-5/+2
|/ | | | Part of #66537.
* Fix #66062: editing shortcut_context in inspectorRedMser2022-09-191-1/+1
|
* Rename `CanvasItem.update()` to `queue_redraw()`Micky2022-08-291-12/+12
| | | | | | | | | | Affects a lot of classes. Very thoroughly checked signal connections and deferred calls to this method, add_do_method/add_undo_method calls, and so on. Also renames the internal `_update_callback()` to `_redraw_callback()` for consistency. Just a few comments have also been changed to say "redraw". In CPUParticles2D, there was a private variable with the same name. It has been renamed to `do_redraw`.
* Fix some corner cases in the `Menu/OptionButton` item auto-highlightMichael Alexsander2022-08-281-1/+2
|
* Merge pull request #64635 from YeldhamDev/menu_buttons_popup_fixRémi Verschelde2022-08-241-0/+6
|\ | | | | Make `Menu/OptionButton` item auto-highlight behave better
| * Make `Menu/OptionButton` item auto-highlight behave betterMichael Alexsander2022-08-191-0/+6
| |
* | Replace Array return types with TypedArraykobewi2022-08-221-2/+2
|/
* Use range iterators for RBSet in most casesAaron Record2022-05-191-10/+10
|
* Replace most uses of Map by HashMapreduz2022-05-161-4/+4
| | | | | | | | | | | | * Map is unnecessary and inefficient in almost every case. * Replaced by the new HashMap. * Renamed Map to RBMap and Set to RBSet for cases that still make sense (order matters) but use is discouraged. There were very few cases where replacing by HashMap was undesired because keeping the key order was intended. I tried to keep those (as RBMap) as much as possible, but might have missed some. Review appreciated!
* [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-2/+2
|
* Use `switch` consistently in `_notification` (`scene` folder)Rémi Verschelde2022-02-151-30/+38
|
* Remove get_focus_owner() from Control, replaced by ↵Gilles Roudière2022-02-031-1/+1
| | | | get_viewport()->gui_get_focus_owner()
* Improve some signal bindings to use specific `Object` subtypesRémi Verschelde2022-01-281-1/+3
|
* Allow unsetting `shortcut_context`.bruvzg2022-01-251-2/+5
|
* BaseButton: Rename `pressed` property to `button_pressed`Rémi Verschelde2022-01-231-1/+1
| | | | | | | | | This fixes a conflict with the `pressed` signal. The new name is temporary and only intended to solve the conflict for upcoming alpha builds. Discussions are still ongoing regarding the BaseButton API and how to rename and refactor more of its properties, signals and methods to have a clearer API in 4.0.
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Fix BaseButton's localization for tooltip with shortcutZae2021-12-211-1/+1
|
* Replace String comparisons with "", String() to is_empty()Nathan Franke2021-12-091-1/+1
| | | | | | Also: - Adds two stress tests to test_string.h - Changes to .empty() on std::strings
* Use "enum class" for input enumsAaron Franke2021-11-121-3/+3
|
* Entirely removes BIND_VMETHOD in favor of GDVIRTUALreduz2021-08-231-4/+2
| | | | | | | | * `_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.
* Replace BIND_VMETHOD by new GDVIRTUAL syntaxreduz2021-08-221-8/+4
| | | | | | | | | | | * New syntax is type safe. * New syntax allows for type safe virtuals in native extensions. * New syntax permits extremely fast calling. Note: Everything was replaced where possible except for `_gui_input` `_input` and `_unhandled_input`. These will require API rework on a separate PR as they work different than the rest of the functions. Added a new method flag METHOD_FLAG_OBJECT_CORE, used internally. Allows to not dump the core virtuals like `_notification` to the json API, since each language will implement those as it is best fits.