summaryrefslogtreecommitdiffstats
path: root/editor/find_in_files.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix unexpected auto translation of Tree contentHaoyu Qiu2024-03-181-0/+1
|
* Remember search text in Find/Replace in Files dialogMika Viskari2024-03-081-5/+18
|
* Add const lvalue ref to editor/* container parametersMuller-Castro2024-02-261-14/+14
|
* Use callable for `TreeItem` custom drawA Thousand Ships2024-01-231-2/+1
| | | | Deprecating old functionality
* 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.
* Update deferred calls to use Callableskobewi2024-01-091-1/+1
|
* Stop the searching of `find in files` in folders that have `.gdignore`Mateo Kuruk Miccino2023-12-081-4/+9
|
* Fix highlight in Search panel being offsetedJoão Pedro Braz2023-10-101-0/+2
| | | | | This commit fixes the match highlight in the Find In Files result panel being slightly offseted.
* [Editor] Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-09-151-2/+2
|
* Add EditorStringNames singletonkobewi2023-09-031-6/+7
|
* 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".
* Rebuild search result tree when the theme is changedMarius Hanl2022-12-211-8/+11
|
* 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