summaryrefslogtreecommitdiff
path: root/amiga
Commit message (Collapse)AuthorAgeFilesLines
* 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
* 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
* Correct commentChris Young2012-04-151-2/+5
| | | | svn path=/trunk/netsurf/; revision=13871
* Just get glyph widths rather than the entire glyph when calculating sizes.Chris Young2012-04-091-11/+49
| | | | | | | This should be faster but isn't (probably still rendering the glyph internally) svn path=/trunk/netsurf/; revision=13843
* Update NetSurf's system colours when OS prefs changeChris Young2012-04-071-0/+11
| | | | svn path=/trunk/netsurf/; revision=13822
* Convert to use image cacheChris Young2012-04-061-99/+71
| | | | svn path=/trunk/netsurf/; revision=13797
* Move status basr left one pixelChris Young2012-04-021-1/+1
| | | | svn path=/trunk/netsurf/; revision=13786
* Remove old commented out tagsChris Young2012-03-311-3/+0
| | | | svn path=/trunk/netsurf/; revision=13784
* Change the status bar frameiclass to a gaugeiclass, as it is moreChris Young2012-03-311-2/+6
| | | | | | | aesthetically pleasing, and also allows us to show progress bar if it is possible to get this data from the core in the future. svn path=/trunk/netsurf/; revision=13783
* Use the same default favicon as other platforms.Chris Young2012-03-314-2/+5
| | | | svn path=/trunk/netsurf/; revision=13782
* Search user data dir first for resourcesChris Young2012-03-301-1/+7
| | | | svn path=/trunk/netsurf/; revision=13779
* Use 'user' env-var to determine usernameChris Young2012-03-302-4/+16
| | | | svn path=/trunk/netsurf/; revision=13778
* Update with new pathChris Young2012-03-282-4/+6
| | | | svn path=/trunk/netsurf/; revision=13769
* Move user-specifics out of ResourcesChris Young2012-03-284-17/+29
| | | | svn path=/trunk/netsurf/; revision=13768
* Add sobjs - libdom and libhubbub stubChris Young2012-03-282-10/+3
| | | | svn path=/trunk/netsurf/; revision=13767
* Return a colour (ABGR) from gui_system_colour_char() rather than aChris Young2012-03-271-2/+7
| | | | | | css_color (ARGB) svn path=/trunk/netsurf/; revision=13744
* Fix colour string matching. Lose unneeded case insensitivity in matching.Michael Drake2012-03-271-3/+1
| | | | svn path=/trunk/netsurf/; revision=13739
* Constify param to gui_system_colour_char function.Michael Drake2012-03-271-1/+1
| | | | svn path=/trunk/netsurf/; revision=13737
* Expose tree_setup_colours so it can be called from frontends if the systemChris Young2012-03-261-1/+3
| | | | | | | colour scheme changes. svn path=/trunk/netsurf/; revision=13730
* fix buildChris Young2012-03-264-20/+5
| | | | svn path=/trunk/netsurf/; revision=13729
* NetSurf options rework (a=vince r=daniels,jmb)Vincent Sanders2012-03-2220-611/+680
| | | | svn path=/trunk/netsurf/; revision=13548
* More reasonable tile size defaultsChris Young2012-03-031-2/+2
| | | | svn path=/trunk/netsurf/; revision=13506
* Fix scaled fast scrolling. Curiously this has solved the form select menuChris Young2012-03-032-14/+14
| | | | | | problem :S svn path=/trunk/netsurf/; revision=13505
* Fix offsets when page scaled and scrolledChris Young2012-03-031-17/+16
| | | | svn path=/trunk/netsurf/; revision=13504
* allow both x and y dimensions of redraw tiles to be configuredChris Young2012-02-295-20/+28
| | | | svn path=/trunk/netsurf/; revision=13502
* revert r13281, meant to put it in 2.9 branchChris Young2012-02-281-3/+13
| | | | svn path=/trunk/netsurf/; revision=13499
* Readme for 2.9Chris Young2012-02-281-13/+3
| | | | svn path=/trunk/netsurf/; revision=13498
* Disable print menu optionChris Young2012-02-281-0/+2
| | | | svn path=/trunk/netsurf/; revision=13497
* random changesChris Young2012-02-261-4/+11
| | | | svn path=/trunk/netsurf/; revision=13474
* adjust scrolbars when window is resizedChris Young2012-02-261-0/+1
| | | | svn path=/trunk/netsurf/; revision=13473
* Don't do schedule message handling on a while loop.. it sometimes causesChris Young2012-02-261-1/+1
| | | | | | long pauses in user input. svn path=/trunk/netsurf/; revision=13472
* Convert treeview to tiled drawChris Young2012-02-262-6/+40
| | | | svn path=/trunk/netsurf/; revision=13471
* Documentation updateChris Young2012-02-251-2/+6
| | | | svn path=/trunk/netsurf/; revision=13470
* Fix thumbnailsChris Young2012-02-251-1/+1
| | | | svn path=/trunk/netsurf/; revision=13469
* Add tiled refresh, with tiles of max size option_redraw_tile_size. ThisChris Young2012-02-254-119/+98
| | | | | | | | | reduces the size of our off-screen bitmap and associated memory. Only works with browser windows at present. History and treeviews still have full window refresh/bitmap. Setting the option to 0 brings back the old behaviour. svn path=/trunk/netsurf/; revision=13468
* More simple refresh. This would work (provided the user hasn't scrolled),Chris Young2012-02-241-6/+29
| | | | | | | however we appear to be losing events (refresh and menu events are not always being received) svn path=/trunk/netsurf/; revision=13466