summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Translation of previously-missing strings (credit: Samir Hawamdeh)Chris Young2012-02-281-13/+13
| | | | svn path=/trunk/netsurf/; revision=13501
* 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
* Set/get drag type via API.Michael Drake2012-02-281-5/+11
| | | | svn path=/trunk/netsurf/; revision=13496
* Check drag type via accessor.Michael Drake2012-02-281-2/+3
| | | | svn path=/trunk/netsurf/; revision=13495
* Add browser_window drag type accessor.Michael Drake2012-02-282-2/+15
| | | | svn path=/trunk/netsurf/; revision=13494
* Use browser window scale accessor.Michael Drake2012-02-271-2/+5
| | | | svn path=/trunk/netsurf/; revision=13493
* Always use pkg-config, never use xml-config or curl-config, it breaks ↵Ole Loots2012-02-271-3/+3
| | | | | | crossbuild when these binaries are actually available on the build machine. svn path=/trunk/netsurf/; revision=13492
* Add browser window scale acceser.Michael Drake2012-02-272-0/+14
| | | | svn path=/trunk/netsurf/; revision=13491
* Add a couple of lines for translators' notes.Michael Drake2012-02-265-5/+30
| | | | svn path=/trunk/netsurf/; revision=13477
* Fix top comment, so line numbers can be compared with .en version. Get .it ↵Michael Drake2012-02-261-5/+17
| | | | | | Messages file back in sync. svn path=/trunk/netsurf/; revision=13476
* Get .fr and .nl Messages back in sync.Michael Drake2012-02-262-17/+52
| | | | svn path=/trunk/netsurf/; revision=13475
* 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 #ifdef WITH_8BPP_SUPPORTOle Loots2012-02-253-4/+19
| | | | svn path=/trunk/netsurf/; revision=13467
* 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-234-1/+5
| | | | svn path=/trunk/netsurf/; revision=13463
* Update from Samir Hawamdeh (mostly copyright year)Chris Young2012-02-232-12/+12
| | | | svn path=/trunk/netsurf/; revision=13462
* fix favicon displayVincent Sanders2012-02-215-58/+92
| | | | svn path=/trunk/netsurf/; revision=13460
* remove unused scrolledwindow memberVincent Sanders2012-02-201-31/+6
| | | | svn path=/trunk/netsurf/; revision=13452
* Bring German Messages file back into sync.Michael Drake2012-02-161-3/+24
| | | | svn path=/trunk/netsurf/; revision=13451
* 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
* Use S_IRWXU where appropriateJohn Mark Bell2012-02-102-4/+4
| | | | svn path=/trunk/netsurf/; revision=13439
* Fix Debian bug #659376: .netsurf must not be world readableJohn Mark Bell2012-02-101-1/+3
| | | | svn path=/trunk/netsurf/; revision=13438
* fix the popup menu entry signal attaching to attach the correct handler ↵Vincent Sanders2012-02-081-21/+21
| | | | | | functions. as the prototype changes depending on signal type and we were using the non menu function prototype for menu entries. svn path=/trunk/netsurf/; revision=13437
* Bypass full type sniffer if only images are acceptableJohn Mark Bell2012-02-083-3/+25
| | | | svn path=/trunk/netsurf/; revision=13436
* Fix bug #3479239: scroll in correct direction for page left/page rightJohn Mark Bell2012-02-081-2/+2
| | | | svn path=/trunk/netsurf/; revision=13435
* Fix gui_window_drag_startJohn Mark Bell2012-02-051-1/+1
| | | | svn path=/trunk/netsurf/; revision=13418
* Mouse button holding wasn't reported to the browser because of drag ↵Ole Loots2012-02-031-6/+13
| | | | | | optimization, resulting in internal scrollbars which only reacted on click, not mouse holding down. svn path=/trunk/netsurf/; revision=13415
* Treat image/x-png as a synonym for image/pngJohn Mark Bell2012-01-292-2/+4
| | | | svn path=/trunk/netsurf/; revision=13414
* Default to "not rendering" when setting GUI poll priority. Ole Loots2012-01-251-21/+15
| | | | svn path=/trunk/netsurf/; revision=13408
* Added key shortcut for bookmark, handle menut item "Hide Toolbars"Ole Loots2012-01-251-3/+8
| | | | svn path=/trunk/netsurf/; revision=13407
* 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
* Added functions to hide/show the toolbar. Ole Loots2012-01-112-3/+26
| | | | svn path=/trunk/netsurf/; revision=13400
* Removed non declared and unused "cookies_update" function ( some frontends ↵Ole Loots2012-01-112-8/+5
| | | | | | still define the functions), added missing prototypes. svn path=/trunk/netsurf/; revision=13399
* Constify rect param to browser_window_set_drag_type.Michael Drake2012-01-112-2/+2
| | | | svn path=/trunk/netsurf/; revision=13398
* Constify rect param to gui_window_drag_start.Michael Drake2012-01-1110-91/+91
| | | | svn path=/trunk/netsurf/; revision=13397