summaryrefslogtreecommitdiffstats
path: root/editor/editor_properties_array_dict.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>
* Implement typed dictionariesThaddeus Crews2024-09-041-2/+10
|
* Remove empty bind_methods()kobewi2024-08-151-3/+0
|
* Fix Object encoded as id in dictionnaries to be represented as int in the ↵ajreckof2024-07-221-0/+1
| | | | inspector.
* Editor: Focus value editor on type change in Dictionary and Array editorsValentin Cocaud2024-06-041-3/+8
|
* Add colored margin in Inspector for arrays and dictionaries.ajreckof2024-05-031-2/+4
| | | | | | | Apply suggestions from code review Co-Authored-By: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Co-Authored-By: Tomek <kobewi4e@gmail.com>
* Editor: Display deprecated/experimental messages in tooltipsDanil Alexeev2024-04-181-0/+1
|
* Allow batch drag and drop in typed array of Node and NodePath.AeioMuch2024-04-061-0/+2
|
* Fix update property for dictionnaries so that it updates only what is necessaryajreckof2024-03-211-2/+41
|
* Add const lvalue ref to editor/* container parametersMuller-Castro2024-02-261-1/+1
|
* Rework update_property for array.ajreckof2023-12-211-5/+21
| | | | | | Apply suggestions from code review Co-Authored-By: Tomek <kobewi4e@gmail.com>
* Improve includes of EditorNode (and everything else)Yuri Sizov2023-04-071-2/+3
| | | | | | 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.
* GDScript: Fix issues with typed arraysDmitrii Maganov2023-01-311-0/+2
|
* Merge pull request #70540 from vaartis/multiline-arrays-dictionariesRémi Verschelde2023-01-131-0/+2
|\ | | | | | | Implement export_multiline support for Array[String] and Dictionary
| * Implement export_multiline support for Array[String] and DictionaryEkaterina Vaartis2022-12-251-0/+2
| | | | | | | | | | | | | | | | For arrays, specifically check if it's a string array and pass the type on to the editor. For dictionaries, save the hint on the type and use it later to draw the multiline editor, except for when adding a string key, because that doesn't make much sense. All string values however will be drawn as multiline.
* | 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 various uninitialized member pointersRémi Verschelde2022-09-061-1/+1
| | | | | | | | | | Using this command: ``` find -name "thirdparty" -prune -o -name "*.h" -exec sed -i {} -e '/return /! s/\t\([A-Za-z0-9_]* \*[A-Za-z0-9_]*\)\;/\t\1 = nullptr;/g' \; ``` And then reviewing the changes manually to discard the ones that don't seem correct/safe/good (notably changes to `core` unions).
* Implement support for loading system fonts on Linux, macOS / iOS and Windows.bruvzg2022-07-261-17/+20
|
* Add margins to Array and Dictionary editorsFireForge2022-06-111-4/+4
|
* Zero initialize all pointer class and struct membersRémi Verschelde2022-04-041-21/+21
| | | | | This prevents the pitfall of UB when checking if they have been assigned something valid by comparing to nullptr.
* Initialize bools in the headers in editorAaron Franke2022-03-121-3/+3
|
* Improve app name and system permission message localization.bruvzg2022-03-041-0/+36
| | | | | | | Add localizable string (Dictionary<Lang Code, String>) property editor and property hint. Add localized "app name" property to the project settings. Add localized permission and copyright properties to the macOS and iOS export settings. Remove some duplicated ("app name") and deprecated ("info") macOS and iOS export properties.
* Unify array, dictionary, and inspector array editorsFireForge2022-02-091-6/+8
|
* Add type icons to Project Settings, Array, and Dictionary editorsfire5402022-02-031-0/+1
|
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Add the ability to reorder arrays from the inspectorLightning_A2021-07-111-12/+22
|
* Rename Reference to RefCountedPedro J. Estébanez2021-06-111-4/+4
|
* Increase the page size for array/dictionary editors to 20Hugo Locurcio2021-02-121-4/+4
| | | | | | | | | | | | With smaller arrays/dictionaries, this makes it possible to view all of an array/dictionary's items on a single page. Larger values could be used, but make switching between node selections quite slow, especially on low-end CPUs. They could also be problematic with complex resource inspectors for arrays/dictionaries that contain Resources. This closes https://github.com/godotengine/godot-proposals/issues/2058.
* 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 🎆
* Add override keywords.Marcel Admiraal2020-07-101-2/+2
|
* Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocksRémi Verschelde2020-05-141-2/+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.
* Added properties and methods to allow for dragging and dropping multiple ↵Eric M2020-04-181-0/+7
| | | | files onto exported arrays.
* Signals: Don't pass default binds to EditorProperty property_changedRémi Verschelde2020-03-051-2/+2
| | | | | | | | | | | | | | | | This was done by mistake in #36758, but it's not necessary and actual causes a bug. `property_changed` is only emitted via `emit_changed()`, which already has default values for `p_field` and `p_changing`. Also reverted to using `String` for now to be on the safe side, even if it's inconsistent with `emit_changed()`. I had only changed it partially in #36758 so it was inconsistent. It probably does make sense to port `EditorInspector` and related property editors to use `StringName` where relevant, but that's for a dedicated PR. Fixes #36799.
* Signals: Fix some regressions from #36426Rémi Verschelde2020-03-031-4/+4
| | | | | | | | - Fix `callable_mp` bindings to methods which used to have default arguments passed to `bind_method`. We now have to re-specify them manually when connecting. - Re-add `GroupsEditor::update_tree` binding. - Misc code quality changes along the way.
* Update copyright statements to 2020Rémi Verschelde2020-01-011-2/+2
| | | | | | | | | | | Happy new year to the wonderful Godot community! We're starting a new decade with a well-established, non-profit, free and open source game engine, and tons of further improvements in the pipeline from hundreds of contributors. Godot will keep getting better, and we're looking forward to all the games that the community will keep developing and releasing with it.
* Merge pull request #29656 from nhold/add-remove-option-array-inspectorRémi Verschelde2019-07-021-0/+1
|\ | | | | Add buttons to remove keys\items from dictionaries\arrays.
| * Add option to remove array item and button to remove typed array itemNathan Hold2019-07-021-0/+1
| |
* | Made use of semicolons more consitent, fixed formattingJohnJLight2019-06-191-2/+2
|/
* Clean up and fix issues after merging #21701 , closes #21104Juan Linietsky2019-01-181-2/+2
|
* Update copyright statements to 2019Rémi Verschelde2019-01-011-2/+2
| | | | Happy new year to the wonderful Godot community!
* Arrays now parse the hint_string in the new inspector.MrCdK2018-12-031-1/+4
| | | | Also, if a hint_string is given, when changing the size of an Array the new elements are initialized to the default value of that type hint.
* Ensure array and dict editors show edited object IDs, fixes #20225Juan Linietsky2018-11-211-0/+3
|
* Add missing copyright headersRémi Verschelde2018-08-291-0/+30
|
* Fix args count mismatch in property_changed signalPoommetee Ketson2018-08-191-2/+2
| | | | ...when editing Dictionary/Array property
* Add proper type information to array propertyBojidar Marinov2018-06-181-0/+2
| | | | Part of #19158
* Dictionary editing support in inspectorJuan Linietsky2018-05-191-0/+58
|
* Dictionary editing does the comeback to the inspector, fixes #19046Juan Linietsky2018-05-191-0/+57