aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/text/e-text.c
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@src.gnome.org>2006-07-20 16:24:31 +0800
committerSrinivasa Ragavan <sragavan@src.gnome.org>2006-07-20 16:24:31 +0800
commitee6d562880652864aa8da959ad4b127786a3fa3a (patch)
treebef9d8c14cdc23affa6f3c22f75675ab0f5f7c84 /widgets/text/e-text.c
parent35a3b3e69964df852a4a649336fe473a42da491c (diff)
downloadgsoc2013-evolution-ee6d562880652864aa8da959ad4b127786a3fa3a.tar
gsoc2013-evolution-ee6d562880652864aa8da959ad4b127786a3fa3a.tar.gz
gsoc2013-evolution-ee6d562880652864aa8da959ad4b127786a3fa3a.tar.bz2
gsoc2013-evolution-ee6d562880652864aa8da959ad4b127786a3fa3a.tar.lz
gsoc2013-evolution-ee6d562880652864aa8da959ad4b127786a3fa3a.tar.xz
gsoc2013-evolution-ee6d562880652864aa8da959ad4b127786a3fa3a.tar.zst
gsoc2013-evolution-ee6d562880652864aa8da959ad4b127786a3fa3a.zip
Added cairo font rendering to ECell and EText.
svn path=/trunk/; revision=32359
Diffstat (limited to 'widgets/text/e-text.c')
-rw-r--r--widgets/text/e-text.c22
1 files changed, 20 insertions, 2 deletions
diff --git a/widgets/text/e-text.c b/widgets/text/e-text.c
index 75332cdd8a..de8afd5b8d 100644
--- a/widgets/text/e-text.c
+++ b/widgets/text/e-text.c
@@ -405,12 +405,30 @@ create_layout (EText *text)
static void
reset_layout (EText *text)
{
+ GnomeCanvasItem *item = GNOME_CANVAS_ITEM (text);
+ cairo_font_options_t *font_options;
+ PangoContext *context;
+
if (text->layout == NULL) {
create_layout (text);
}
else {
- pango_layout_set_text (text->layout, text->text, -1);
- reset_layout_attrs (text);
+ context = pango_layout_get_context (text->layout);
+
+ font_options = get_font_options();
+ pango_cairo_context_set_font_options (context, font_options);
+ cairo_font_options_destroy (font_options);
+ pango_layout_context_changed (text->layout);
+
+ text->font_desc = pango_font_description_new ();
+ pango_font_description_set_size (text->font_desc,
+ pango_font_description_get_size ((GTK_WIDGET (item->canvas))->style->font_desc));
+ pango_font_description_set_family (text->font_desc,
+ pango_font_description_get_family ((GTK_WIDGET (item->canvas))->style->font_desc));
+ pango_layout_set_font_description (text->layout, text->font_desc);
+
+ pango_layout_set_text (text->layout, text->text, -1);
+ reset_layout_attrs (text);
}
if (!text->button_down) {