summaryrefslogtreecommitdiffstats
path: root/editor/connections_dialog.h
Commit message (Collapse)AuthorAgeFilesLines
* 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>
* Editor: Display deprecated/experimental messages in tooltipsDanil Alexeev2024-04-181-1/+1
|
* Select method name edit when opening connection dialogkobewi2024-03-121-1/+1
|
* Add const lvalue ref to editor/* container parametersMuller-Castro2024-02-261-2/+2
|
* Merge pull request #88317 from passivestar/signal-connect-searchRémi Verschelde2024-02-171-0/+2
|\ | | | | | | Add support for search shortcut to signal connection dialog
| * Add support for search shortcut to signal connection dialogpassivestar2024-02-141-0/+2
| |
* | Disable signal callback generation in C#Paul Joannon2024-02-141-0/+2
|/
* Fixing a usability issue where the DEL key does not delete connectionsMadalaski2024-01-171-1/+1
|
* Show doc tooltips when hovering properties in the theme editorMichael Alexsander2023-10-041-2/+1
|
* Revamp how documentation tooltips workMichael Alexsander2023-10-031-2/+0
|
* Editor: Inspector and Signal docks improvementsDanil Alexeev2023-09-021-12/+25
|
* Editor: Signal Connection Dock improvementsDanil Alexeev2023-08-291-1/+2
|
* Improve includes of EditorNode (and everything else)Yuri Sizov2023-04-071-11/+9
| | | | | | Also start organizing editor-specific GUI components into a dedicated folder, `editor/gui`. Also move `editor_file_server` next to the rest of debugger classes.
* Improve Connect Dialog navigationkobewi2023-02-061-0/+2
|
* Improve Connection Dialog method listkobewi2023-01-291-1/+2
|
* Merge pull request #71883 from MinusKube/script-editor-members-real-bugRémi Verschelde2023-01-261-5/+9
|\ | | | | | | Remove coupling between ConnectDialog and selected signal
| * Remove coupling between ConnectDialog and selected signalMinusKube2023-01-261-5/+9
| |
* | Connection dialog tweakskobewi2023-01-261-0/+2
| |
* | Add method picker to signal connect dialogkobewi2023-01-241-1/+15
|/ | | | Co-authored-by: Sam Pengilly <sam.pengilly@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".
* Fix crash in connection dialogkobewi2022-11-021-3/+0
|
* Merge pull request #66665 from Mickeon/editor-do-not-edit-inherited-signalsRémi Verschelde2022-10-141-0/+3
|\ | | | | | | Do not allow editing Scene-inherited signal connections
| * Do not allow editing Scene-inherited signal connectionsMicky2022-10-131-0/+3
| | | | | | | | Inherited connections are also highlighted with the warning color in the Node dock.
* | Add Editor Setting for default name when connecting signal to selfMicky2022-10-091-0/+1
|/
* Remember advanced state of connection dialogkobewi2022-09-251-0/+1
|
* Rename AnimatedTexture `oneshot` to `one_shot`Micky2022-09-011-2/+2
| | | | | | AnimatedTexture.`oneshot` -> `one_shot` For consistency. Every other exposed `one_shot` is spaced out like this.
* Merge pull request #64573 from KoBeWi/signal_name_plagiarismRémi Verschelde2022-08-261-2/+3
|\ | | | | Add "Copy Name" option to signal menu
| * Add "Copy Name" option to signal menukobewi2022-08-181-2/+3
| |
* | Add per-scene UndoRedokobewi2022-08-221-3/+3
|/
* Remove Signal connect bindsJuan Linietsky2022-07-291-1/+1
| | | | | Remove the optional argument p_binds from `Object::connect` since it was deprecated by Callable.bind(). Changed all uses of it to Callable.bind()
* Add the button pressed to some signals in Treetrollodel2022-05-211-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!
* Style: Partially apply clang-tidy's `cppcoreguidelines-pro-type-member-init`Rémi Verschelde2022-05-021-1/+1
| | | | | | | | | | | Didn't commit all the changes where it wants to initialize a struct with `{}`. Should be reviewed in a separate PR. Option `IgnoreArrays` enabled for now to be conservative, can be disabled to see if it proposes more useful changes. Also fixed manually a handful of other missing initializations / moved some from constructors.
* Zero initialize all pointer class and struct membersRémi Verschelde2022-04-041-25/+25
| | | | | This prevents the pitfall of UB when checking if they have been assigned something valid by comparing to nullptr.
* Fix Callable::bind usage in connections_dialog.h and packed_scene.cppC.Even2022-03-291-2/+5
| | | | | * Callable::bind takes an array of pointers to Variant * Fixes #57057
* Editor: Cleanup some includes dependenciesRémi Verschelde2022-02-151-2/+5
| | | | | | | | | | | Removes some unnecessary includes from `editor_node.h`, and instead add those where they're used. Removes unnecessary `editor_node.h` includes in various editor classes. Renames `dynamicfont` to `dynamic_font` in a couple files. Misc cleanup while jumping through that rabbit hole.
* Remove most EditorNode constructor parameters and fieldstrollodel2022-02-141-2/+1
|
* Merge pull request #56492 from akien-mga/remove-author-docstringsRémi Verschelde2022-01-121-5/+1
|\
| * Style: Remove inconsistently used `@author` docstringsRémi Verschelde2022-01-041-5/+1
| | | | | | | | | | | | | | | | | | | | Each file in Godot has had multiple contributors who co-authored it over the years, and the information of who was the original person to create that file is not very relevant, especially when used so inconsistently. `git blame` is a much better way to know who initially authored or later modified a given chunk of code, and most IDEs now have good integration to show this information.
* | Add Default Callback Name editor settingDanil Alexeev2022-01-041-13/+13
|/ | | | | | Adds the "interface/editors/default_signal_callback_name" editor setting, which allows you to specify the format of the default callback name in the Signal Connection Dialog.
* Merge pull request #53313 from KoBeWi/debinded_konnektRémi Verschelde2022-01-041-12/+37
|\
| * Add support for unbinding in connection dialogkobewi2021-10-041-12/+37
| |
* | Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
|/ | | | Happy new year to the wonderful Godot community!
* Documentation search fixesGregory Basile2021-06-161-1/+1
| | | | | | Updates rich_text_label so that the built-in documentation can be searched Previously, it would only find the first result and would not select other results Renames "_entered" functions to "_submitted"
* 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 🎆
* Reorganized core/ directory, it was too fatty alreadyreduz2020-11-071-1/+1
| | | | | | -Removed FuncRef, since Callable makes it obsolete -Removed int_types.h as its obsolete in c++11+ -Changed color names code
* Added search box to signals dock.Eric M2020-08-081-0/+3
| | | | Also made localised code changes for better documentation and readability.
* Add override keywords.Marcel Admiraal2020-07-101-1/+1
|
* Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocksRémi Verschelde2020-05-141-3/+0
| | | | | | | | | | | | | | Which means that reduz' beloved style which we all became used to will now be changed automatically to remove the first empty line. This makes us lean closer to 1TBS (the one true brace style) instead of hybridating it with some Allman-inspired spacing. There's still the case of braces around single-statement blocks that needs to be addressed (but clang-format can't help with that, but clang-tidy may if we agree about it). Part of #33027.