aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/printing/e-contact-print-types.h
diff options
context:
space:
mode:
authorDevashish Sharma <dsharma@src.gnome.org>2006-02-14 18:43:16 +0800
committerDevashish Sharma <dsharma@src.gnome.org>2006-02-14 18:43:16 +0800
commitee7866dbef7859203daec914affe436f8f6c2a2c (patch)
treeecc454ef77f01920dc10771bd4f8a02a152967be /addressbook/printing/e-contact-print-types.h
parent14b97f72ee145d682ca6776175206458cf4a45b6 (diff)
downloadgsoc2013-evolution-ee7866dbef7859203daec914affe436f8f6c2a2c.tar
gsoc2013-evolution-ee7866dbef7859203daec914affe436f8f6c2a2c.tar.gz
gsoc2013-evolution-ee7866dbef7859203daec914affe436f8f6c2a2c.tar.bz2
gsoc2013-evolution-ee7866dbef7859203daec914affe436f8f6c2a2c.tar.lz
gsoc2013-evolution-ee7866dbef7859203daec914affe436f8f6c2a2c.tar.xz
gsoc2013-evolution-ee7866dbef7859203daec914affe436f8f6c2a2c.tar.zst
gsoc2013-evolution-ee7866dbef7859203daec914affe436f8f6c2a2c.zip
Use pango for all text handling when printing addressbooks
svn path=/trunk/; revision=31517
Diffstat (limited to 'addressbook/printing/e-contact-print-types.h')
-rw-r--r--addressbook/printing/e-contact-print-types.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/addressbook/printing/e-contact-print-types.h b/addressbook/printing/e-contact-print-types.h
index b7082b41f6..781208349f 100644
--- a/addressbook/printing/e-contact-print-types.h
+++ b/addressbook/printing/e-contact-print-types.h
@@ -24,6 +24,7 @@
#include <glib.h>
#include <libgnomeprint/gnome-font.h>
+#include <libgnomeprint/gnome-print-pango.h>
typedef struct _EContactPrintStyle EContactPrintStyle;
typedef enum _EContactPrintType EContactPrintType;
@@ -43,8 +44,8 @@ struct _EContactPrintStyle
guint blank_forms;
gboolean letter_tabs;
gboolean letter_headings;
- GnomeFont *headings_font;
- GnomeFont *body_font;
+ PangoFontDescription *headings_font;
+ PangoFontDescription *body_font;
gboolean print_using_grey;
gint paper_type;
gdouble paper_width;
@@ -58,11 +59,11 @@ struct _EContactPrintStyle
gdouble page_width;
gdouble page_height;
gboolean orientation_portrait;
- GnomeFont *header_font;
+ PangoFontDescription *header_font;
gchar *left_header;
gchar *center_header;
gchar *right_header;
- GnomeFont *footer_font;
+ PangoFontDescription *footer_font;
gchar *left_footer;
gchar *center_footer;
gchar *right_footer;