summaryrefslogtreecommitdiffstats
path: root/scene/gui/line_edit.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@0f5f3bc9546b46b2029fc8896dc859697f1eab97Spartan3222024-11-111-0/+2
|\
| * Fix IME deactivation events not send on focus loss. Do not unset AltGr ↵bruvzg2024-11-061-0/+2
| | | | | | | | modifiers in non-IME input.
* | 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>
* Expose `LineEdit` `edit` and `unedit` methods.Mounir Tohami2024-10-041-23/+33
|
* Fix renaming nodes on X11David Snopek2024-09-251-1/+1
|
* Merge pull request #97167 from MewPurPur/reveal-undoredoRémi Verschelde2024-09-201-0/+2
|\ | | | | | | Expose `has_undo()` and `has_redo()` of LineEdit
| * Expose has_undo() and has_redo() of LineEditMewPurPur2024-09-191-0/+2
| |
* | 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.
* Fix project manager stealing focus on i3David Snopek2024-09-161-1/+1
|
* Add Control+Shift+U (rebindabe) action for Unicode input, show hex as it is ↵bruvzg2024-09-121-61/+172
| | | | entered.
* Prevent `LineEdit` from losing focus when text is submitted or rejected.Mounir Tohami2024-09-101-226/+313
|
* Merge pull request #96038 from kitbdev/fix-line-edit-caret-word-modeRémi Verschelde2024-09-041-16/+36
|\ | | | | | | Fix LineEdit word mode when there are no more words
| * Fix LineEdit word mode when there are no wordskit2024-08-241-16/+36
| |
* | StringName Dictionary keysrune-scape2024-08-291-2/+2
|/ | | | | also added 'is_string()' method to Variant and refactored many String type comparisons to use it instead
* [Tests] Fix various unit tests on minimal buildsA Thousand Ships2024-07-181-0/+3
|
* [Scene] Add `SceneStringNames::text/value_changed`A Thousand Ships2024-06-191-1/+1
|
* Fix IME activation in subviewports.bruvzg2024-06-041-9/+12
|
* [Scene] Add `SceneStringNames::id_pressed`A Thousand Ships2024-05-301-3/+3
|
* Use Core/Scene stringnames consistentlykobewi2024-05-131-2/+2
|
* Update LineEdit to include read_only StyleBox in get_minimum_size()aaronp642024-04-291-2/+2
| | | | Fixes #90522
* Expose is_part_of_edited_scene()kobewi2024-04-261-1/+1
|
* Merge pull request #85801 from HolonProduction/select-whole-words-line-editRémi Verschelde2024-03-011-0/+23
|\ | | | | | | Allow dragging selection when selecting whole words in `LineEdit`
| * Allow dragging selection when selecting whole words in `LineEdit`HolonProduction2024-02-051-0/+23
| |
* | Add option to add built-in strings in the POT generationMichael Alexsander2024-02-281-31/+31
| |
* | Add methods to add submenus without using nameskobewi2024-02-221-6/+2
| |
* | Use check_changed_settings_in_group() everywherekobewi2024-02-191-0/+3
| |
* | Fix `LineEdit` delete all the way to the left/right when something is selectedpassivestar2024-02-181-17/+17
| |
* | Revert "Update Node::get_configuration_warnings signature"Rémi Verschelde2024-02-171-2/+2
| | | | | | | | This reverts commit d3852deaa450d77edb30df2bb1c77bd7bc45befc.
* | Merge pull request #88057 from passivestar/cmd-backspace-lineeditRémi Verschelde2024-02-131-3/+4
|\ \ | | | | | | | | | Fix LineEdit behavior for deleting all the way to the left/right
| * | Fix LineEdit behavior for deleting all the way to the left/rightpassivestar2024-02-071-3/+4
| |/
* / Update Node::get_configuration_warnings signatureRedMser2024-02-081-2/+2
|/
* Merge pull request #87012 from TheSofox/line-edit-undo-caret-fixRémi Verschelde2024-01-151-2/+4
|\ | | | | | | Fix `LineEdit` caret rendering/positioning on Undo.
| * Fix LineEdit caret rendering/positioning on Undo.Sofox2024-01-091-2/+4
| |
* | Update deferred calls to use Callableskobewi2024-01-091-7/+4
|/
* Merge pull request #86732 from TheSofox/line-edit-delete-fixRémi Verschelde2024-01-041-0/+6
|\ | | | | | | Make `LineEdit` scrolling show as much text as possible
| * Make LineEdit scrolling show as much text as possibleSofox2024-01-041-0/+6
| |
* | Fix double text_changed signal when overwriting selection in LineEditMateus Reis2023-12-241-1/+6
|/ | | | | | | The part of gui_input that handles unicode wasn't checking text_changed_dirty before emitting the signal, unlike the rest of the text editing functions. Fixes #86451
* [Text Overrun] Add option to set custom ellipsis character, add support for ↵bruvzg2023-12-041-12/+9
| | | | system font fallback.
* Change dropdown type filter to Texture2D in certain nodesBlueCube33102023-10-281-1/+1
|
* Make LineEdit secret character easier to change and enterjsjtxietian2023-10-191-5/+16
| | | | | | | 1. Allow values longer than 1 character in the property, but trim characters after the first one. 2. Allow empty strings, this acts like if a space was used as a secret character, so that an error isn't printed when you erase all characters in the property.
* Accept cancel event when unfocusing LineEditkobewi2023-10-061-0/+1
|
* Merge pull request #82811 from MewPurPur/more-line-edit-organizationRémi Verschelde2023-10-061-2/+4
|\ | | | | | | Place LineEdit secret in its own section
| * Place LineEdit secret in its own sectionMewPurPur2023-10-041-2/+4
| |
* | Replace Ctrl in editor shortcuts with Cmd or Ctrl depending on platformajreckof2023-09-191-4/+4
|/
* Merge pull request #81312 from YuriSizov/theme-static-bindsRémi Verschelde2023-09-111-23/+25
|\ | | | | | | Register theme properties with ThemeDB
| * Register theme properties with ThemeDBYuri Sizov2023-09-111-23/+25
| |
* | Fix FindReplaceBar losing focus too earlykobewi2023-09-081-1/+1
|/
* [LineEdit] Update line edit offset on text delete.bruvzg2023-09-081-5/+1
|
* Unfocus LineEdit when pressing Escapekobewi2023-08-291-0/+5
|