summaryrefslogtreecommitdiff
path: root/amiga/clipboard.c
Commit message (Collapse)AuthorAgeFilesLines
* Missing WITH_NS_SVG #ifdefChris Young2009-05-191-0/+2
| | | | svn path=/trunk/netsurf/; revision=7524
* Add ability to copy SVGs to the clipboard and save in IFF DR2D format.Chris Young2009-05-191-0/+14
| | | | svn path=/trunk/netsurf/; revision=7523
* IFF save now works - needed an unexpected NULL as the first parameter to ↵Chris Young2009-05-161-9/+0
| | | | | | | | | | DTM_WRITE DTA_ObjName is now the URL, as this is the only field that is being written by picture.datatype (bug in picture.datatype?). ObjAuthor and ObjAnnotation left in as the DTM_COPY method might be able to use them. svn path=/trunk/netsurf/; revision=7518
* Copy and save images as IFF ILBM attempt 2.Chris Young2009-05-161-67/+7
| | | | | | | Copy now works, saving just creates an empty file - probably something wrong with my DTM_WRITE call. svn path=/trunk/netsurf/; revision=7517
* Copy and save images in IFF ILBM format. Currently, the data in the BODY ↵Chris Young2009-05-161-1/+83
| | | | | | | | chunk is wrong. svn path=/trunk/netsurf/; revision=7516
* Move gui_drag_save_selection() into the same file as gui_drag_save_object() ↵Chris Young2009-03-241-4/+0
| | | | | | | | as they will have common code when implemented. svn path=/trunk/netsurf/; revision=6859
* Change memory allocations to MEMF_PRIVATE to enable paging on OS4.1.Chris Young2008-11-021-1/+1
| | | | svn path=/trunk/netsurf/; revision=5649
* Track the current/last used browser window (at the moment, just for ARexx).Chris Young2008-10-251-0/+238
Extended ARexx port. First two are primarily for openurl.library: * OPEN now takes a parameter NEW=NEWWINDOW/S to open the URL in a new window (default is to open in the current browser window) * TOFRONT will bring NetSurf's screen to the front (this may be extended in the future to bring the current browser window to the front - which might be better for when it is running on the WB screen) Next is to make it easy to support getvideo.rexx: * GETURL returns the URL of the current browser window in RESULT GetVideo.nsrx script will get the current URL and pass it to rexx:getvideo.rexx Currently there is no way to call ARexx scripts directly from NetSurf, or any way to specify whether to save, play or saveplay the video without editing the script. [clipboard.c/clipboard.h were missing from previous commit] svn path=/trunk/netsurf/; revision=5631