summaryrefslogtreecommitdiff
path: root/gtk
diff options
context:
space:
mode:
authorJohn Tytgat <joty@netsurf-browser.org>2009-02-05 02:31:19 +0000
committerJohn Tytgat <joty@netsurf-browser.org>2009-02-05 02:31:19 +0000
commit403376e890da062207597dbfce0b33ac63f2d4e7 (patch)
treedf8edd566ac4800fc0c6d940cda9b42d528e949a /gtk
parent73b761ecf5b4d97e5ab19974bbc5273158785c29 (diff)
downloadnetsurf-403376e890da062207597dbfce0b33ac63f2d4e7.tar.gz
netsurf-403376e890da062207597dbfce0b33ac63f2d4e7.tar.bz2
- desktop/save_pdf/pdf_plotters.c:
- 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
Diffstat (limited to 'gtk')
-rw-r--r--gtk/gtk_scaffolding.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtk_scaffolding.c b/gtk/gtk_scaffolding.c
index 8928cc681..4a6a2f496 100644
--- a/gtk/gtk_scaffolding.c
+++ b/gtk/gtk_scaffolding.c
@@ -573,7 +573,7 @@ MENUHANDLER(export_pdf){
settings = print_make_settings(OPTIONS, NULL);
/*this way the scale used by PDF functions is synchronized with that
used by the all-purpose print interface*/
- pdf_set_scale((float)option_export_scale / 100);
+ haru_nsfont_set_scale((float)option_export_scale / 100);
save_dialog = gtk_file_chooser_dialog_new("Export to PDF", gw->window,
GTK_FILE_CHOOSER_ACTION_SAVE,