summaryrefslogtreecommitdiff
path: root/render/box_textarea.h
Commit message (Collapse)AuthorAgeFilesLines
* A load of refactoring of how content selection and input work.Michael Drake2013-02-221-0/+11
| | | | | | | | | | | | | Keypresses now go via content interface. Contents don't shove the selection object into browser windows any more. Contents report selection existence by sending message. HTML content keeps track of where selections in it exist. Contents report whether they have input focus via caret setting msg. Caret can be hidden (can still input/paste) or removed. Consolidate textarea selection handling. Make textarea report its selection status changes to client. Various textarea fixes. Changed how we decide when to clear selections, and give focus.
* First pass at getting html forms to use textarea widget.Michael Drake2013-02-061-0/+44
(Input element types text & password, and textarea element.) Can edit and submit forms, but there are loads of issues.