summaryrefslogtreecommitdiffstats
path: root/editor/gui
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | Rebrand Godot to RedotRandolph W. Aarseth II2024-10-111-1/+1
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add Linux Editor tests workflow matrix Add Windows Editor w/ Mono workflow matrix Add Generate Glue Code job to Windows workflow Add Build GodotSharp job to Windows workflow Add godot compatibility version references Add Godot author info Add Godot version compatibility info Add Godot donor info Add Godot authors and donors to editor_about.cpp 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>
* | | Merge pull request #97820 from passivestar/quick-open-bgRémi Verschelde2024-10-041-1/+1
|\ \ \ | | | | | | | | | | | | Fix quick open background panel style
| * | | Fix quick open background panel stylepassivestar2024-10-051-1/+1
| | | |
* | | | Merge pull request #95544 from KoBeWi/clean_code™Rémi Verschelde2024-10-041-20/+24
|\ \ \ \ | |/ / / |/| | | | | | | Misc code cleanup in EditorFileDialog
| * | | Misc code cleanup in EditorFileDialogkobewi2024-08-151-20/+24
| | | |
* | | | Merge pull request #80473 from KoBeWi/they're_the_same_pictureRémi Verschelde2024-10-032-4/+6
|\ \ \ \ | | | | | | | | | | | | | | | Unify make dir and duplicate dialogs
| * | | | Unify make dir and duplicate dialogskobewi2024-10-022-4/+6
| | |_|/ | |/| |
* | | | Fix crash in QuickOpenDialog because of double free.Stijn Hinlopen2024-10-022-9/+12
| | | |
* | | | New Quick Open DialogStijn Hinlopen2024-10-014-13/+1196
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Updated list view with thumbnails, and separate file name. - Added a grid view which has larger icons. - Added toggle to filter out files from addons. - Store history for each opened resource type. New Editor settings for Quick Open: - Startup display mode (grid or list): - Determined by the requested resource type. - Whatever was last used. - Toggle to filter out files from addons (for persistence). Notes - The dialog is now created once in EditorNode, and globally available for other components. - A fixed number of result scenes are instantiated, and reused based on query. - Drop support for multiselect.
* | | Unify editor version buttonsHaoyu Qiu2024-09-284-30/+148
| | |
* | | Merge pull request #97488 from KoBeWi/zakaz_tłumaczeńRémi Verschelde2024-09-261-1/+2
|\ \ \ | | | | | | | | | | | | Disable auto translation in EditorDirDialog
| * | | Disable auto translation in EditorDirDialogkobewi2024-09-261-1/+2
| | | |
* | | | Merge pull request #97344 from pafuent/editor_file_dialog_filter_sortRémi Verschelde2024-09-262-30/+124
|\ \ \ \ | |/ / / |/| | | | | | | Add filter & sort to editor file dialog
| * | | Add filter & sort to editor file dialogPablo Andres Fuente2024-09-262-30/+124
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Closes https://github.com/godotengine/godot-proposals/issues/2721 On `EditorFileDialog`: * Add filter box that only shows folders and files in current directory that match * Add sort button to sort files and directories * Add a shortcut for CTRL+F for selecting the filter box Also moved common code between `EditorFileDialog` and `FileSystemDock` to it's own file. Co-authored-by: fox <12120644+foxydevloper@users.noreply.github.com>
* | | | SCons: Add unobtrusive type hints in SCons filesThaddeus Crews2024-09-251-0/+1
|/ / /
* | | Merge pull request #95787 from timothyqiu/domesticRémi Verschelde2024-09-201-0/+4
|\ \ \ | | | | | | | | | | | | Add translation domain
| * | | Make editor use translation domainsHaoyu Qiu2024-09-171-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | How editor plugins use this feature: 1. Pick a unique translation domain name. 2. `_enter_tree()`: load translations into that translation domain. 3. Call `set_translation_domain()` for its root UI node. 4. `_exit_tree()`: remove that translation domain. Plugins can also set the translation domain to `godot.editor` for nested nodes that should use editor translations. `EditorFileDialog` automatically does this.
* | | | Style: Apply new `clang-format` changesThaddeus Crews2024-09-201-1/+1
| | | |
* | | | Merge pull request #97173 from timothyqiu/drag-preview-translationRémi Verschelde2024-09-191-0/+1
|\ \ \ \ | | | | | | | | | | | | | | | Set auto translate mode for drag previews
| * | | | Set auto translate mode for drag previewsHaoyu Qiu2024-09-191-0/+1
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Controls - `LineEdit`, `TextEdit`: Always disabled since it's dragging user input. - `TabBar`: Use the same auto translate mode as the node. - `RichTextLabel`: Always disable since auto translation is done differently from other controls (selection text you get programmatically is always after auto translation). - Editor - Disable drag preview auto translation if the text is user input, filename, or class name. - Also disabled unexpected auto translation for audio bus effect names.
* / / / Rework creating new folders in editorkobewi2024-09-171-1/+0
|/ / /
* | | Merge pull request #96400 from ↵Rémi Verschelde2024-09-162-0/+16
|\ \ \ | |_|/ |/| | | | | | | | | | | Maran23/inputmap-usage-for-filter-and-corresponding-refactor Use InputMap actions consistently across all LineEdit's that filter an underlying Tree or ItemList.
| * | Use InputMap actions consistently across all LineEdit's that filter an ↵Marius Hanl2024-08-312-0/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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)
* | | Fix is_inside_tree error when inspecting an Environment resourcematheusmdx2024-09-071-1/+1
| | |
* | | Remove duplicated read only checks in EditorSpinSliderHaoyu Qiu2024-09-061-12/+8
| | | | | | | | | | | | | | | Also made read only checks in EditorSpinSlider's implementation to use `read_only` directly for consistency.
* | | Merge pull request #96609 from detomon/prevent-changing-readonly-propertyRémi Verschelde2024-09-051-0/+4
|\ \ \ | | | | | | | | | | | | Prevent editing value on focus when `EditorSpinSlider` is read-only
| * | | Prevent editing value on focus when `EditorSpinSlider` is read-onlydetomon2024-09-051-0/+4
| | | |
* | | | Merge pull request #96569 from AThousandShips/fix_tree_buttonRémi Verschelde2024-09-051-2/+6
|\ \ \ \ | |/ / / |/| | | | | | | [Editor] Prevent duplicate `Open in Editor` buttons in scene tree dock
| * | | [Editor] Prevent duplicate `Open in Editor` buttons in scene tree dockA Thousand Ships2024-09-041-2/+6
| | | | | | | | | | | | | | | | Duplicate buttons were added when editor description changed
* | | | Merge pull request #95983 from bruvzg/win_fd_opt_fixRémi Verschelde2024-09-041-1/+2
|\ \ \ \ | | | | | | | | | | | | | | | [Windows] Emit native file dialog callback from event loop, fix selected options not saved.
| * | | | [Windows] Emit native file dialog callback from event loop, fix selected ↵bruvzg2024-08-231-1/+2
| | | | | | | | | | | | | | | | | | | | options not saved.
* | | | | Merge pull request #95343 from Giganzo/unique-name-dialogRémi Verschelde2024-09-042-6/+52
|\ \ \ \ \ | |_|/ / / |/| | | | | | | | | Add ConfirmationDialog when clicking on % button in SceneTree
| * | | | Add ConfirmationDialog when clicking on % button in SceneTreeGiganzo2024-09-042-6/+52
| | | | |
* | | | | Merge pull request #95902 from kitbdev/remove-forced-mouse-focusRémi Verschelde2024-09-031-1/+0
|\ \ \ \ \ | |_|_|/ / |/| | | | | | | | | Clean up Viewport's `forced_mouse_focus`
| * | | | Clean up Viewport forced_mouse_focuskit2024-08-211-1/+0
| | |/ / | |/| |
* | | | [Scene] Add SceneStringName::toggledYuri Rubinsky2024-08-284-6/+6
| | | |
* | | | Merge pull request #95906 from larspet/change-2d-zoomRémi Verschelde2024-08-271-12/+5
|\ \ \ \ | | | | | | | | | | | | | | | Add a zoom speed setting to the 2D editor
| * | | | Add a zoom speed setting to the 2D editorLars Pettersson2024-08-231-12/+5
| |/ / /
* | | | Merge pull request #89265 from davthedev/spinbox-buttons-refactorRémi Verschelde2024-08-272-1/+10
|\ \ \ \ | | | | | | | | | | | | | | | Improve SpinBox interaction, split arrows, add theme attributes
| * | | | Improve SpinBox interaction, split arrows, add theme attributesDavid Giardi2024-08-232-1/+10
| | |/ / | |/| |
* | | | Disable text trimming in SceneTreeEditorkobewi2024-08-211-0/+1
| |/ / |/| |
* | | Merge pull request #94773 from ↵Rémi Verschelde2024-08-191-1/+18
|\ \ \ | | | | | | | | | | | | | | | | | | | | Hilderin/fix-add-child-node-problem-no-auto-expand Fix scene node selection problem when no auto expand
| * | | Fix scene node selection problem when no auto expandHilderin2024-08-171-1/+18
| |/ /
* | | Merge pull request #95542 from KoBeWi/go_bind_yourselfRémi Verschelde2024-08-162-4/+0
|\ \ \ | | | | | | | | | | | | Remove empty `bind_methods()`
| * | | Remove empty bind_methods()kobewi2024-08-152-4/+0
| | |/ | |/|
* | | Merge pull request #95028 from kitbdev/fix-spin-slider-hiddenRémi Verschelde2024-08-161-3/+3
|\ \ \ | |/ / |/| | | | | Fix EditorSpinSlider when hidden
| * | Fix EditorSpinSlider when hiddenkit2024-08-011-3/+3
| |/
* / Fix order of Lock and Group icons in SceneTreeGiganzo2024-08-091-7/+7
|/
* Merge pull request #94053 from ↵Rémi Verschelde2024-07-171-1/+12
|\ | | | | | | | | | | Hilderin/fix-toggle-last-opened-bottom-panel-after-restoring-to-side Fix Toggle Last Opened Bottom Panel not working after restoring FileSystem Dock to the side
| * Fix Toggle Last Opened Bottom Panel not working after restoring FileSystem ↵Hilderin2024-07-071-1/+12
| | | | | | | | Dock to the side