summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Use core clipboard copy function. ami_selection_to_text() will need fixing ↵Chris Young2012-08-031-18/+1
| | | | as it still needs selection_traverse()
* Move Push- and PopChunk out of the selection_traversal functionChris Young2012-08-031-51/+30
|
* Grab pointer during drag.Michael Drake2012-08-021-0/+15
|
* Use selection_copy_to_clipboard instead of peering into core.Michael Drake2012-08-021-24/+1
|
* Use selection_copy_to_clipboard instead of peering into core.Michael Drake2012-08-021-12/+1
|
* Update to use selection_copy_to_clipboard, although this code is all ↵Michael Drake2012-08-021-23/+1
| | | | commented out anyway.
* Remove remaining use of core internals.Michael Drake2012-08-021-59/+1
|
* Use selection_copy_to_clipboard instead of peering into core innards.Michael Drake2012-08-021-40/+1
|
* Use selection_copy_to_clipboard instead of peering at core innards.Michael Drake2012-08-021-30/+1
|
* Use selection_copy_to_clipboard instead of peering at core innards.Michael Drake2012-08-021-38/+1
|
* Add core function for copy to clipboard, so we don't need to expose ↵Michael Drake2012-08-022-0/+51
| | | | render/box.h internals to front ends.
* Fix click travel tolerance calc. Has to travel more than 5px to become drag.Michael Drake2012-08-021-2/+2
|
* Fix freetype nsfont_position_in_string to return nearest, rather than next.Michael Drake2012-08-011-0/+6
|
* Simple clipboard support. Only used within browser window.Michael Drake2012-08-013-30/+187
|
* Cleanup drag end.Michael Drake2012-08-011-1/+6
|
* Convert move pointer during build and use it for page drag-scroll.Michael Drake2012-08-013-0/+7
|
* Merge branch 'master' of git://git.netsurf-browser.org/netsurfMichael Drake2012-08-015-1/+111
|\
| * add document IDL and test for geteleemntbyidVincent Sanders2012-08-015-1/+111
| |
* | Pass drags to core. Enables page drag-scrolling, text selection, frames ↵Michael Drake2012-08-011-28/+74
|/ | | | scrollbars, etc.
* Use enum instead of magic numbers for tracking key modifier states. Pass ↵Michael Drake2012-08-014-31/+131
| | | | special keys to core (e.g. WORD_LEFT, SELECT_ALL, etc).
* Pass pointer hotspots to libnsfb.Michael Drake2012-08-012-2/+4
|
* Scroll text in writable text widget so caret is always in view.Michael Drake2012-08-011-16/+19
|
* Only writable text widget needs caret rendering.Michael Drake2012-08-011-18/+0
|
* Fix build: we need libdom now.John-Mark Bell2012-08-011-2/+2
|
* resume parse on sync script error as well as successVincent Sanders2012-07-311-0/+6
|
* Handle CTRL modifier too. CTRL with cursor left/right is same as SHIFT. ↵Michael Drake2012-07-311-0/+29
| | | | CTRL+U clears writable.
* Cursor left/right keys plus modifier move caret to extrems.Michael Drake2012-07-311-6/+15
|
* Merge branch 'master' of git://git.netsurf-browser.org/netsurfMichael Drake2012-07-313-14/+9
|\
| * Merge branch 'master' of git://git.netsurf-browser.org/netsurfVincent Sanders2012-07-315-3/+44
| |\
| * | add post parse script executionVincent Sanders2012-07-313-14/+9
| | |
* | | Factor out some repeated code.Michael Drake2012-07-311-23/+10
| |/ |/|
* | Make text input widget remove caret on "strip focus" event.Michael Drake2012-07-311-2/+17
| |
* | Make browser window widget remove caret on "strip focus" event.Michael Drake2012-07-311-0/+15
| |
* | Add widget callback for getting stripped of focus. Call it in the input ↵Michael Drake2012-07-312-0/+11
| | | | | | | | setter, on previous input holder.
* | Use setter when giving clicked input focus.Michael Drake2012-07-311-1/+1
|/
* add another script testVincent Sanders2012-07-313-2/+14
|
* When a text input widget has its text set, and it has the caret, move the ↵Michael Drake2012-07-311-0/+21
| | | | caret to the end.
* Core's gui_window_remove_caret should only remove caret if the bw in ↵Michael Drake2012-07-311-2/+6
| | | | question owns the caret.
* Claim, position, and render caret in text input widget. Currently does not ↵Michael Drake2012-07-311-38/+156
| | | | remove caret when input widget is stripped of focus (because widget doesn't know).
* Round to nearest point between chars in nsfont_position_in_string, instead ↵Michael Drake2012-07-311-1/+2
| | | | of rounding down.
* When setting fbtk caret, register callback for redrawing caret removal.Michael Drake2012-07-314-25/+31
|
* Remove strlen from redraw functions.Michael Drake2012-07-311-2/+2
|
* Add support for editing text input widget contents from arbitrary position ↵Michael Drake2012-07-312-11/+33
| | | | in string (instead of just end).
* Merge branch 'vince/script-async'Vincent Sanders2012-07-3116-179/+599
|\
| * fix global handlingVincent Sanders2012-07-313-3/+14
| |
| * fix dom parser error return checkVincent Sanders2012-07-311-1/+1
| |
| * fix parse completion - working syncronous scriptsVincent Sanders2012-07-303-37/+72
| |
| * extend html data processing to deal with paused parseVincent Sanders2012-07-302-47/+72
| |
| * extend completion typesVincent Sanders2012-07-303-28/+246
| |
| * extend script enumeration to include asyncronous and deferred scriptsVincent Sanders2012-07-304-42/+55
| |