summaryrefslogtreecommitdiff
path: root/amiga
Commit message (Collapse)AuthorAgeFilesLines
* Support for dragging in files (for file upload forms etc)Chris Young2008-09-072-11/+121
| | | | svn path=/trunk/netsurf/; revision=5271
* Much more efficient message handling/input loops, allows me to raise task ↵Chris Young2008-09-042-33/+75
| | | | | | | | priority back to default of 0 without impacting other processes. svn path=/trunk/netsurf/; revision=5238
* Added support code to allow CSET chunks to be read from clipboard IFF FTXT andChris Young2008-09-034-1/+63
| | | | | | | | | | | | converted as necessary. Added option to write UTF-8 direct to clipboard, setting CSET appropriately. Copying and pasting to/from webpages that are not in local charset and to/from other applications that set CSET when not using local charset, should now work correctly if clipboard_write_utf8 is set in the options. If not set, NetSurf will still convert from the charset specified in the clipboard when pasting, but will convert text to local charset and not write a CSET chunk for copy operations. svn path=/trunk/netsurf/; revision=5231
* Moved menu selection code to menu.cChris Young2008-09-035-184/+287
| | | | svn path=/trunk/netsurf/; revision=5230
* Simple pointer imagery (hopefully temporary)Chris Young2008-09-014-1/+52
| | | | svn path=/trunk/netsurf/; revision=5229
* Add shift and ctrl click support, set file comments to url.Chris Young2008-09-012-9/+35
| | | | svn path=/trunk/netsurf/; revision=5228
* Basic user-configurable pointer image support.Chris Young2008-08-313-9/+132
| | | | | | | | | | | | | | | | | | | | | GUI_POINTER_DEFAULT and GUI_POINTER_WAIT still use the Amiga system default pointers, and will not be overridden by NetSurf. Pointer imagery lives in Resources/Pointers and the filenames are all defined in the ptrs array at the top of gui.c, in the same order as in gui_pointer_shape - with the exception of GUI_POINTER_DEFAULT (this instead points to a "Blank" pointer for hiding the pointer) and GUI_POINTER_WAIT (reserved for future use, currently points to "Wait" but this will change). The file format is very simple. It is a text file containing 16 rows of 16 characters, with a newline or CR (or, in fact, any character as this is not checked) terminating each row. The seventeenth row indicates the pixel on which the "point" is set, as two digit X direction, a space, then two digits for the Y direction. Pointers/Point is based on the hand2 image by Andreas Kuerzinger (the original is in the AKPointerz.lha archive on Aminet) svn path=/trunk/netsurf/; revision=5227
* Menu tidy-up, string correction and swap of Source and Text in the ↵Chris Young2008-08-312-14/+14
| | | | | | save/export menu svn path=/trunk/netsurf/; revision=5224
* Option to stop iframes popping up in new windowsChris Young2008-08-301-2/+8
| | | | svn path=/trunk/netsurf/; revision=5223
* 401 authentication/login support.Chris Young2008-08-305-25/+241
| | | | svn path=/trunk/netsurf/; revision=5222
* Added support for scaling bitmaps, filled polygons, filled circles and clipping.Chris Young2008-08-303-81/+174
| | | | | | Fixes major display issues with eg. www.bbc.co.uk amongst others. svn path=/trunk/netsurf/; revision=5221
* Experimental font code to plot Unicode text.Chris Young2008-08-302-7/+178
| | | | svn path=/trunk/netsurf/; revision=5220
* Removed dependency on codesets.libraryChris Young2008-08-273-63/+16
| | | | svn path=/trunk/netsurf/; revision=5214
* Improved text reflow moreChris Young2008-08-261-12/+31
| | | | svn path=/trunk/netsurf/; revision=5208
* Corrected english-british entry.Chris Young2008-08-261-1/+1
| | | | svn path=/trunk/netsurf/; revision=5206
* Potential fix for requester.class crash on startup on some systems.Chris Young2008-08-261-2/+2
| | | | svn path=/trunk/netsurf/; revision=5205
* Work on local charset encoded strings for improved layout.Chris Young2008-08-261-7/+25
| | | | svn path=/trunk/netsurf/; revision=5204
* Added PDF export to Amiga port.Chris Young2008-08-265-16/+150
| | | | svn path=/trunk/netsurf/; revision=5203
* Moved Amiga menu code into separate file.Chris Young2008-08-255-66/+247
| | | | svn path=/trunk/netsurf/; revision=5199
* Include Amiga-specific optionsChris Young2008-08-251-0/+42
| | | | svn path=/trunk/netsurf/; revision=5198
* Fix gui_browser_window_create and browser_window_create functions for new ↵Chris Young2008-08-241-4/+6
| | | | | | | | new_tab parameter. svn path=/trunk/netsurf/; revision=5196
* Basic hotlist supportChris Young2008-08-233-9/+128
| | | | svn path=/trunk/netsurf/; revision=5188
* Header file for functions in utf8.cChris Young2008-08-231-0/+24
| | | | svn path=/trunk/netsurf/; revision=5186
* Basic download windowChris Young2008-08-232-39/+154
| | | | svn path=/trunk/netsurf/; revision=5185
* Convert UTF-8 text to local charset before printing to screenChris Young2008-08-232-5/+94
| | | | svn path=/trunk/netsurf/; revision=5184
* Code cleanup.Chris Young2008-08-215-52/+34
| | | | svn path=/trunk/netsurf/; revision=5167
* Added clipboard support, fixed a problem causing a crash in the font ↵Chris Young2008-08-211-35/+179
| | | | | | functions in font.c svn path=/trunk/netsurf/; revision=5166
* Added british-englishChris Young2008-08-211-0/+1
| | | | svn path=/trunk/netsurf/; revision=5165
* Reduced task priority to -5 and increased stack to 64kChris Young2008-08-211-0/+0
| | | | svn path=/trunk/netsurf/; revision=5164
* Implemented form select menu, and basic pull-down menu template.Chris Young2008-08-191-13/+94
| | | | svn path=/trunk/netsurf/; revision=5158
* Implemented mouse dragging and code for select forms (which works but the ↵Chris Young2008-08-182-45/+168
| | | | | | | | | menu is not created with the correct entries yet). Now looks in options for screen and window size and position. svn path=/trunk/netsurf/; revision=5153
* Add links to resource files.John Tytgat2008-08-178-0/+8
| | | | svn path=/trunk/netsurf/; revision=5138
* Reversed order of running a callback and removing it from the schedule list, ↵Chris Young2008-08-171-13/+3
| | | | | | | | this resolves a serious system freeze especially prevalent on XOOPS-based websites. svn path=/trunk/netsurf/; revision=5137
* Close fonts properly and default back to initial RastPort font.Chris Young2008-08-176-36/+59
| | | | svn path=/trunk/netsurf/; revision=5136
* Implemented line styles and widthsChris Young2008-08-151-24/+78
| | | | svn path=/trunk/netsurf/; revision=5131
* More error checkingChris Young2008-08-151-7/+41
| | | | svn path=/trunk/netsurf/; revision=5129
* Updated for hubbub, redraws now scheduled for next input loopChris Young2008-08-152-100/+96
| | | | svn path=/trunk/netsurf/; revision=5128
* Fixed font stylesChris Young2008-08-122-34/+39
| | | | svn path=/trunk/netsurf/; revision=5075
* Updated to support changes in image/bitmap.hChris Young2008-08-121-15/+38
| | | | svn path=/trunk/netsurf/; revision=5074
* Modified to use space.gadget and blit directly to the window's rastport, ↵Chris Young2008-08-112-51/+201
| | | | | | | | also added scrollbar functionality (thanks to Ami603) svn path=/trunk/netsurf/; revision=5034
* Added code to set correct font.Chris Young2008-08-105-84/+260
| | | | svn path=/trunk/netsurf/; revision=4986
* Functions now return correct values for proper text formatting.Chris Young2008-08-091-20/+21
| | | | svn path=/trunk/netsurf/; revision=4983
* Implemented localisation using the existing translated messages files.Chris Young2008-08-092-135/+297
| | | | svn path=/trunk/netsurf/; revision=4982
* Warn and error messages are now displayed in a requester.Chris Young2008-08-091-3/+17
| | | | svn path=/trunk/netsurf/; revision=4981
* Added support for multiple windows.Chris Young2008-08-093-138/+366
| | | | svn path=/trunk/netsurf/; revision=4972
* Rewritten to use window.class and bitmap.image instead of writing directly ↵Chris Young2008-08-082-23/+142
| | | | | | | | to the window bitmap. Basic GUI added to allow URLs to be entered. svn path=/trunk/netsurf/; revision=4965
* Corrected bitmap plotter RGB format.Chris Young2008-08-071-1/+1
| | | | svn path=/trunk/netsurf/; revision=4949
* Basic plotter functions and support code for the plotters.Chris Young2008-08-074-14/+204
| | | | svn path=/trunk/netsurf/; revision=4948
* OS4 32-bit icon for NetSurf.Chris Young2008-08-031-0/+0
| | | | svn path=/trunk/netsurf/; revision=4878
* Opens and closes timer.device, and creates a new list - required for ↵Chris Young2008-08-031-4/+44
| | | | | | | | scheduling code in schedule.c svn path=/trunk/netsurf/; revision=4877