summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix seg fault when moving cursor up onto empty top line.Michael Drake2013-02-081-1/+1
|
* Adjust code to reduce indentation.Michael Drake2013-02-081-48/+48
|
* Scaled textarea rendering support. Ugly.Michael Drake2013-02-084-36/+77
|
* Implement text selection auto-scroll.Michael Drake2013-02-081-0/+16
|
* Improve scroll-to-caret behaviour.Michael Drake2013-02-081-40/+59
|
* Support dropping text file on textarea widget.Michael Drake2013-02-083-7/+63
|
* Merge branch 'master' of git://git.netsurf-browser.org/netsurfMichael Drake2013-02-089-47/+161
|\
| * fix docuemnt/window location to correctly navigate, fixes ↵Vincent Sanders2013-02-073-9/+77
| | | | | | | | http://www.avaaz.org/ base page
| * Updated Italian translation from Samir HawamdehChris Young2013-02-064-26/+26
| |
| * Correct SSL certificate accept/reject messages nameChris Young2013-02-061-2/+2
| |
| * Optimise box redraws some more by discarding simple subsetsChris Young2013-02-061-7/+15
| |
| * Don't add the same box redraw to the queue more than onceChris Young2013-02-051-10/+48
| |
* | Add scrollwheel support to textareas.Michael Drake2013-02-083-0/+36
| |
* | Add ta to documentation.Michael Drake2013-02-081-0/+3
| |
* | Fix comment.Michael Drake2013-02-081-2/+2
| |
* | Drag fixup. Add some documentation.Michael Drake2013-02-083-2/+13
| |
* | HTML drags now go via content msg.Michael Drake2013-02-087-104/+235
| |
* | Tweak selection rendering. Adjusting layout doesn't emit redraw request. ↵Michael Drake2013-02-082-34/+10
| | | | | | | | Client must redraw when it wants it.
* | Don't lose fractional part of text pt size to rounding.Michael Drake2013-02-071-3/+2
| |
* | Remove unused textinput widget. (Old html form text editing.)Michael Drake2013-02-072-2254/+0
| |
* | Don't build or include old render/textinput module.Michael Drake2013-02-072-2/+1
| |
* | Remove input subtree special numberspacing.Michael Drake2013-02-071-51/+13
| |
* | Native caret not now set in redraw. Prevents endless redraw when textarea ↵Michael Drake2013-02-072-25/+44
| | | | | | | | has caret.
* | First pass at getting html forms to use textarea widget.Michael Drake2013-02-0615-290/+461
| | | | | | | | | | (Input element types text & password, and textarea element.) Can edit and submit forms, but there are loads of issues.
* | Fix empty textarea reflow. Fix empty line (just \n) redraw. Add set layout ↵Michael Drake2013-02-062-4/+51
| | | | | | | | function to set size and padding.
* | Fix split implementation.Michael Drake2013-02-061-1/+7
| |
* | Merge branch 'master' of git://git.netsurf-browser.org/netsurfMichael Drake2013-02-031-31/+53
|\|
| * Use last known scroll pos, not currentChris Young2013-02-031-8/+4
| |
| * Correct fast scroll co-ordinatesChris Young2013-02-031-4/+4
| |
| * Ensure scale can be accssed from the keyboardChris Young2013-02-031-1/+16
| |
| * Un-fix scaled box redraw, as it cause more problems than it solvesChris Young2013-02-031-2/+2
| |
| * Make fast scroll code easier to readChris Young2013-02-031-28/+38
| |
| * Fix scaled redraw of boxesChris Young2013-02-031-6/+7
| |
* | Merge branch 'master' of git://git.netsurf-browser.org/netsurfMichael Drake2013-02-033-6/+47
|\|
| * Defer the redraw of boxes. This fixes a redraw problem with form select menus.Chris Young2013-02-033-6/+47
| |
* | Pull flags out of textarea_setup.Michael Drake2013-02-024-12/+15
|/
* Add support for password text inputs.Michael Drake2013-02-012-136/+230
| | | | | + Text display obscured. + Cut/Copy put the obscured version on the clipboard.
* fix cast warning in location::href setterVincent Sanders2013-01-311-1/+1
|
* add href location setterVincent Sanders2013-01-311-0/+14
|
* Merged toolbar changes from masterOle Loots2013-01-311-6/+41
|
* Added missing copyright headers.Ole Loots2013-01-313-0/+54
|
* Merged toolbar conflict.Ole Loots2013-01-311-271/+0
|
* Merge branch 'master' into mono/removing-windom-dependencymono/removing-windom-dependencyOle Loots2013-01-3154-2473/+2552
|\ | | | | | | | | Conflicts: atari/toolbar.c
| * ifdef some code that will never work under AmigaOS <4.0mono/windom-guiChris Young2013-01-305-5/+26
| |
| * Add move caret msg. Add flag to choose internal caret or caret move msgs.Michael Drake2013-01-304-11/+40
| |
| * Require and bundle Iconv 0.12John-Mark Bell2013-01-294-3/+10
| |
| * Create textarea_msg struct on stack, rather than using global.Michael Drake2013-01-291-2/+8
| |
| * Don't redraw if selection is unchanged.Michael Drake2013-01-291-0/+3
| |
| * Replace textarea_drag_end call with textarea_mouse_action. ↵Michael Drake2013-01-291-2/+2
| | | | | | | | s/redraw_request/request_redraw/
| * Update textarea to inform client what it's doing with drags.Michael Drake2013-01-294-140/+282
| | | | | | | | | | | | | | Now single callback for both redraw requests and drag reports. Update treeview to use new textarea API. Update Atari URL bar to use new textarea API. (Ignores drag reports, currently.) Minor textarea fixes.