summaryrefslogtreecommitdiff
path: root/amiga/clipboard.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix copying text/plain to clipboardJohn Mark Bell2011-02-091-1/+3
| | | | svn path=/trunk/netsurf/; revision=11636
* Pass space down to ami_add_to_clipboardChris Young2010-12-201-1/+1
| | | | svn path=/trunk/netsurf/; revision=11116
* Move drag icon stuff to own file; fix warningsChris Young2010-10-301-0/+1
| | | | svn path=/trunk/netsurf/; revision=10922
* Selection drags now use clipboard unit 1 instead of 0. This stops the user'sChris Young2010-10-241-6/+26
| | | | | | clipboard being unexpectedly changed. svn path=/trunk/netsurf/; revision=10905
* Ensure kiosk_mode and frame windows are (a) handled the same wrt menus and ↵Chris Young2010-09-281-0/+4
| | | | | | | | (b) not trying to manipulate non-existant menus svn path=/trunk/netsurf/; revision=10855
* Allow text selection dragging across (NetSurf) windows. DisplayBeep if it ↵Chris Young2010-07-271-5/+19
| | | | | | | | is dropped somewhere invalid. svn path=/trunk/netsurf/; revision=10665
* ami_easy_clipboard just got easier, and a buffer overrun/memory leak got fixedChris Young2010-07-241-65/+12
| | | | svn path=/trunk/netsurf/; revision=10662
* Fix menu disable on tab switch and CutChris Young2010-07-241-3/+72
| | | | svn path=/trunk/netsurf/; revision=10661
* Amiga: Add "cut" option; make cut/copy/paste menus context sensitive; allow ↵Chris Young2010-07-241-7/+31
| | | | | | | | | | | dragging selections within NetSurf window to text fields (does not work across windows). todo: switching tabs will reset cut/copy/paste menus to initial state; cut option is putting something on the clipboard which causes a crash when pasting it back svn path=/trunk/netsurf/; revision=10660
* Purge parserutilsChris Young2010-05-031-2/+5
| | | | svn path=/trunk/netsurf/; revision=10547
* Changes required for new-cacheChris Young2010-03-281-3/+7
| | | | svn path=/trunk/netsurf/; revision=10186
* 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