summaryrefslogtreecommitdiffstats
path: root/editor/editor_command_palette.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Use InputMap actions consistently across all LineEdit's that filter an ↵Marius Hanl2024-08-311-12/+7
| | | | | | | | | underlying Tree or ItemList. - Instead of checking for Key::UP, Key::DOWN, Key::PAGEUP, Key::PAGEDOWN etc., we rather check for the action like 'ui_up' or 'ui_down'. - Also use AcceptDialog's 'register_text_enter' functionality to consistently close a dialog when ENTER is pressed while the LineEdit has focus (instead of redirecting ENTER keys to e.g. the underlying Tree). - Unify the LineEdit filter behavior for the SceneTreeDialog and corresponding usages - Improve OK Button disablement (something should be selected)
* [Scene] Add `SceneStringNames::text/value_changed`A Thousand Ships2024-06-191-1/+1
|
* [Scene] Add `SceneStringNames::confirmed`A Thousand Ships2024-06-191-1/+1
|
* [Scene] Add `SceneStringNames::item_selected`A Thousand Ships2024-06-191-1/+1
|
* [Scene] Add `SceneStringNames::font(_size/_color)`A Thousand Ships2024-06-181-1/+1
|
* Use Core/Scene stringnames consistentlykobewi2024-05-131-1/+1
|
* Fix PopupMenu doesn't respect it's ScrollContainer's marginsMounir Tohami2024-02-231-0/+1
|
* Replace error checks against `size` with `is_empty`A Thousand Ships2024-02-091-1/+1
|
* Reorganize code related to editor themingYuri Sizov2024-01-161-1/+1
| | | | | | | | | | | | | This change introduces a new EditorThemeManager class to abstract theme generatio and its subroutines. Logic related to EditorTheme, EditorColorMap, and editor icons has been extracted into their respective files with includes cleaned up. All related files have been moved to a separate folder to better scope them in the project. This includes relevant generated files as well.
* Merge pull request #86727 from KoBeWi/shortcut_revolutionRémi Verschelde2024-01-091-8/+24
|\ | | | | | | Update modified shortcuts in command palette
| * Update modified shortcuts in command palettekobewi2024-01-021-8/+24
| |
* | Removed unused code related to command paletteRobert Yevdokimov2024-01-021-2/+0
|/
* Fix theme application in various editor dialogsYuri Sizov2023-12-041-7/+6
| | | | | | 99% of the time we shouldn't rely on the signal, we should use the notification instead. I left some comments in places where I couldn't quickly improve the code.
* Add call validation to CommandPalettekobewi2023-09-251-4/+13
|
* Allow editor commands to have multiple default commandsKevin Cardona2023-09-161-0/+10
|
* Add EditorStringNames singletonkobewi2023-09-031-4/+5
|
* Merge pull request #57894 from Sauermann/fix-subviewport-1Rémi Verschelde2023-05-091-2/+2
|\ | | | | | | Fix unrestricted mouse-event propagation to SubViewports for Physics-Picking
| * Move call of `push_unhandled_input` from `Window` to `Viewport`Markus Sauermann2023-03-171-2/+2
| | | | | | | | | | | | | | | | | | This solves the problem, that mouse events get sent to SubViewports even if they are outside of the visible area of the SubViewport. This changes makes SubViewportContainer::unhandled_input redundand. Shortcut Events now need to be distributed via push_input, in order for them to be able to reach SubViewports.
* | Command Palette search now also uses original English command namesTefatika2023-04-281-2/+8
|/ | | | | | | Both localized and non localized names will be used while filtering The highest score between the two will be picked when determining the entries order
* 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".
* Fix new quick open dialog to be showed at the center of the screenYuri Rubinsky2022-12-021-5/+17
|
* Fix Quick Open window to use EDSCALE and save the size between popupsYuri Rubinsky2022-11-231-1/+7
|
* Add call_deferred() method to Callablekobewi2022-11-041-1/+1
|
* Command Palette shortcut_text: font colorEliasVincent2022-09-161-1/+1
|
* Extract EditorResourceConversionPlugin into its own source files and clean ↵Yuri Sizov2022-07-311-0/+1
| | | | up editor includes
* Remove Signal connect bindsJuan Linietsky2022-07-291-4/+4
| | | | | Remove the optional argument p_binds from `Object::connect` since it was deprecated by Callable.bind(). Changed all uses of it to Callable.bind()
* Use consistent casing in editor filter/search barsFireForge2022-05-281-1/+1
|
* Replace most uses of Map by HashMapreduz2022-05-161-1/+1
| | | | | | | | | | | | * 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!
* Add a new HashMap implementationreduz2022-05-121-20/+16
| | | | | | | | | | | | | | | | | Adds a new, cleaned up, HashMap implementation. * Uses Robin Hood Hashing (https://en.wikipedia.org/wiki/Hash_table#Robin_Hood_hashing). * Keeps elements in a double linked list for simpler, ordered, iteration. * Allows keeping iterators for later use in removal (Unlike Map<>, it does not do much for performance vs keeping the key, but helps replace old code). * Uses a more modern C++ iterator API, deprecates the old one. * Supports custom allocator (in case there is a wish to use a paged one). This class aims to unify all the associative template usage and replace it by this one: * Map<> (whereas key order does not matter, which is 99% of cases) * HashMap<> * OrderedHashMap<> * OAHashMap<>
* Rename String::is_subsequence_ofi to String::is_subsequence_ofnWilson E. Alvarez2022-01-261-1/+1
|
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* 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
* align to horizontal_alignment, valign to vertical_alignment, relatedNathan Franke2021-12-091-1/+1
|
* Use "enum class" for input enumsAaron Franke2021-11-121-4/+4
|
* Fix command history for plugin commandskobewi2021-10-191-1/+9
|
* Merge pull request #51920 from ↵Rémi Verschelde2021-09-231-3/+3
|\ | | | | | | jmb462/missing-sname-macro-optimization-in-some-functions
| * Add missing SNAME macro optimization for StringName in some functionsjmb4622021-08-201-3/+3
| |
* | Sort palette commands by last usekobewi2021-08-311-0/+27
| |
* | 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.
* Minor tweaks/fixes for the Command PaletteMichael Alexsander2021-08-181-50/+52
|
* command palette improvementsBhuvan Vemula2021-08-151-35/+33
|
* Use Key enum instead of plain integersAaron Franke2021-08-101-1/+3
|
* Added EditorCommandPaletteBhuvan Vemula2021-08-091-0/+300