summaryrefslogtreecommitdiff
path: root/scene/gui/line_edit.cpp
AgeCommit message (Collapse)Author
2019-09-25Make LineEdit's minimal size adapt to its iconsMichael Alexsander Silva Dias
2019-09-24Merge pull request #31925 from bojidar-bg/31855-overriden-properties-docsRémi Verschelde
Add overriden properties to the documentation
2019-09-23Merge pull request #32048 from YeldhamDev/lineedit_right_icon_fixRémi Verschelde
Expose LineEdit's 'right_icon' and fix icon size
2019-09-22Merge pull request #29895 from ptrojahn/menukeyRémi Verschelde
Support menu key in TextEdit and LineEdit controls
2019-09-22Support menu key in TextEdit and LineEdit controlsPaul Trojahn
Related to #15542
2019-09-21Expose LineEdit's 'right_icon' and fix icon sizeMichael Alexsander Silva Dias
2019-09-19Merge pull request #31188 from codecustard/LineEdit_disable_shortcutsRémi Verschelde
Add Ability to Enable/Disable Shortcuts and Selection for LineEdit/TextEdit
2019-09-07Add Ability to Enable/Disable Shortcuts for LineEdit/TextEditEmmanuel Barroga
This PR adds the ability to enable/disable shortcut keys and selection for LineEdit/TextEdit. It also updates the context menu when you disable/enable the shortcut keys or selection.
2019-09-04Add overriden properties to the documentationBojidar Marinov
Fixes #31855
2019-09-04TextEdit & LineEdit caret blink timers run only when focused (fixes #31936)PouleyKetchoupp
2019-08-13Reorganize various menus for consistency and concisenessHugo Locurcio
- Clean up the recent scripts dialog to match the recent scenes dialog - Add "..." at the end of shortcuts that cause a modal dialog to appear This closes #31148.
2019-08-09Remove ERR_EXPLAIN from scene/* codeTomasz Chabora
2019-08-04Accept also right-click event in LineEditTomasz Chabora
2019-07-15Fix incorrect caret position when clicking a 'LineEdit' with a non-left ↵Michael Alexsander Silva Dias
alignment
2019-07-07Fixes minor issues found by static analyzerqarmin
2019-06-27Merge pull request #29941 from qarmin/redundant_code_and_othersRémi Verschelde
Remove redundant code, possible NULL pointers and others
2019-06-26Some code changed with Clang-Tidyqarmin
2019-06-25Merge pull request #30002 from GlaceGwyneth/masterRémi Verschelde
Give LineEdit/TextEdit a custom color for font while uneditable
2019-06-24Give LineEdit a custom font color when un-editableGwyneth Lowe
By default the LineEdit's text when editable is unchecked had some transparency hardcoded. This change adds a custom color to LineEdit for adjusting the font when editable is off. Addresses issue 29814
2019-06-24Line edit placeholders now react properly to translation changes.Florian Marchal
2019-06-11Fix third and fourth level (AltGr / ⌥ modifier) keys input in LineEdit.bruvzg
2019-06-03Merge pull request #26848 from ptrojahn/utf8navigationRémi Verschelde
Support UTF-8 in TextEdit and LineEdit navigation
2019-05-31Fix and expose String::strip_escapes(), use it in LineEdit pasteRémi Verschelde
Supersedes #27736.
2019-05-28Merge pull request #28726 from megalike/add_mac_os_hotkeys_leRémi Verschelde
Support Mac OS hotkeys in line_edit
2019-05-24Merge pull request #29067 from KoBeWi/spin_editRémi Verschelde
Pass mouse events to SpinBox from its LineEdit
2019-05-21Initialize readonly/editable in LineEdit and TextEdit controlsIbrahn Sahir
2019-05-21Pass mouse events to SpinBox from its LineEditTomasz Chabora
2019-05-15Fix leftover connection to the "Open" signal in FileSystemDockMichael Alexsander Silva Dias
Fixes #28903.
2019-05-06Support Mac OS hotkeys in line_editmegalike
2019-05-01Fix First Ctrl+R and Ctrl+F not showing long name variables correctlytheoniko
2019-04-30Merge pull request #28287 from YeldhamDev/text_editable_contextmenuRémi Verschelde
Make 'Line/TextEdit's context menus hide their editing options when in readonly mode
2019-04-29Make 'Line/TextEdit's context menus hide their editing options when in ↵Michael Alexsander Silva Dias
readonly mode Fixes #28243.
2019-04-29Make buttons that trigger popups have the same scaleMichael Alexsander Silva Dias
2019-04-22Merge pull request #28266 from coldrye-collaboration/gh-28241Rémi Verschelde
Fix LineEdit not expanded to text length on undo/redo
2019-04-21Call minimum_size_changed() on redo/undo if expand_to_text_length is trueCarsten Klein
Fixes #28241
2019-04-21Fix 'LineEdit' offset limit not accounting for the right/clear icon widthMichael Alexsander Silva Dias
Fully fixes #28242.
2019-04-20Fix 'LineEdit' contents not ending before the clear button if no right icon ↵Michael Alexsander Silva Dias
was set Fixes #28242.
2019-04-05Fix -Wimplicit-fallthrough warnings from GCC 8Rémi Verschelde
Adds `FALLTHROUGH` macro to specify when a fallthrough is intentional. Can be replaced by `[[fallthrough]]` if/when we switch to C++17. The warning is now enabled by default for GCC on `extra` warnings level (part of GCC's `-Wextra`). It's not enabled in Clang's `-Wextra` yet, but we could enable it manually once we switch to C++11. There's no equivalent feature in MSVC for now. Fixes #26135.
2019-03-31Fixed not deselecting when clearing lineedit.Paulb23
2019-03-09Support UTF-8 in TextEdit and LineEdit navigationPaul Trojahn
This allows jumps over whole non ASCII words with Ctrl+Left/Right in a LineEdit or TextEdit. Fixes #25681
2019-02-19Allow moving LineEdit visible window left by more than one symbol.Kārlis Seņko
2019-01-16Appease some CppCheck warns for files in the "scene" directoryMichael Alexsander Silva Dias
2019-01-08Update IME text only for focused input controls.bruvzg
2019-01-01Update copyright statements to 2019Rémi Verschelde
Happy new year to the wonderful Godot community!
2018-11-23Changes IME input to use notification instead of callback, exposes IME ↵bruvzg
methods to gdscript/gdnative.
2018-11-08-Moved EditorDefaultValue to ClassDB, made it coreJuan Linietsky
-Removed one and zero hints for properties, replaced by default value
2018-10-20Initialise LineEdit clear_button_status.Ibrahn Sahir
Avoiding undefined behaviour and cleaning up Valgrind output.
2018-10-04fix enum cast warnings on clangkarroffel
2018-09-12Make core/ includes absolute, remove subfolders from include pathRémi Verschelde
This allows more consistency in the manner we include core headers, where previously there would be a mix of absolute, relative and include path-dependent includes.
2018-08-24Disable ability to copy or cut text from LineEdit if secret mode is enabled.MidZik