aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/textinput.rs
Commit message (Collapse)AuthorAgeFilesLines
...
* Update rustc to 00b112c45a604fa6f4b59af2a40c9deeadfdb7c6/rustc-1.0.0-dev.Josh Matthews2015-01-281-4/+4
|
* Use chars().count() rather than char_len().Ms2ger2015-01-221-4/+4
| | | | The latter is obsolete in current Rust.
* Move to to_owned rather than into_string.Ms2ger2015-01-201-21/+22
| | | | into_string has been removed from Rust.
* Fix TextInput's edit point after set_contentPeter Reid2015-01-171-9/+2
| | | | | | Previously, when the edit point was being clamped leftward by a shortened line, it would be placed one one character too far to the left instead of at the very end.
* added unit tests for TextInput - fixes #4352donaldpipowitch2015-01-161-3/+165
|
* Fixes #4573 Replaces the boolean argument of ↵Matt McCoy2015-01-081-11/+24
| | | | TextInput::adjust[horizontal|vertical] with enum to self document the code
* Update rustc to revision 2cfb5acb5a2751c759627377e602bac4f88f2d19.Ms2ger2015-01-081-0/+1
|
* script: to_string() -> into_string()Manish Goregaokar2014-12-271-5/+5
|
* Allow selection of all text in a text control using the ctrl-a/cmd-a shortcut.James Moughan2014-12-241-0/+28
| | | | Fixes #4411.
* On left/right keydown place edit_point correctly when there is a selection ↵Emanuel Rylke2014-12-211-5/+15
| | | | | | in TextInput Fixes #4447
* Update rustc to revision 3dcd2157403163789aaf21a9ab3c4d30a7c6494d.Ms2ger2014-12-171-20/+25
|
* Fix crash in textinputMatthew Rasmus2014-12-161-1/+7
|
* some fixes for multiple-mode textinputRohan Prinja2014-12-111-23/+29
|
* Implement selection ranges and deletion of \n for TextInput.Emanuel Rylke2014-12-081-81/+77
|
* Fix bug of TextInput.adjust_horizontal causing stack overflow or wraparoundEmanuel Rylke2014-12-061-19/+10
| | | | | | | When the edit_point is in the first position of a multiline TextInput adjust_horizontal(-1) moves the edit_point to the end of the first line. When the first line is empty this causes a stack overflow. When the edit_point is in the last position adjust_horizontal(1) causes a stack overflow.
* Implement Page(Up|Down) functionality for TextInput.Emanuel Rylke2014-12-061-2/+10
|
* Fix bug of TextInput.adjust_vertical(1) always moving to the end of text.Emanuel Rylke2014-12-061-1/+1
|
* Make TextInput correctly handle multibyte chars.Emanuel Rylke2014-12-051-1/+1
|
* allow deleting last charRohan Prinja2014-12-051-1/+1
|
* Fix interfaces testKeegan McAllister2014-11-131-3/+7
|
* More documentation.Josh Matthews2014-11-131-6/+42
|
* Add single-line text input with no visible cursor.Josh Matthews2014-11-131-0/+259