summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Style guide formatting.Michael Drake2008-10-111-16/+15
| | | | svn path=/trunk/netsurf/; revision=5535
* Fix close icon size on tabs. Thanks to Christian Dywan (kalikiana).Michael Drake2008-10-111-11/+15
| | | | svn path=/trunk/netsurf/; revision=5534
* - support BITMAP_CLEAR_MEMORY in create_bitmap()François Revel2008-10-108-16/+75
| | | | | | | - copying to clipboard now constructs a text_run_array for StyledEdit, that is added to the clipboard. In applications supporting it it pastes the text with the correct fonts and sizes, and the text colors. - tried to find which line in source code the selection starts to open the editor there, but it's not finished so it's disabled. svn path=/trunk/netsurf/; revision=5533
* Add missing calls to bitmap_modified(). This fixes using libpng in the BeOS ↵François Revel2008-10-105-3/+10
| | | | | | port. svn path=/trunk/netsurf/; revision=5532
* Remove urldb_search_remove. Added hint for where to find it if we need it in ↵Daniel Silverstone2008-10-101-57/+1
| | | | | | future svn path=/trunk/netsurf/; revision=5531
* Add #if support for controlling debug dumps of box tree and framesetsDaniel Silverstone2008-10-101-4/+17
| | | | svn path=/trunk/netsurf/; revision=5530
* Remove -WinlineDaniel Silverstone2008-10-101-1/+1
| | | | svn path=/trunk/netsurf/; revision=5529
* Fix format string warning errorDaniel Silverstone2008-10-101-1/+1
| | | | svn path=/trunk/netsurf/; revision=5528
* Warning squashesRob Kendrick2008-10-102-2/+2
| | | | svn path=/trunk/netsurf/; revision=5527
* Remove redundant function, and guard print/export-pdf against lack of haruDaniel Silverstone2008-10-101-18/+2
| | | | svn path=/trunk/netsurf/; revision=5526
* Fix two warnings which only show when not using haru or hubbubDaniel Silverstone2008-10-101-2/+4
| | | | svn path=/trunk/netsurf/; revision=5525
* Fixed most of the scaffolding warnings.Mike Lester2008-10-092-34/+2
| | | | svn path=/trunk/netsurf/; revision=5524
* More GTK warning fixes.Rob Kendrick2008-10-093-6/+7
| | | | svn path=/trunk/netsurf/; revision=5523
* Updated style, 80 char widthMike Lester2008-10-091-6/+6
| | | | svn path=/trunk/netsurf/; revision=5522
* Whole bunch of warning fixes in GTKRob Kendrick2008-10-098-34/+45
| | | | svn path=/trunk/netsurf/; revision=5521
* Fixed warning relating to Downloads.Mike Lester2008-10-092-3/+7
| | | | svn path=/trunk/netsurf/; revision=5520
* Fix warnings in gtk_option.c - this code needs *serious* refactoring to ↵Rob Kendrick2008-10-091-65/+175
| | | | | | remove crackful macros that unbalance braces. svn path=/trunk/netsurf/; revision=5519
* Style guide formatting: indentation, 80 char width, 2 tabs after wrap.Michael Drake2008-10-091-26/+35
| | | | svn path=/trunk/netsurf/; revision=5518
* Fix braino in previous commitRob Kendrick2008-10-091-1/+1
| | | | svn path=/trunk/netsurf/; revision=5517
* Fix warning in gtk_about.c, reformatRob Kendrick2008-10-091-13/+25
| | | | svn path=/trunk/netsurf/; revision=5516
* Fixed all but one "about dialog" related warnings. All credit strings are ↵Mike Lester2008-10-092-14/+10
| | | | | | now constant. svn path=/trunk/netsurf/; revision=5515
* Add header guard to reduce warning count marginallyDaniel Silverstone2008-10-091-0/+6
| | | | svn path=/trunk/netsurf/; revision=5514
* Ensure we set the CSS DPI every time a window opens. For now, this will do. ↵Daniel Silverstone2008-10-091-1/+4
| | | | | | Later we need to monitor and perhaps support per-browser-window dpi? svn path=/trunk/netsurf/; revision=5513
* Add missing copyright on the version info for BeOS.François Revel2008-10-091-1/+1
| | | | svn path=/trunk/netsurf/; revision=5512
* - fix for copying selection to clipboardFrançois Revel2008-10-095-32/+76
| | | | | | | | - fix some leaks - prepare for about box (use about html from rsrc: but it's broken yet) - if more than 1 refs received at the same time, open the extra ones in a new window. svn path=/trunk/netsurf/; revision=5511
* Generate AmigaOS version string in correct format, taking:Chris Young2008-10-083-1/+54
| | | | | | | | | | | | | | | | | | | | | | | netsurf_version_major from desktop/version.c as version SVN revision from local repository as revision This should ensure that the internal version number will increase correctly (version and revision are treated as seperate values > 0), whereas NetSurf's public release version (currently coming up to 2.0) is not guaranteed to be in legal AmigaOS format or increase validly under AmigaOS rules. The internal version string has been added for future AmiUpdate support as well as making it easier to see and compare versions of interim builds. amiga/version.c can safely be removed from the source list when cross-compiling (where ARexx is not available), or manually created, as it only defines this internal version string and does not contain any code. amiga/version.c is automatically removed after linking to ensure it always reflects the current SVN revision. svn path=/trunk/netsurf/; revision=5510
* Override checking the mime type for known extensions. At least on my system, ↵François Revel2008-10-081-0/+13
| | | | | | the mime sniffer thinks css files are text/x-source-code, and NS didn't like that. svn path=/trunk/netsurf/; revision=5509
* Fix drawing the selection.François Revel2008-10-081-0/+2
| | | | svn path=/trunk/netsurf/; revision=5508
* Add clipboard support. Works mostly.François Revel2008-10-082-2/+20
| | | | svn path=/trunk/netsurf/; revision=5507
* -enlarge invalidate rect by 1x1 in gui_window_redraw, this fixes caret updates.François Revel2008-10-081-3/+66
| | | | | | - implement clipboard handling, not yet used though. svn path=/trunk/netsurf/; revision=5506
* Fix multibyte character input.François Revel2008-10-081-3/+2
| | | | svn path=/trunk/netsurf/; revision=5505
* Fix app signature for Haiku's StyledEdit.François Revel2008-10-071-1/+1
| | | | svn path=/trunk/netsurf/; revision=5504
* Dereference symlinks on B_REFS_RECEIVED. This way dropping a symlink to an ↵François Revel2008-10-071-0/+10
| | | | | | html file actually opens the target, and succeeds in finding its related files. One can still enter the path to the symlink itself in the url bar as file:// anyway. svn path=/trunk/netsurf/; revision=5503
* - fix using undefined fd_sets in case active was false. Looks like I was too ↵François Revel2008-10-071-67/+4
| | | | | | | | quick at copy-pasting gtk code. This should fix the busy-loop behaviour on Haiku. - remove dead gtk code. svn path=/trunk/netsurf/; revision=5502
* Snif local files entirely the BeOS way, using the mime db, this fixes taking ↵François Revel2008-10-061-69/+55
| | | | | | | | symlinks to html as plain text. Make sure the mime db has the needed types just in case they are missing. svn path=/trunk/netsurf/; revision=5501
* Uncomment the code to focus the view on mouse click, much better.François Revel2008-10-061-4/+3
| | | | svn path=/trunk/netsurf/; revision=5500
* List traversing tidy-up.Chris Young2008-10-064-29/+26
| | | | svn path=/trunk/netsurf/; revision=5499
* Full quit function and associated ARexx command (QUIT)Chris Young2008-10-065-12/+67
| | | | svn path=/trunk/netsurf/; revision=5498
* Closing entire windows instead of just tabs is now possibleChris Young2008-10-063-3/+45
| | | | svn path=/trunk/netsurf/; revision=5497
* - less debug outputFrançois Revel2008-10-062-19/+126
| | | | | | - fixed mouse handling, now text input works again. svn path=/trunk/netsurf/; revision=5496
* - fix some coordinate handlingFrançois Revel2008-10-061-5/+9
| | | | | | - bail out trying to redraw if there are more than 1 pending resize, this almost suppresses flicker on resize, and also avoids having the window busy for 10s redrawing 20 times. svn path=/trunk/netsurf/; revision=5495
* - Remove dead gtk codeFrançois Revel2008-10-061-53/+29
| | | | | | - fix overlapping of toolbar and content by 1 pixel svn path=/trunk/netsurf/; revision=5494
* Remove dead GTK code & (c)François Revel2008-10-061-36/+0
| | | | svn path=/trunk/netsurf/; revision=5493
* Make gui_poll() a little better. Don't check for the event pipe fd if select ↵François Revel2008-10-061-3/+6
| | | | | | returned an error. svn path=/trunk/netsurf/; revision=5492
* Fix plot_fill and plot_clip coords.François Revel2008-10-051-2/+71
| | | | | | Added some code to test plotters. -DTEST_PLOTTERS and call test_plotters_main() from main() to test. This should allow comparison on other platforms if they implement it too. svn path=/trunk/netsurf/; revision=5491
* Add Aliases to resources for later use.François Revel2008-10-051-1/+2
| | | | svn path=/trunk/netsurf/; revision=5490
* Fixed some problems with tabs, added a tab close gadget.Chris Young2008-10-052-16/+40
| | | | svn path=/trunk/netsurf/; revision=5489
* Comment flush plotter.Michael Drake2008-10-051-1/+2
| | | | svn path=/trunk/netsurf/; revision=5488
* Add Hubbub support, should work much better when actually initializing it.François Revel2008-10-052-0/+32
| | | | svn path=/trunk/netsurf/; revision=5487
* Fix the white flickering and bad redraws (text too dark due to being drawn ↵François Revel2008-10-052-2/+22
| | | | | | twice), by setting the ViewColor to transparent (avoiding app_server to draw it), and doing it ourselves in plot_clg() just before drawing the rest. svn path=/trunk/netsurf/; revision=5486