summaryrefslogtreecommitdiff
path: root/amiga
Commit message (Collapse)AuthorAgeFilesLines
* First attempt at Amiga printing support. Doesn't quite work - a column on ↵Chris Young2009-08-2311-51/+260
| | | | | | | | the left will print, but the rest of the page is an unexpected pastel pink. svn path=/trunk/netsurf/; revision=9410
* Fix crash on www.bebo.comChris Young2009-08-231-0/+2
| | | | svn path=/trunk/netsurf/; revision=9409
* Give "Save as" and "Save as..." different identifiers. Thanks to Samir ↵Chris Young2009-08-201-1/+1
| | | | | | | | Hawamdeh for the heads-up svn path=/trunk/netsurf/; revision=9377
* Add missing code to apply the fetcher settingsChris Young2009-08-182-76/+77
| | | | | | Make some stuff private to gui_options.c svn path=/trunk/netsurf/; revision=9349
* Tweak throbber anim speedChris Young2009-08-183-3/+5
| | | | svn path=/trunk/netsurf/; revision=9348
* Built libxml2-2.7.3 and gave it a sensible name.Chris Young2009-08-171-1/+1
| | | | svn path=/trunk/netsurf/; revision=9338
* Revert back to creating a new clip region rather than reusing the previous ↵Chris Young2009-08-172-16/+7
| | | | | | | | | one. This fixes the long-standing incremental_reflow problem, as apparently ClearClipRegion can't cope with the frequency of calls it gets with this switched on. svn path=/trunk/netsurf/; revision=9333
* Fix compileChris Young2009-08-141-6/+14
| | | | svn path=/trunk/netsurf/; revision=9302
* Merge Paul Blokus' selectscroll branch. Adds core select menu widget for ↵Michael Drake2009-08-141-0/+2
| | | | | | forms and core scrollbar widget. svn path=/trunk/netsurf/; revision=9289
* Revert r9108, as component order in libnsgif due to be corrected.Chris Young2009-08-092-44/+7
| | | | svn path=/trunk/netsurf/; revision=9137
* Copy libcurl.so, have built 7.19.5 with a sensible nameChris Young2009-08-091-2/+2
| | | | svn path=/trunk/netsurf/; revision=9133
* Support new libnsgif by adding bitmap flag BITMAP_ABGR.Chris Young2009-08-072-8/+53
| | | | | | | | | | | | | | This tells big endian systems that the data is in ABGR instead of RGBA. It should be ignored on little endian systems! Add support in Amiga platform code. -> All platform code that could be compiled for big endian systems will need to be updated to recognise BITMAP_ABGR. This includes GTK and Framebuffer frontends. Both BITMAP_ABGR *and* the endianness of the host will most likely need to be checked and the allocated bitmap format and/or bitmap plotter changed to handle ABGR component order. svn path=/trunk/netsurf/; revision=9108
* Disable resize with contents. This should stop the resize lockups once and ↵Chris Young2009-08-011-9/+8
| | | | | | for all. svn path=/trunk/netsurf/; revision=8950
* Make polling function return after a fetch_free operation, as under certain ↵Chris Young2009-07-301-15/+7
| | | | | | | | | | | (unknown) circumstances it starts wandering off to nodes which don't exist (the same happens when using NetSurf's rings). Remove debug svn path=/trunk/netsurf/; revision=8915
* Fix RISC OS and Amiga builds.John Mark Bell2009-07-271-2/+2
| | | | | | The sooner this stuff is in the core, the better. svn path=/trunk/netsurf/; revision=8827
* Revert r8804. This is still occuring, on two different XOOPS sites.Chris Young2009-07-261-0/+1
| | | | svn path=/trunk/netsurf/; revision=8807
* Allow the user to disable URL suggestion.Chris Young2009-07-261-0/+3
| | | | svn path=/trunk/netsurf/; revision=8806
* Remove setting incremental_reflow off by default. Whatever the cause, the ↵Chris Young2009-07-261-1/+0
| | | | | | | | libcss changes appear to have fixed it. svn path=/trunk/netsurf/; revision=8804
* Minor corrections for libcss buildChris Young2009-07-261-1/+1
| | | | svn path=/trunk/netsurf/; revision=8803
* Ensure quirks.css gets recognised as CSSChris Young2009-07-261-0/+0
| | | | svn path=/trunk/netsurf/; revision=8802
* Fix logicChris Young2009-07-261-14/+6
| | | | svn path=/trunk/netsurf/; revision=8801
* Merge LibCSS port to trunk.John Mark Bell2009-07-235-13/+18
| | | | svn path=/trunk/netsurf/; revision=8752
* Replace URL bar with custom StringView class. Thanks to Stephen Fellner, ↵Chris Young2009-07-236-1/+1102
| | | | | | | | Rene W Olsen and Joerg Strohmayer. svn path=/trunk/netsurf/; revision=8723
* Scale font sizes, for better accuracy.John Mark Bell2009-07-211-3/+3
| | | | svn path=/trunk/netsurf/; revision=8657
* Refactor text plotter and other font functions to remove dependency on CSS.John Mark Bell2009-07-215-68/+53
| | | | svn path=/trunk/netsurf/; revision=8641
* Switch off incremental reflow by default, as for some reason it started ↵Chris Young2009-07-181-0/+1
| | | | | | | | causing some sites randomly to freeze on load (with objects remaining) a couple of months back. svn path=/trunk/netsurf/; revision=8618
* Fix OS4.0 key duplication issue (unsat bug#62)Chris Young2009-07-181-1/+3
| | | | | | and there was much rejoicing svn path=/trunk/netsurf/; revision=8617
* Remove old progress pointer hackChris Young2009-07-151-2/+0
| | | | svn path=/trunk/netsurf/; revision=8562
* Rename TRANSPARENT to NS_TRANSPARENT to avoid clash on Windows. By MarkieB.Michael Drake2009-07-141-3/+3
| | | | svn path=/trunk/netsurf/; revision=8513
* next round of plotter refactorVincent Sanders2009-07-142-30/+48
| | | | svn path=/trunk/netsurf/; revision=8512
* Don't do higher quality scaling on OS4.0 as it doesn't work.Chris Young2009-07-123-3/+9
| | | | svn path=/trunk/netsurf/; revision=8484
* plotters line refactorVincent Sanders2009-07-102-18/+42
| | | | svn path=/trunk/netsurf/; revision=8446
* Move all the layers code into plotters.c and refactor to use gui_globals ↵Chris Young2009-07-095-106/+95
| | | | | | | | structure Purge option_direct_render svn path=/trunk/netsurf/; revision=8425
* Fix compilationChris Young2009-07-081-2/+2
| | | | svn path=/trunk/netsurf/; revision=8400
* ploter refactor of rectangle handling Vincent Sanders2009-07-082-47/+71
| | | | svn path=/trunk/netsurf/; revision=8399
* Migrate plotters to use a gui_globals pointer rather than RastPort.Chris Young2009-07-075-186/+180
| | | | svn path=/trunk/netsurf/; revision=8378
* Fix warningsChris Young2009-07-071-2/+2
| | | | svn path=/trunk/netsurf/; revision=8377
* GETSCREENANME documentationChris Young2009-07-051-2/+3
| | | | svn path=/trunk/netsurf/; revision=8334
* Add a note about how to get the best speed out of the OS4 version. Mostly ↵Chris Young2009-07-051-0/+14
| | | | | | | | this is to encourage people to use 32-bit screenmodes :) svn path=/trunk/netsurf/; revision=8333
* Refactor fill plotter to take a styleVincent Sanders2009-07-052-4/+4
| | | | svn path=/trunk/netsurf/; revision=8332
* Don't make the global bitmap a friend of the screen bitmap, instead allocate ↵Chris Young2009-07-052-4/+3
| | | | | | | | | | it so that alpha blitting and Cairo operations work correctly. Running NetSurf on a 16-bit screen is now possible without bits of the display missing or obliterated, however it does suffer a small performance hit. svn path=/trunk/netsurf/; revision=8331
* fix warningsChris Young2009-07-042-0/+3
| | | | svn path=/trunk/netsurf/; revision=8316
* Apply scaling quality also to thumbnails.Chris Young2009-07-041-1/+5
| | | | svn path=/trunk/netsurf/; revision=8315
* turn iconification back off as it isn't working reliably.Chris Young2009-07-041-1/+30
| | | | svn path=/trunk/netsurf/; revision=8312
* Basic iconification supportChris Young2009-07-041-68/+91
| | | | svn path=/trunk/netsurf/; revision=8310
* Script to show the source of the current pageChris Young2009-07-041-0/+24
| | | | svn path=/trunk/netsurf/; revision=8304
* Add GETSCREENNAME commandChris Young2009-07-041-1/+19
| | | | svn path=/trunk/netsurf/; revision=8303
* Minor positional changes. This code probably needs a rethink as it doesn't ↵Chris Young2009-07-021-2/+3
| | | | | | | | correctly advance for two-byte UTF8 chars. svn path=/trunk/netsurf/; revision=8276
* remove redundant clg callVincent Sanders2009-07-011-1/+0
| | | | svn path=/trunk/netsurf/; revision=8240
* Improve bitmap plotter APIVincent Sanders2009-06-302-23/+18
| | | | svn path=/trunk/netsurf/; revision=8195