summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* allow netsurf to build with gtk3Vincent Sanders2012-05-1658-3104/+8598
| | | | svn path=/trunk/netsurf/; revision=13926
* Fixed prototyp, comments.Ole Loots2012-05-132-3/+3
| | | | svn path=/trunk/netsurf/; revision=13925
* Prepared code for different button states (= different image ). Ole Loots2012-05-132-52/+157
| | | | svn path=/trunk/netsurf/; revision=13924
* Use safe string functions. Ole Loots2012-05-135-33/+33
| | | | svn path=/trunk/netsurf/; revision=13923
* Allow a comma-separated list of fonts to be specified in font_unicode_listChris Young2012-05-093-2/+22
| | | | | | | | | | | to provide more preferred fonts. eg. if a user has dedicated Japanese and Korean fonts available they might want a config like: font_unicode:Japanese font_unicode_list:Korean,Code2000 This will scan Japanese and Korean fonts first, then fill in any blanks with Code2000 (followed by alphabetically all other fonts installed) svn path=/trunk/netsurf/; revision=13917
* Tag Licence and Credits for all OSChris Young2012-05-071-10/+10
| | | | svn path=/trunk/netsurf/; revision=13915
* More full stopsChris Young2012-05-071-3/+3
| | | | svn path=/trunk/netsurf/; revision=13914
* Remove some full stops, so the style is consistentChris Young2012-05-071-9/+9
| | | | svn path=/trunk/netsurf/; revision=13913
* Stop abusing certain Messages; add some dedicated non-crazy HelpHintsChris Young2012-05-074-36/+56
| | | | svn path=/trunk/netsurf/; revision=13912
* Tag some RISC OS specific errors as suchChris Young2012-05-071-30/+30
| | | | svn path=/trunk/netsurf/; revision=13911
* Generate all appropriate Messages files when making a package forChris Young2012-05-071-0/+6
| | | | | | distribution. svn path=/trunk/netsurf/; revision=13910
* Progress display for font scanningChris Young2012-05-072-17/+112
| | | | svn path=/trunk/netsurf/; revision=13909
* Rescan fonts if preferred fallback font is changed in the GUIChris Young2012-05-065-23/+90
| | | | svn path=/trunk/netsurf/; revision=13908
* Use font_unicode option as preferred (first scanned) font. Ideally need toChris Young2012-05-054-21/+88
| | | | | | | expand this so multiple fonts can be specified. Allow disabling of scanning other fonts. Add stubs for a scanning progress GUI. svn path=/trunk/netsurf/; revision=13907
* Reject non-scalable BulletAPI fontsChris Young2012-05-051-0/+6
| | | | svn path=/trunk/netsurf/; revision=13906
* Integrate Unicode font scanner into NetSurf.Chris Young2012-05-056-26/+83
| | | | | | | | NetSurf will now use any available font when trying to print characters that are missing from the current font. TODO: Preferred font list. svn path=/trunk/netsurf/; revision=13905
* Add loading, parse OS fonts into a list (which can optionally alreadyChris Young2012-05-051-18/+100
| | | | | | contain fonts) before scanning svn path=/trunk/netsurf/; revision=13904
* Tidy-up, split into sensible functions for NetSurf integration,Chris Young2012-05-051-20/+113
| | | | | | | | documentation. Cache file loading needs adding and ami_font_scan_fonts needs to add to a list of fonts, and then send those to the scanner so we can put some preferred fonts on the top of the list and avoid duplication. svn path=/trunk/netsurf/; revision=13903
* Font glyph scanner. Currently works as a standalone program which outputs aChris Young2012-05-041-0/+142
| | | | | | file for NetSurf to ignore. svn path=/trunk/netsurf/; revision=13902
* Ensure we are using the faster(?) character size functions in allChris Young2012-05-021-7/+24
| | | | | | applicable places. svn path=/trunk/netsurf/; revision=13901
* fix crashChris Young2012-05-011-1/+1
| | | | svn path=/trunk/netsurf/; revision=13900
* Only struct gui_window_2 should use variable name 'gwin'. gui_window isChris Young2012-04-291-129/+129
| | | | | | always 'g'. svn path=/trunk/netsurf/; revision=13899
* Change menus so menu functions are called internally by window.classChris Young2012-04-294-316/+508
| | | | | | | | (RA_HandleInput). This makes menu selection more reliable and stops us missing menu events which appeared to be getting lost within the HANDLEINPUT method. svn path=/trunk/netsurf/; revision=13898
* Make simple refresh a configurable optionChris Young2012-04-282-36/+21
| | | | svn path=/trunk/netsurf/; revision=13896
* Fix simplerefresh. When dragging windows back on-screen, damaged areas areChris Young2012-04-281-10/+20
| | | | | | | | | still not repaired fully. Overlapping windows have no such problem. Menu events seem to be getting lost in simple refresh mode (this may be related to event triggered for redrawing the area under the menu when it is closed) svn path=/trunk/netsurf/; revision=13895
* Add AppWindow ourself rather than letting window.class create it. InitialChris Young2012-04-284-12/+15
| | | | | | | | tests indicate we are no longer losing icon drop events although there is still an "event leak" somewhere. Fix warnings. svn path=/trunk/netsurf/; revision=13894
* cleanup and reorganise low level cache source ready for extending with disc ↵Vincent Sanders2012-04-281-1476/+1420
| | | | | | cache svn path=/trunk/netsurf/; revision=13893
* Only check transparent pixels when transparency is enabled. Ole Loots2012-04-261-15/+17
| | | | svn path=/trunk/netsurf/; revision=13891
* set rendering flag within throbber_stop / start functions, update toolbar ↵Ole Loots2012-04-251-19/+11
| | | | | | buttons on throbber stop. svn path=/trunk/netsurf/; revision=13890
* Fix typo ( fontbitmap was never destroyed within dtor )Ole Loots2012-04-241-3/+4
| | | | svn path=/trunk/netsurf/; revision=13889
* Small font plotter speedup by reducing function calls in a draw glyph loop. Ole Loots2012-04-241-63/+60
| | | | svn path=/trunk/netsurf/; revision=13888
* Implemented "paste clipboard" for toolbar URL textbox. Ole Loots2012-04-241-4/+24
| | | | svn path=/trunk/netsurf/; revision=13887
* Optimized bitmap blitting: cache native (converted) bitmaps. Ole Loots2012-04-192-203/+327
| | | | | | This required an change to the convert and blit routines - for opaque images, they convert the whole image. Transparent images are still converted on demand and still only the clipped area is converted. This is incomplete - native buffers should be stored in the well known bitmap buffer, but currently the bitmap struct holds a second buffer which contains converted data. svn path=/trunk/netsurf/; revision=13886
* Re-jig URL launch as would never have fallen back to using openurl.library.Chris Young2012-04-183-20/+24
| | | | | | Add it as an option instead. svn path=/trunk/netsurf/; revision=13882
* Replace strncpy with strlcpy, as strncpy is not guaranteed to beChris Young2012-04-182-3/+3
| | | | | | NULL-terminated. (thx Colin Wenzel) svn path=/trunk/netsurf/; revision=13881
* Add libdom to the list of required libraries.François Revel2012-04-171-0/+1
| | | | | | Patch by Paul Waring. svn path=/trunk/netsurf/; revision=13880
* Fix building on Haiku.François Revel2012-04-171-4/+9
| | | | | | Some ui_color codes were renamed recently. Account for this. svn path=/trunk/netsurf/; revision=13879
* Port to libdom changed HTML content's base_target from talloc_strdup to ↵Michael Drake2012-04-171-1/+1
| | | | | | strdup, so use free instead of talloc_free in html_destroy. svn path=/trunk/netsurf/; revision=13877
* Fix meta refresh.Michael Drake2012-04-161-1/+2
| | | | svn path=/trunk/netsurf/; revision=13876
* Fix frameset processing.Michael Drake2012-04-161-0/+3
| | | | svn path=/trunk/netsurf/; revision=13875
* Border width hint is concerned with border attribute, not width attribute. ↵Michael Drake2012-04-161-4/+3
| | | | | | Fixes table borders. svn path=/trunk/netsurf/; revision=13874
* Fix processing of tags in HEAD. Fixes title, favicons, etc.Michael Drake2012-04-161-5/+5
| | | | svn path=/trunk/netsurf/; revision=13873
* Added menu shortcuts.Ole Loots2012-04-153-6/+6
| | | | svn path=/trunk/netsurf/; revision=13872
* Correct commentChris Young2012-04-151-2/+5
| | | | svn path=/trunk/netsurf/; revision=13871
* Fix bitmap creation - JPEG where always set to opaque = false, which lead to ↵Ole Loots2012-04-142-23/+30
| | | | | | | | blitter checking all pixels for transparency in an loop. Prepare for caching of converted bitmaps. svn path=/trunk/netsurf/; revision=13869
* Remove image cache status from user-facing listing.Michael Drake2012-04-131-12/+22
| | | | svn path=/trunk/netsurf/; revision=13865
* Updated FAQOle Loots2012-04-121-4/+16
| | | | svn path=/trunk/netsurf/; revision=13862
* call toolbar_exit()Ole Loots2012-04-122-1/+1
| | | | svn path=/trunk/netsurf/; revision=13861
* Share a single icon instance for multiple toolbars. Ole Loots2012-04-122-28/+62
| | | | svn path=/trunk/netsurf/; revision=13860
* Fix errors when installing multiple times due to cp failing on .svn directories.François Revel2012-04-121-8/+4
| | | | svn path=/trunk/netsurf/; revision=13859