summaryrefslogtreecommitdiffstats
path: root/scene/gui/code_edit.h
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@87318a2fb7fffeb72adca934e31915be077c3d1fSpartan3222024-11-061-3/+3
|\
| * Style: Apply `clang-tidy` fixesThaddeus Crews2024-11-041-3/+3
| | | | | | | | | | • `modernize-use-default-member-init` and `readability-redundant-member-init` • Minor adjustments to `.clang-tidy` to improve syntax & remove redundancies
* | 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>
* CodeEdit: improve render speedrune-scape2024-09-041-0/+3
|
* Draw a checkerboard behind translucent colors in CodeEdit autocompletion ↵Hugo Locurcio2024-08-091-0/+1
| | | | | | | previews This makes translucent colors easier to interpret as such and is consistent with how they're displayed in ColorPicker.
* [macOS] Fix code completion list scrolling with trackpad.bruvzg2024-07-151-0/+1
|
* Overhaul multiple caret editing in TextEdit.kit2024-04-261-0/+6
| | | | Use a multicaret edit to delay merging overlapping carets until the end.
* Overhaul TextEdit selection.kit2024-04-261-0/+2
| | | | The caret is now a part of the selection.
* Fix some DEFVALs to use the right typeRaul Santos2024-02-231-1/+2
| | | | | - Use `StringName()` in DEFVAL for StringNames. - Use `Variant()` in DEFVAL for Variants.
* Merge pull request #81633 from matorin57/code-completion-popupRémi Verschelde2023-10-031-0/+1
|\ | | | | | | Avoid resetting the code completion popup excessively
| * Avoid resetting the code completion popup excessivelyDESKTOP-UT43QTQ\Garrigan-Desktop2023-09-201-0/+1
| |
* | Add Duplicate Lines shortcut to CodeTextEditorPucklaMotzer092023-09-251-0/+3
| | | | | | | | This keyboard shortcut has been made with inspiration from the VS Code keyboard shortcut editor.action.copyLinesDownAction. It duplicates all selected lines and inserts them below no matter where the caret is within the line.
* | Bind remaining theme properties to their respective classesYuri Sizov2023-09-131-0/+6
|/ | | | | | | | | | | | This adds binds for GraphEdit/GraphElement/GraphNode, which were skipped before due to a rework. This also adds binds for Window, which was skipped before due to a complicated code organization. Also adds theme cache entries/direct cache access to a few places that previously missed it. Some theme properties are now exposed to other classes via friendships or public getters for convenience. This removes all string-based theme access from scene/ classes.
* Add code region folding to CodeEditJean-Michel Bernard2023-09-111-0/+16
|
* Register theme properties with ThemeDBYuri Sizov2023-09-111-2/+0
|
* Extract ScriptInstance to simplify includesYuri Sizov2023-09-061-0/+1
| | | | | | | | | This allows to include script_instance.h directly in the generated gdvirtual.gen.inc, and remove excessive includes from the codebase. This should also allow Resource to use GDVIRTUAL macros, which wasn't possible previously due to a circular dependency.
* Fix or workaround recent extension API compatibility issuesRémi Verschelde2023-08-031-0/+5
| | | | | | | - Add compatibility methods for `RenderingDevice::shader_create_from_bytecode` and `CodeEdit::get_text_for_symbol_loopup`. - Silence errors which now have compatibility methods. - Acknowledge GraphEdit/GraphNode compat breakage, intended and WIP.
* Merge pull request #73196 from Vilcrow/fix-lookup-symbolYuri Sizov2023-07-241-1/+2
|\ | | | | | | Fix jumping to function definition using `Ctrl+LMB` or the "Lookup Symbol" button
| * Fixed the jumping to function definition using 'Ctrl+LMB' and the 'Lookup ↵S.V.I. Vilcrow2023-07-121-1/+2
| | | | | | | | Symbol' button.
* | sort code completions with rulesajreckof2023-05-231-3/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixups Add levenshtein distance for comparisons, remove kind sort order, try to improve as many different use cases as possible Trying again to improve code completion Sort code autocompletion options by similarity based on input To make it really brief, uses a combination `String.similiary`, the category system introduced in a previous PR, and some filtering to yield more predictable results, instead of scattering every completion option at seemingly random. It also gives much higher priority to strings that contain the base in full, closer to the beginning or are perfect matches. Also moves CodeCompletionOptionCompare to code_edit.cpp Co-Authored-By: Micky <66727710+Mickeon@users.noreply.github.com> Co-Authored-By: Eric M <41730826+EricEzaM@users.noreply.github.com>
* | Move convert_indent into CodeEditPaulb232023-05-071-0/+2
| |
* | Implement theme item cache in TextEdit and CodeEditYuri Sizov2023-04-031-25/+45
| |
* | Merge pull request #74665 from YuriSizov/code-edit-is-a-complete-dragYuri Sizov2023-03-201-0/+1
|\ \ | | | | | | Prevent passing events from CodeEdit to TextEdit when code completion is active
| * | Prevent passing events from CodeEdit to TextEdit when code completion is activeYuri Sizov2023-03-091-0/+1
| |/
* / Fixes  gutter set width results in receiving only half of the desired sizeNong Van Tinh2023-03-201-1/+1
|/
* Allow unindent without selectionkobewi2023-01-181-1/+0
|
* 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".
* Merge pull request #62675 from Jummit/tolerant_lookupRémi Verschelde2022-12-031-0/+1
|\ | | | | | | Allow drag-clicking before symbol lookup
| * Allow drag-clicking before symbol lookupJummit2022-10-091-0/+1
| | | | | | | | | | This makes it easier for touch and tablet users to do symbol lookups in the code editor.
* | Stop centering clicked suggestions in the autocomplete popupMichael Alexsander2022-10-281-0/+1
|/
* Add mutliple Caret support to TextEditPaulb232022-10-051-2/+2
|
* Replace Array return types with TypedArraykobewi2022-08-221-4/+4
|
* Code quality: Fix header guards consistencyRémi Verschelde2022-07-251-3/+3
| | | | | Adds `header_guards.sh` bash script, used in CI to validate future changes. Can be run locally to fix invalid header guards.
* Add the ability to drag the code completion scrollbar using the mouse clickMinusKube2022-07-031-0/+5
|
* Add a new HashSet templatereduz2022-05-201-2/+2
| | | | | * Intended to replace RBSet in most cases. * Optimized for iteration speed
* Replace most uses of Map by HashMapreduz2022-05-161-3/+3
| | | | | | | | | | | | * 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!
* Remove `RES` and `REF` typedefs in favor of spelled out `Ref<>`Hugo Locurcio2022-05-031-1/+1
| | | | | | These typedefs don't save much typing compared to the full `Ref<Resource>` and `Ref<RefCounted>`, yet they sometimes introduce confusion among new contributors.
* Add GDExtension support to Scriptreduz2022-03-271-4/+4
| | | | | | | | | * Ability to create script languages from GDExtension * Some additions to gdnative_extension.h to make this happen * Moved the GDExtension binder to core This now allows creating scripting languages from GDExtension, with the same ease as if it was a module. It replaces the old PluginScript from Godot 3.x. Warning: GodotCPP will need to be updated to support this (it may be a bit of work as ScriptInstance needs to be created over there again).
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Fix breakpointed_lines out of sync when removing lines abovePaulb232021-10-061-0/+1
|
* Change completion prefixes to single char and unnecessary ui_cancel accept_eventPaulb232021-09-201-1/+1
|
* Add CodeEdit breakpoint unit testsPaulb232021-09-011-1/+1
|
* Entirely removes BIND_VMETHOD in favor of GDVIRTUALreduz2021-08-231-1/+1
| | | | | | | | * `_gui_input`, `_input`, `_unhandled_input` and `_unhandled_key_input` are now regular C++ virutal functions. * Everything else converted to GDVIRTUAL * BIND_VMETHOD is gone, always use the new syntax from now on. Creating `_gui_input` method and using the binder to register events will no longer work, simply override the virtual function now.
* Replace BIND_VMETHOD by new GDVIRTUAL syntaxreduz2021-08-221-3/+7
| | | | | | | | | | | * New syntax is type safe. * New syntax allows for type safe virtuals in native extensions. * New syntax permits extremely fast calling. Note: Everything was replaced where possible except for `_gui_input` `_input` and `_unhandled_input`. These will require API rework on a separate PR as they work different than the rest of the functions. Added a new method flag METHOD_FLAG_OBJECT_CORE, used internally. Allows to not dump the core virtuals like `_notification` to the json API, since each language will implement those as it is best fits.
* Fix breakpoint toggle signal not firing when expectedPaulb232021-08-121-2/+8
|
* Cleanup and bind remaing methods in TextEditPaulb232021-08-121-0/+8
|
* Make TextEdit cut, copy and paste overridablePaulb232021-08-121-3/+6
|
* Clean up and complete CodeEdit inspector and docsPaulb232021-08-011-1/+1
|
* Move symbol lookup into CodeEditPaulb232021-08-011-0/+14
|