aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/textinput.rs
Commit message (Expand)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
* Move to to_owned rather than into_string.Ms2ger2015-01-201-21/+22
* Fix TextInput's edit point after set_contentPeter Reid2015-01-171-9/+2
* added unit tests for TextInput - fixes #4352donaldpipowitch2015-01-161-3/+165
* Fixes #4573 Replaces the boolean argument of TextInput::adjust[horizontal|ver...Matt McCoy2015-01-081-11/+24
* 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
* On left/right keydown place edit_point correctly when there is a selection in...Emanuel Rylke2014-12-211-5/+15
* 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
* 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