summaryrefslogtreecommitdiff
path: root/amiga
Commit message (Collapse)AuthorAgeFilesLines
* 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
* typoChris Young2012-02-241-1/+1
| | | | svn path=/trunk/netsurf/; revision=13465
* option_screen_compositing to enable switching compositing for NetSurf's ownChris Young2012-02-243-5/+66
| | | | | | | | | | | | | | | | | | | screen on/off. Some experimentation with compositing and simple/smart refresh reveals that simple refresh windows with compositing on for the screen behave the same as smart refresh windows. Smart refresh windows with compositing off use more gfx memory than when compositing is on. Simple refresh windows with compositing off will probably be more memory efficient, as we are using an off-screen bitmap to render the browsing area anyway. However due to this bitmap being re-used over multiple tabs/windows, it does not always reflect what should be on the window, so performing a redraw of damaged areas may be the only option. Need to read damaged regions from layer (probably through struct Region *DamageList) and check on performance vs memory or make the window refresh type configurable. Simple refresh code #ifdefed out for now for further investigation later. svn path=/trunk/netsurf/; revision=13464
* Fix bug #3481624: this was needlessly complexJohn Mark Bell2012-02-231-0/+1
| | | | svn path=/trunk/netsurf/; revision=13463
* Remove "NetSurf" from release version string, that's on the splash anyway.Chris Young2012-02-121-2/+2
| | | | svn path=/trunk/netsurf/; revision=13443
* Don't break the clipboard when copying 'nothing'.Chris Young2012-02-121-7/+9
| | | | | | Don't touch clipboard contents when copying 'nothing'. svn path=/trunk/netsurf/; revision=13442
* Shift status bar text over by a pixel and reposition the frame slightly.Chris Young2012-02-111-4/+4
| | | | | | | Don't use WBorBottom as that is not particulary relevant to what we're trying to do. svn path=/trunk/netsurf/; revision=13441
* 8*4=32, NOT 24. Copied UTF-8 text will now paste correctly into RA-OWB.Chris Young2012-01-151-3/+3
| | | | svn path=/trunk/netsurf/; revision=13405
* Accept codeset 1 (undefined) as 106 (UTF-8) when pasting from theChris Young2012-01-151-2/+5
| | | | | | | clipboard. This should allow us to at least paste from broken ports of MorphOS apps. svn path=/trunk/netsurf/; revision=13404
* Fix buildChris Young2012-01-151-4/+4
| | | | svn path=/trunk/netsurf/; revision=13403
* Allow confining the pointer to part of the window during drags. ActuallyChris Young2012-01-112-1/+67
| | | | | | | | | we aren't acting on this for any current drag types, but if we need to do so in the future (eg. frame resizing), this is the code to do it. The trap lasts 10 IntuiTicks so is re-asserted on every mouse move when an active drag is in effect. Drag type must be set to GDRAGGING_NONE to clear. svn path=/trunk/netsurf/; revision=13401
* Constify rect param to gui_window_drag_start.Michael Drake2012-01-111-1/+1
| | | | svn path=/trunk/netsurf/; revision=13397
* Pass pointer constraints for drag out to front ends. Ensure content ↵Michael Drake2012-01-111-3/+3
| | | | | | scrollbar drag termination always informs the browser window layer that the drag is over. svn path=/trunk/netsurf/; revision=13395
* Default X and Y aspect ratio to 0. This will make NetSurf assume that the ↵Chris Young2012-01-061-2/+2
| | | | | | | | screen has square pixels, which is true in 99% of cases on OS4. svn path=/trunk/netsurf/; revision=13377
* When dragging text selections to WB, pass the selection pointer to the save ↵Chris Young2012-01-021-2/+2
| | | | | | routine. svn path=/trunk/netsurf/; revision=13363
* Remove unnecessary cache of scroll positionChris Young2011-12-241-4/+0
| | | | svn path=/trunk/netsurf/; revision=13344
* Stop ELF binary sections aligning to 64K boundariesChris Young2011-12-241-1/+3
| | | | svn path=/trunk/netsurf/; revision=13343
* Search for DejaVu Serif Italic before DejaVu Serif Oblique, this fixes the ↵Chris Young2011-12-241-1/+9
| | | | | | | | | fonts used on the splash screen if newer DejaVu fonts have been installed and the old ones removed. svn path=/trunk/netsurf/; revision=13342