summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* make schedule_run return if it has active jobs to scheduleVincent Sanders2009-02-116-10/+15
| | | | svn path=/trunk/netsurf/; revision=6447
* Fix SDL frontend inputVincent Sanders2009-02-119-11/+114
| | | | svn path=/trunk/netsurf/; revision=6446
* Add limits.h to fb_gui.c for INT_MAXRob Kendrick2009-02-111-0/+1
| | | | svn path=/trunk/netsurf/; revision=6429
* fix double freeVincent Sanders2009-02-111-1/+0
| | | | svn path=/trunk/netsurf/; revision=6428
* List SDL option.Michael Drake2009-02-111-1/+1
| | | | svn path=/trunk/netsurf/; revision=6427
* add SDL frontend for framebuffer portVincent Sanders2009-02-116-0/+147
| | | | svn path=/trunk/netsurf/; revision=6415
* Don't bother trying to render things that are completely off the screenChris Young2009-02-101-0/+3
| | | | svn path=/trunk/netsurf/; revision=6412
* Ensure URLs are normalized prior to fetching.John Mark Bell2009-02-102-7/+56
| | | | | | Squash memory leaks. svn path=/trunk/netsurf/; revision=6411
* Fix assert when there is no hotlist fileChris Young2009-02-081-1/+1
| | | | svn path=/trunk/netsurf/; revision=6398
* Fix animated GIF displayChris Young2009-02-081-1/+1
| | | | svn path=/trunk/netsurf/; revision=6397
* Obvious fix for text start/end problem; missing something?Adrian Lees2009-02-081-11/+11
| | | | svn path=/trunk/netsurf/; revision=6396
* Really stop overwriting window borders (also fix fast scrolling down, and ↵Chris Young2009-02-071-14/+27
| | | | | | | | break fast scrolling up) svn path=/trunk/netsurf/; revision=6394
* Enable/disable caching of native bitmaps in gfx board memChris Young2009-02-073-13/+43
| | | | svn path=/trunk/netsurf/; revision=6393
* Document the assumption that all URLs passed into urldb are already ↵John Mark Bell2009-02-061-0/+4
| | | | | | normalised. Violate this precondition at your peril. svn path=/trunk/netsurf/; revision=6371
* Ensure hotlist URLs are normalised before using them.John Mark Bell2009-02-061-8/+42
| | | | | | Squash a bunch of memory leaks. svn path=/trunk/netsurf/; revision=6370
* pdf_plot_fill(): fixed wrong change made in r6363.John Tytgat2009-02-061-1/+1
| | | | svn path=/trunk/netsurf/; revision=6368
* Blah.John Mark Bell2009-02-051-39/+39
| | | | svn path=/trunk/netsurf/; revision=6366
* Some attempt at faster scrolling - can be enabled with option faster_scroll:1Chris Young2009-02-052-29/+28
| | | | svn path=/trunk/netsurf/; revision=6364
* - desktop/save_pdf/pdf_plotters.c:John Tytgat2009-02-055-191/+336
| | | | | | | | | | | | | | | | | | | - Have a set of libharu gstate update related wrapper routines which minimizes the gstate updates in the PDF file resulting in smaller PDF file size. - Colour values were wrongly scaled (was dividing by 256 instead of by 255). - pdf_plot_polygon(): last (closing) lineto wasn't needed, a fill operation will do that automatically. - pdf_scale/pdf_set_scale(): moved to desktop/save_pdf/font_haru.c as pdf_text_scale/haru_nsfont_set_scale(). - desktop/save_pdf/pdf_plotters.c(pdf_set_scale): moved to desktop/save_pdf/font_haru.h as haru_nsfont_set_scale(). - desktop/save_pdf/font_haru.c: - moved pdf_scale variable from pdf_plotters.c to here. - haru_nsfont_set_scale(): was pdf_set_scale from pdf_plotters.c - haru_nsfont_apply_style(): always calculate font size and pass it on to caller when requested. - desktop/save_pdf/font_haru.h: - haru_nsfont_set_scale(): declare. - haru_nsfont_apply_style(): add font size parameter - gtk/gtk_scaffolding.c(MENUHANDLER(export_pdf)): call haru_nsfont_set_scale() instead of pdf_set_scale(). svn path=/trunk/netsurf/; revision=6363
* Try to stop rendering of things that can't be seenChris Young2009-02-041-4/+22
| | | | svn path=/trunk/netsurf/; revision=6362
* - Constify parameters of struct plotter_table::polygon and struct ↵John Tytgat2009-02-0317-120/+115
| | | | | | | | | | | plotter_table::path - riscos/save_draw.c(ro_save_draw_plotters): Make it static. - desktop/save_pdf/pdf_plotters.c(pdf_plot_path): fix broken implementation (coordinates path were wrong, no clip/text mode update, transformation matrix was overwritten); only update fill and/or stroke color when fill and/or stroke is done. (pdf_begin): disable compression when PDF_DEBUG is set svn path=/trunk/netsurf/; revision=6361
* - apply_clip_and_mode(): pass text mode selection as parameter instead of ↵John Tytgat2009-02-021-37/+41
| | | | | | | | using global variable text_mode_request. - pdf_next_page()/pdf_end: fix possible gstate unbalance by using apply_clip_and_mode(). svn path=/trunk/netsurf/; revision=6360
* Fix object saveAdrian Lees2009-02-021-1/+2
| | | | svn path=/trunk/netsurf/; revision=6359
* Protect NS from DrawFiles it generatedAdrian Lees2009-02-021-4/+13
| | | | svn path=/trunk/netsurf/; revision=6358
* Give iframes an initial size.Michael Drake2009-02-021-0/+1
| | | | svn path=/trunk/netsurf/; revision=6357
* Appease tlsaAdrian Lees2009-02-022-8/+13
| | | | svn path=/trunk/netsurf/; revision=6356
* Comment content_redraw.Michael Drake2009-02-021-0/+19
| | | | svn path=/trunk/netsurf/; revision=6355
* Remove unused line_height stuff for now.Michael Drake2009-02-023-22/+3
| | | | svn path=/trunk/netsurf/; revision=6354
* More commenting of what we do with clip rectangle.Michael Drake2009-02-021-0/+4
| | | | svn path=/trunk/netsurf/; revision=6353
* Fix clear:both; when there's nothing to clear.Michael Drake2009-02-021-6/+10
| | | | svn path=/trunk/netsurf/; revision=6352
* Unexport pdf_scale variable (use pdf_set_scale to set it) and initialize it ↵John Tytgat2009-02-023-9/+4
| | | | | | to DEFAULT_EXPORT_SCALE. svn path=/trunk/netsurf/; revision=6350
* Selection menu and save/download tweaksAdrian Lees2009-02-025-29/+65
| | | | svn path=/trunk/netsurf/; revision=6349
* Document setting up of clip rectangle for NetSurf's core.Michael Drake2009-02-011-4/+13
| | | | svn path=/trunk/netsurf/; revision=6348
* Delete legacy code.Michael Drake2009-02-011-3/+1
| | | | svn path=/trunk/netsurf/; revision=6347
* Tidy-up of redraw codeChris Young2009-02-011-110/+21
| | | | svn path=/trunk/netsurf/; revision=6345
* Add sensitive property for PDF export like for the other export entries, ↵John Tytgat2009-02-011-0/+1
| | | | | | this disables the PDF export menu entry when there is no content. svn path=/trunk/netsurf/; revision=6344
* Hook in our own libharu copy in the build.John Tytgat2009-02-012-6/+10
| | | | svn path=/trunk/netsurf/; revision=6343
* gui_window_update_box and gui_window_redraw now only update the relevant ↵Chris Young2009-02-011-35/+42
| | | | | | | | | areas.. I think. They are liable to destroy things outside of the render area as well currently. svn path=/trunk/netsurf/; revision=6342
* Fix libharu address.Michael Drake2009-02-011-1/+1
| | | | svn path=/trunk/netsurf/; revision=6341
* Remove the caret by replacing it with the area under the caret, rather than ↵Chris Young2009-02-011-1/+1
| | | | | | | | the area displayed somewhere else on the page. svn path=/trunk/netsurf/; revision=6338
* strlen() on constant string can be replaced by sizeof()-1John Tytgat2009-02-012-2/+2
| | | | svn path=/trunk/netsurf/; revision=6333
* Remove unnecessary casting.John Tytgat2009-02-011-8/+8
| | | | svn path=/trunk/netsurf/; revision=6332
* - C strings have always an implicit NUL character at the end, no need to ↵John Tytgat2009-02-0110-18/+17
| | | | | | | | specify an extra one. - riscos/configure/con_theme.c: removed spurious code line. svn path=/trunk/netsurf/; revision=6331
* Oops, probably shouldn't double-convert textChris Young2009-02-011-1/+1
| | | | svn path=/trunk/netsurf/; revision=6330
* Convert UTF-8 titles to local charset for display in tabsChris Young2009-02-011-2/+5
| | | | | | | Disable keyboard shortcuts for tabs as an underscore in the title was causing keypresses to be ignored or tabs to be switched unexpectedly svn path=/trunk/netsurf/; revision=6329
* Change to use names instead of numbers for keypressesChris Young2009-02-013-20/+86
| | | | | | Add missing keypresss svn path=/trunk/netsurf/; revision=6328
* Next batch of menu changes; clarify some key pressesAdrian Lees2009-02-0110-97/+134
| | | | svn path=/trunk/netsurf/; revision=6327
* Added context menu option to download the link target.Chris Young2009-01-316-16/+94
| | | | | | Added SAVEAS/K to OPEN ARexx command to download a URL instead of displaying it. svn path=/trunk/netsurf/; revision=6326
* Hubbub allows FONT tags to span blocks and the way thatMichael Drake2009-01-311-1/+1
| | | | | | | | the box tree is generated, this makes the BOX_INLINE's BOX_INLINE_END appears in a different BOX_BLOCK. That seems wrong, but fix layout not to crash for now. svn path=/trunk/netsurf/; revision=6325
* This change belonged to r6323.John Tytgat2009-01-311-1/+1
| | | | svn path=/trunk/netsurf/; revision=6324