From fcd45ee224da7408c098b65e47d51a8711d56b07 Mon Sep 17 00:00:00 2001 From: Damon Chaplin Date: Wed, 14 Nov 2001 23:53:39 +0000 Subject: Substituted gnome_font_get_width_string() with gnome_font_get_width_utf8() 2001-11-14 Damon Chaplin * gui/print.c: Substituted gnome_font_get_width_string() with gnome_font_get_width_utf8() and gnome_font_get_width_string_n() with gnome_font_get_width_utf8_sized(). Fixes calendar part of #15379. svn path=/trunk/; revision=14722 --- calendar/ChangeLog | 6 ++++++ calendar/gui/print.c | 16 ++++++++-------- 2 files changed, 14 insertions(+), 8 deletions(-) (limited to 'calendar') diff --git a/calendar/ChangeLog b/calendar/ChangeLog index d33bfd24e7..408517c32d 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,9 @@ +2001-11-14 Damon Chaplin + + * gui/print.c: Substituted gnome_font_get_width_string() with + gnome_font_get_width_utf8() and gnome_font_get_width_string_n() + with gnome_font_get_width_utf8_sized(). Fixes calendar part of #15379. + 2001-11-14 Federico Mena Quintero * gui/calendar-model.c (date_value_to_string): Convert the buffer diff --git a/calendar/gui/print.c b/calendar/gui/print.c index 20c1d00fd3..41b72aeb02 100644 --- a/calendar/gui/print.c +++ b/calendar/gui/print.c @@ -337,7 +337,7 @@ print_text(GnomePrintContext *pc, GnomeFont *font, const char *text, gnome_print_gsave (pc); - w = gnome_font_get_width_string (font, text); + w = gnome_font_get_width_utf8 (font, text); switch (align & 3) { case ALIGN_LEFT: @@ -545,7 +545,7 @@ print_month_small (GnomePrintContext *pc, GnomeCalendar *gcal, time_t month, /* Get a reasonable estimate of the largest number we will need, and use it to calculate the offset from the right edge of the cell that we should put the numbers. */ - w = gnome_font_get_width_string (font_bold, "23"); + w = gnome_font_get_width_utf8 (font_bold, "23"); text_xpad = (col_width - w) / 2; gnome_print_setrgbcolor (pc, 0, 0, 0); @@ -679,7 +679,7 @@ bound_text(GnomePrintContext *pc, GnomeFont *font, const char *text, gnome_print_show(pc, outbuffer); *wordstart=c; memcpy(outbuffer, wordstart, o-wordstart); - width = gnome_font_get_width_string_n(font, outbuffer, o-wordstart); + width = gnome_font_get_width_utf8_sized(font, outbuffer, o-wordstart); o=outbuffer+(o-wordstart); wordstart = outbuffer; top -= gnome_font_get_size (font); @@ -959,7 +959,7 @@ print_day_long_event (GnomePrintContext *pc, GnomeFont *font, x1 += 4; print_text (pc, font, buffer, ALIGN_LEFT, x1, x2, y1, y2); - x1 += gnome_font_get_width_string (font, buffer); + x1 += gnome_font_get_width_utf8 (font, buffer); } /* If the event ends before the end of the last day being printed, @@ -978,7 +978,7 @@ print_day_long_event (GnomePrintContext *pc, GnomeFont *font, x2 -= 4; print_text (pc, font, buffer, ALIGN_RIGHT, x1, x2, y1, y2); - x2 -= gnome_font_get_width_string (font, buffer); + x2 -= gnome_font_get_width_utf8 (font, buffer); } /* Print the text. */ @@ -1274,7 +1274,7 @@ print_week_long_event (GnomePrintContext *pc, GnomeFont *font, x1 += 4; print_text (pc, font, buffer, ALIGN_LEFT, x1, x2, y1, y2); - x1 += gnome_font_get_width_string (font, buffer); + x1 += gnome_font_get_width_utf8 (font, buffer); } /* If the event ends before the end of the last day being printed, @@ -1293,7 +1293,7 @@ print_week_long_event (GnomePrintContext *pc, GnomeFont *font, x2 -= 4; print_text (pc, font, buffer, ALIGN_RIGHT, x1, x2, y1, y2); - x2 -= gnome_font_get_width_string (font, buffer); + x2 -= gnome_font_get_width_utf8 (font, buffer); } x1 += 4; @@ -1324,7 +1324,7 @@ print_week_day_event (GnomePrintContext *pc, GnomeFont *font, buffer, sizeof (buffer)); print_text (pc, font, buffer, ALIGN_LEFT, x1, x2, y1, y2); - x1 += gnome_font_get_width_string (font, buffer); + x1 += gnome_font_get_width_utf8 (font, buffer); x1 += 4; print_text (pc, font, text, ALIGN_LEFT, x1, x2, y1, y2); -- cgit v1.2.3