summaryrefslogtreecommitdiffstats
path: root/editor/find_in_files.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix slight visual discrepancy in Search Result dockVolTer2022-12-051-1/+1
|
* Merge pull request #66574 from MewPurPur/search-results-improvementsRémi Verschelde2022-11-241-14/+17
|\ | | | | | | Fixes and improvements to Search Results dock
| * Fixes and improvements to Search Results dockVolTer2022-11-021-14/+17
| |
* | Merge pull request #65441 from MewPurPur/annoying-whitespaces-trimming-fixRémi Verschelde2022-11-061-2/+1
|\ \ | |/ |/| Prevent stripping the edges of strings when using Find in Files
| * Stopped edge stripping when using Find in FilesVolTer2022-09-071-2/+1
| |
* | Merge pull request #67578 from KoBeWi/GEDITORRémi Verschelde2022-10-311-1/+1
|\ \ | | | | | | | | | Unify usage of GLOBAL/EDITOR_GET
| * | Unify usage of GLOBAL/EDITOR_GETkobewi2022-10-181-1/+1
| | |
* | | Rename queue_delete => queue_freeMarc Gilleron2022-10-241-1/+1
|/ / | | | | | | | | # Conflicts: # editor/plugins/tiles/tiles_editor_plugin.cpp
* / Fix MSVC warnings, rename shadowed variables, fix uninitialized values, ↵bruvzg2022-10-071-2/+2
|/ | | | change warnings=all to use /W4.
* Rename String `plus_file` to `path_join`Aaron Franke2022-08-291-2/+2
|
* Rename `hint_tooltip` to `tooltip_text` & setgetMicky2022-08-271-1/+1
| | | | | | | | `hint_tooltip` -> `tooltip_text` `set_tooltip` -> `set_tooltip_text` `_get_tooltip` -> `get_tooltip_text` Updates documentation, too.
* Refactor Font configuration and import UI, and Font resources.bruvzg2022-07-061-2/+2
|
* i18n: Misc fixes translation stringsRémi Verschelde2022-06-081-2/+2
| | | | Adds some translator comments to solve some questions raised on Weblate.
* Add a new HashSet templatereduz2022-05-201-3/+3
| | | | | * Intended to replace RBSet in most cases. * Optimized for iteration speed
* Replace most uses of Map by HashMapreduz2022-05-161-14/+14
| | | | | | | | | | | | * 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!
* Make FileAccess and DirAccess classes reference counted.bruvzg2022-04-111-11/+7
|
* Fix some issues found by cppcheck.bruvzg2022-04-061-2/+2
|
* Initialize bools in the headers in editorAaron Franke2022-03-121-2/+0
|
* Port existing _notification code to use switch statements (part 1/3)jmb4622022-02-161-26/+34
|
* Improve compilation speed (forward declarations/includes cleanup)Hendrik Brucker2022-02-121-2/+3
|
* Revert "Add missing SNAME macro optimization to all theme methods call"Rémi Verschelde2022-02-081-6/+6
| | | | | | | | This reverts commit a988fad9a092053434545c32afae91ccbdfbe792. As discussed in #57725 and clarified in #57788, `SNAME` is not meant to be used everywhere but only in critical code paths. For theme methods specifically, it was by design that only getters use `SNAME` and not setters.
* Add missing SNAME macro optimization to all theme methods calljmb4622022-02-061-6/+6
|
* Cleanup and move char functions to the `char_utils.h` header.bruvzg2022-02-041-7/+2
|
* 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-2/+2
| | | | | | Also: - Adds two stress tests to test_string.h - Changes to .empty() on std::strings
* Small formatting fixes in Find in FilesMax Hilbrunner2021-10-271-32/+31
|
* Save all 64 bits of get_ticks_msec() in more casesMax Hilbrunner2021-10-261-3/+3
|
* Restrict the project data directory configurationne0fhyk2021-10-181-1/+1
|
* Make the project data directory customizable.ne0fhyk2021-10-111-1/+1
|
* Merge pull request #52711 from m4gr3d/provide_getter_for_project_data_dir_masterRémi Verschelde2021-10-051-2/+3
|\
| * Provide a getter for the project data directory.ne0fhyk2021-09-151-2/+3
| |
* | Use range iterators for `Map`Lightning_A2021-09-301-2/+2
|/
* Make "Find in Files" searches ignore directories with `.gdignore` files in themNicholas Huelin2021-07-301-0/+5
| | | This pull request fixes an issue where searches using the "Find in Files" function would include folders with `.gdignore` files in them. The editor is supposed to ignore directories with these files in them altogether.
* Optimize StringName usagereduz2021-07-181-20/+20
| | | | | | | | | | | * Added a new macro SNAME() that constructs and caches a local stringname. * Subsequent usages use the cached version. * Since these use a global static variable, a second refcounter of static usages need to be kept for cleanup time. * Replaced all theme usages by this new macro. * Replace all signal emission usages by this new macro. * Replace all call_deferred usages by this new macro. This is part of ongoing work to optimize GUI and the editor.
* Implement Tree's internal minimum width calculationGilles Roudière2021-06-281-1/+1
|
* Documentation search fixesGregory Basile2021-06-161-4/+4
| | | | | | 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"
* Core: Move DirAccess and FileAccess to `core/io`Rémi Verschelde2021-06-111-1/+1
| | | | | File handling APIs are typically considered part of I/O, and we did have most `FileAccess` implementations in `core/io` already.
* Merge pull request #48747 from ↵Rémi Verschelde2021-05-211-2/+4
|\ | | | | | | | | Calinou/editor-find-in-files-tweak-highlight-color Tweak highlight color in the editor Find in Files dialog
| * Tweak highlight color in the editor Find in Files dialogHugo Locurcio2021-05-161-2/+4
| | | | | | | | The new color is more visible against dark backgrounds.
* | Change behavior of String.rightTomasz Chabora2021-05-201-2/+2
| |
* | Improve TreeItem API and allow to move nodestrollodel2021-05-171-1/+1
|/
* Reorganize Project Settingsreduz2021-02-181-1/+1
| | | | | | | -Advanced Settings toggle also hides advanced properties when disabled -Simplified Advanced Bar (errors were just plain redundant) -Reorganized rendering quality settings. -Reorganized miscelaneous settings for clean up.
* Merge pull request #42784 from mujpao/search-results-font-size-4.0Rémi Verschelde2021-02-141-0/+3
|\ | | | | Make search results font follow code editor font
| * Make search results font follow code editor fontmujpao2020-10-131-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | The font size of the Find in Files dialog used to get out of sync with the code editor font size. The font of the Find in Files dialog is now updated each time there is a change to the theme. This way, the font size of the Find in Files results changes in response to the code font size being changed using Ctrl +/- or using the Editor Settings. Fixes #35499
* | 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 🎆
* | Rename empty() to is_empty()Marcel Admiraal2020-12-281-2/+2
| |
* | Rename Control margin to offsetMarcel Admiraal2020-12-231-8/+8
| |
* | Merge pull request #44301 from pycbouh/show-count-find-in-filesRémi Verschelde2020-12-171-1/+13
|\ \ | | | | | | Display the number of results for global search
| * | Display the number of results for global searchYuri Sizov2020-12-111-1/+13
| | |
* | | Rename AcceptDialog get_ok() to get_ok_button()Marcel Admiraal2020-12-141-1/+1
|/ / | | | | | | | | | | Also renames: - AcceptDialog add_cancel() to add_cancel_button() - ConfirmationDiaglog get_cancel() to get_cancel_button()