summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* + Refactor input handling from browser window code into contentMichael Drake2010-06-0430-1573/+1770
| | | | | | | | | | | | | handlers. + Disentangle all box tree manipulation from browser window code and put it where it belongs. + Move other content specific and other irrelevant code from browser window handling to appropriate places. + Put mouse state enum in new mouse header, since it's not just used by browser window code, and it is used by treeview windows on the treeview branch. svn path=/trunk/netsurf/; revision=10561
* Add iframe comment.Michael Drake2010-06-031-0/+1
| | | | svn path=/trunk/netsurf/; revision=10559
* Activate browser window after search, otherwise it doesn't get IntuiTicks ↵Chris Young2010-05-161-0/+2
| | | | | | | | events so won't scroll to the search term. svn path=/trunk/netsurf/; revision=10552
* Amiga font code revamped and fixed. Will now fall back to a different font ↵Chris Young2010-05-069-129/+236
| | | | | | | | | | | if the character isn't present in the current one, this needs a complete or near-complete Unicode font in order to be useful - Code2000 and Bitstream Cyberbit are auto-detected by NetSurf on startup if none is configured. Japanese websites now display correctly, along with Japanese characters within Google UK search results etc. svn path=/trunk/netsurf/; revision=10551
* rationalise callback routines to use a unified interfaceVincent Sanders2010-05-045-349/+292
| | | | svn path=/trunk/netsurf/; revision=10550
* Fix assert. This is wrong, needs investigation.Chris Young2010-05-031-1/+1
| | | | svn path=/trunk/netsurf/; revision=10549
* Fix loops reading too many charactersChris Young2010-05-031-3/+3
| | | | svn path=/trunk/netsurf/; revision=10548
* Purge parserutilsChris Young2010-05-032-5/+7
| | | | svn path=/trunk/netsurf/; revision=10547
* Build libparserutils (and NetSurf) against libiconv instead of newlib's iconv.Chris Young2010-05-034-6/+12
| | | | | | | | | This fixes the bug with lpu's iconv filter causing freezing on OS4 NetSurf. With an appropriate font (eg. Bitstream Cyberbit) Japanese characters will now display. Test websites work, but proper Japanese websites cause an assert which may be caused by amiga/font.c incorrect text size calculations. svn path=/trunk/netsurf/; revision=10546
* Remove Export tab properly when building without HaruChris Young2010-05-031-0/+4
| | | | svn path=/trunk/netsurf/; revision=10545
* Allow building of AmigaOS4 Cairo and non-Cairo versions of NetSurf in same ↵Chris Young2010-05-033-4/+6
| | | | | | source tree svn path=/trunk/netsurf/; revision=10544
* Ensure we are using the libpng 1.2 includes, as OS4 Cairo is using a deprecatedChris Young2010-05-033-4/+4
| | | | | | function which does not exist in libpng 1.4. svn path=/trunk/netsurf/; revision=10543
* Lay out to correct paper width for printing.Steve Fryatt2010-05-021-3/+2
| | | | svn path=/trunk/netsurf/; revision=10542
* Remove erroneous assertion: there may be no bitmap object if there was no ↵John Mark Bell2010-05-011-0/+9
| | | | | | PNG data. svn path=/trunk/netsurf/; revision=10540
* Forcibly disable PDF export support until it gets fixed.John Mark Bell2010-05-011-1/+1
| | | | svn path=/trunk/netsurf/; revision=10539
* Update root certificatesChris Young2010-05-011-13/+655
| | | | svn path=/trunk/netsurf/; revision=10538
* Update 2 SObjs installation (create links for updated libpng and unnecessary ↵Chris Young2010-04-302-8/+36
| | | | | | | | clutter for libz) svn path=/trunk/netsurf/; revision=10537
* Restyle developer list.Michael Drake2010-04-301-56/+77
| | | | svn path=/trunk/netsurf/; revision=10536
* Correct name.Steve Fryatt2010-04-301-1/+1
| | | | svn path=/trunk/netsurf/; revision=10535
* Update definition of "NetSurf Developers". Pedantic spelling changes.John Mark Bell2010-04-301-10/+60
| | | | svn path=/trunk/netsurf/; revision=10533
* Tweak for OS4.1 Update 2Chris Young2010-04-301-2/+2
| | | | svn path=/trunk/netsurf/; revision=10532
* Fix assert when clicking empty text boxesChris Young2010-04-301-1/+1
| | | | svn path=/trunk/netsurf/; revision=10531
* Consolidate several 'myrealloc' functions into ns_realloc, rename one which ↵Daniel Silverstone2010-04-3010-108/+42
| | | | | | *is* different, thereby eliminating the word 'myrealloc' from the NS codebase svn path=/trunk/netsurf/; revision=10530
* Include as many of the licence texts, and which components they apply to, ↵Rob Kendrick2010-04-306-23/+1817
| | | | | | for as much as I can think of to the about document. svn path=/trunk/netsurf/; revision=10529
* ensure widget redraw flag is correctly updatedVincent Sanders2010-04-301-0/+2
| | | | svn path=/trunk/netsurf/; revision=10528
* Add missing includesJohn Mark Bell2010-04-302-0/+2
| | | | svn path=/trunk/netsurf/; revision=10525
* It turns out that realloc(ptr, 0) --> free(ptr) is not actually required by ↵John Mark Bell2010-04-3014-30/+76
| | | | | | | | the C standard (whereas realloc(NULL, size) --> malloc(size) is). Therefore, explicitly model the behaviour expected by our libraries (that realloc of 0 size is equivalent to free). svn path=/trunk/netsurf/; revision=10524
* Don't check if the next character is outside the printable string, if it is ↵Chris Young2010-04-291-15/+6
| | | | | | | | it'll pick up the NULL terminator anyway. svn path=/trunk/netsurf/; revision=10523
* Text kerningChris Young2010-04-291-17/+58
| | | | svn path=/trunk/netsurf/; revision=10522
* More correct font width calculations/placingChris Young2010-04-291-4/+10
| | | | svn path=/trunk/netsurf/; revision=10518
* Possibly more accurate text placementChris Young2010-04-291-3/+3
| | | | svn path=/trunk/netsurf/; revision=10517
* Change schedule_run to a BOOL as this more standard for platform code.Chris Young2010-04-292-4/+2
| | | | svn path=/trunk/netsurf/; revision=10516
* fix pending redraw discoveryVincent Sanders2010-04-284-10/+21
| | | | svn path=/trunk/netsurf/; revision=10515
* The schedule_run function is only called by the frontends so remove it from ↵Vincent Sanders2010-04-288-15/+47
| | | | | | | | | the core header and add its definition to the frontend headers. Alter the framebuffer schedule_run to return the time untill the next event. svn path=/trunk/netsurf/; revision=10512
* Update fonts immediately after requester use/saveChris Young2010-04-281-0/+3
| | | | svn path=/trunk/netsurf/; revision=10511
* Don't list unvisited pagesChris Young2010-04-281-0/+3
| | | | svn path=/trunk/netsurf/; revision=10510
* Ensure ami_remove_timer_event code doesn't get executed unless necessary.Chris Young2010-04-281-0/+2
| | | | svn path=/trunk/netsurf/; revision=10509
* Bump max memory cache size from 6.4MB to 64MB.Michael Drake2010-04-281-1/+1
| | | | svn path=/trunk/netsurf/; revision=10506
* fill bottom right hand corner of framebuffer furnitureVincent Sanders2010-04-284-1/+31
| | | | svn path=/trunk/netsurf/; revision=10505
* Reformat all tabs when window size changesChris Young2010-04-271-4/+18
| | | | svn path=/trunk/netsurf/; revision=10504
* Unref uri after sending it to hlcache when requesting a css pending import, ↵Daniel Silverstone2010-04-271-0/+3
| | | | | | so that we don't leak the uris svn path=/trunk/netsurf/; revision=10503
* Log any remaining interned strings (there should be none)John Mark Bell2010-04-271-0/+7
| | | | svn path=/trunk/netsurf/; revision=10502
* First step to fixing memory leaks -- Box model no longer leaks computed stylesDaniel Silverstone2010-04-276-36/+56
| | | | svn path=/trunk/netsurf/; revision=10500
* Improve handling of percentage margins and paddings on floats. Fixes ↵Michael Drake2010-04-271-10/+39
| | | | | | pond.org.uk. This is still not ideal and there are cases where we don't match other browsers. svn path=/trunk/netsurf/; revision=10497
* Fix vertical placement of absolute positioned inlines using staic position. ↵Michael Drake2010-04-271-17/+25
| | | | | | Simplify placement of inlines on a line. svn path=/trunk/netsurf/; revision=10495
* Clean up caches on exitJohn Mark Bell2010-04-275-5/+122
| | | | svn path=/trunk/netsurf/; revision=10494
* Make sure that an event occurred before inspecting itJohn Mark Bell2010-04-271-5/+5
| | | | svn path=/trunk/netsurf/; revision=10493
* Ensure that we clean up the root browser windowJohn Mark Bell2010-04-271-9/+5
| | | | svn path=/trunk/netsurf/; revision=10492
* Fix float wrap issue. (Amiga.org nav bar.)Michael Drake2010-04-261-1/+2
| | | | svn path=/trunk/netsurf/; revision=10490
* hopefully fix the _GNU_SOURCE messVincent Sanders2010-04-262-9/+19
| | | | svn path=/trunk/netsurf/; revision=10487