summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* code formatingOle Loots2013-01-091-8/+8
|
* Removed windom variable from clipboard functions.Ole Loots2013-01-091-2/+2
|
* Merge branch 'master' into mono/removing-windom-dependencyOle Loots2013-01-094-1172/+1044
|\ | | | | | | | | | | Conflicts: atari/gui.c atari/toolbar.h
| * Merge branch 'master' of git://git.netsurf-browser.org/netsurfOle Loots2013-01-091-45/+73
| |\
| | * Re-implement reading the clipboard using CollectionChunk; this removes the ↵Chris Young2013-01-081-41/+70
| | | | | | | | | | | | need for an initial UTF8 chunk scan and allows the chunks to be collated before sending back to the core. Untested and length calculations ignore charset conversion.
| | * Fix drag selectionChris Young2013-01-081-4/+3
| | |
| * | Fixes for new clipboard interface.Ole Loots2013-01-093-121/+75
| |/
* | Merge branch 'master' into mono/removing-windom-dependencyOle Loots2013-01-0863-3901/+4153
|\|
| * remove gui_copy_to_clipbaord call - this needs fixingChris Young2013-01-081-2/+3
| |
| * re-enable ami_drag_selectionChris Young2013-01-081-2/+0
| |
| * fix typoChris Young2013-01-081-1/+1
| |
| * Update copy to new API (untested), pasting needs work, ami_drag_selection ↵Chris Young2013-01-081-84/+41
| | | | | | | | needs thought.
| * Remove unused function.Michael Drake2013-01-081-7/+0
| |
| * Fixups.Michael Drake2013-01-081-2/+1
| |
| * Prompt core to deal with copy/paste correctly.Michael Drake2013-01-081-3/+2
| |
| * Untested update for new clipboard API.Michael Drake2013-01-081-32/+20
| |
| * Untested update for new clipboard API.Michael Drake2013-01-081-20/+47
| |
| * Make Monkey front end build with new clipboard API.Michael Drake2013-01-081-23/+17
| |
| * Update RISC OS front end to implement new clipboard API. TODO: Handle paste ↵Michael Drake2013-01-081-112/+36
| | | | | | | | when NetSurf doesn't own clipboard. Might be able to do some setup before KEY_PASTE is passed to the core.
| * Update framebuffer front end to implement new clipboard API.Michael Drake2013-01-081-89/+34
| |
| * Update GTK front end to implement new clipboard API.Michael Drake2013-01-082-42/+48
| |
| * Redo html textinput for new front end clipboard API. This doesn't affect ↵Michael Drake2013-01-082-27/+106
| | | | | | | | the textinput code's brokenness.
| * Update to use new front end clipboard functions. Now we build the buffer ↵Michael Drake2013-01-081-71/+88
| | | | | | | | from each individual text box in the core, instead of in each front end. Styles for text runs are generated in the HTML case.
| * Remove content_msg for PASTE, since it doesn't need a gui_window to get the ↵Michael Drake2013-01-083-9/+1
| | | | | | | | buffer from the front end now.
| * Change clipboard api, so it does not assume either ↵Michael Drake2013-01-081-6/+27
| | | | | | | | browser_window/gui_window, or html/text-plain content selection objects. This allows desktop/textarea to use clipboard.
| * Pass various control keys to core for clipboard control, etc.Michael Drake2013-01-081-1/+13
| |
| * Initial changes ready to improve caching decisionsVincent Sanders2013-01-071-28/+63
| |
| * Fix redraw of selection hightlight during selection drags.Michael Drake2013-01-071-21/+10
| |
| * Remove wrong comments.Michael Drake2013-01-071-2/+0
| |
| * Make comment concise.Michael Drake2013-01-071-3/+1
| |
| * Merge branch 'master' of git://git.netsurf-browser.org/netsurfMichael Drake2013-01-0712-84/+63
| |\
| | * Remove unused globalChris Young2013-01-061-1/+0
| | |
| | * Set the default pointer, not the busy pointer, after completing a redrawChris Young2013-01-061-1/+1
| | |
| | * Only set the busy pointer after we've decided not to bail out earlyChris Young2013-01-061-2/+2
| | |
| | * Track the mouse pointer on a per-window basisChris Young2013-01-0612-82/+62
| | |
| * | Remove forward declaration.Michael Drake2013-01-051-448/+441
| | |
| * | Put exported function comments in header.Michael Drake2013-01-052-97/+124
| | |
| * | Start rationalising textarea widget.Michael Drake2013-01-053-52/+56
| |/
| * Downgrade TLS version support if it turns out the server can't cope with ↵John-Mark Bell2013-01-049-27/+105
| | | | | | | | TLSv1.1.
| * Revert "Treat cookies from HTTP and HTTPS as identical."John-Mark Bell2013-01-043-31/+20
| | | | | | | | | | | | | | | | Sadly, this breaks path cookies on HTTPS sites. The correct fix is to implement RFC6265 in full (probably replacing urldb with something less complex, too). This reverts commit 924f8844d4e94f56232d70b25a925731ab19a84c.
| * Change the mouse pointer back to what it was (and what NetSurf thinks it is) ↵Chris Young2013-01-039-27/+52
| | | | | | | | instead of to the default pointer. Additionally don't use ami_update_pointer for treeview windows as AmigaOS has a pointer setting per window, but NetSurf is only storing the current one as a single global variable.
| * gui_window_2 var should be gwin for consistencyChris Young2013-01-031-48/+46
| |
| * Set the busy pointer during redrawsChris Young2013-01-032-1/+14
| |
| * For now selection clear and selection copy are handled by the bw. Select ↵Michael Drake2013-01-031-11/+14
| | | | | | | | | | | | all is only handled by the bw if nothing has claimed input. This stops the crash when select all is used in textarea. TODO: The special keys should not be handled by the bw, they should be handled by the content with focus.
| * Ensure selection related keypresses go to whatever has claimed input.Michael Drake2013-01-031-6/+7
| |
| * Merge branch 'master' of git://git.netsurf-browser.org/netsurfMichael Drake2013-01-0313-118/+258
| |\
| | * Fix typo.John-Mark Bell2013-01-031-1/+1
| | |
| | * Remove junk "http_equiv" string.John-Mark Bell2013-01-031-1/+1
| | |
| | * Treat cookies from HTTP and HTTPS as identical.John-Mark Bell2013-01-033-20/+31
| | |
| | * search for teh correct script type in the defer callback.Vincent Sanders2013-01-021-1/+1
| | | | | | | | | | | | Should fix SF bug #3599063