diff options
author | Steven Tamm <steventamm@mac.com> | 2005-01-03 16:49:35 +0000 |
---|---|---|
committer | Steven Tamm <steventamm@mac.com> | 2005-01-03 16:49:35 +0000 |
commit | e169f939a59dee9a773116c9a6e40f6fb25b2511 (patch) | |
tree | d253562b8c70d67400d5dee5d7a23865c875abd9 /src/macterm.c | |
parent | e922de02bb154b8142650c3404686544cb17d08a (diff) | |
download | emacs-e169f939a59dee9a773116c9a6e40f6fb25b2511.tar.gz |
* macterm.c (x_new_font): Set FRAME_SPACE_WIDTH.
(x_font_min_bounds, XLoadQueryFont): Use the correct font width
metrics for max and min bounds.
(x_load_font): Correctly calculate average font width metrics.
Diffstat (limited to 'src/macterm.c')
-rw-r--r-- | src/macterm.c | 52 |
1 files changed, 42 insertions, 10 deletions
diff --git a/src/macterm.c b/src/macterm.c index 4df30e74386..dda0cc8311f 100644 --- a/src/macterm.c +++ b/src/macterm.c @@ -4952,7 +4952,8 @@ x_new_font (f, fontname) FRAME_BASELINE_OFFSET (f) = fontp->baseline_offset; FRAME_FONTSET (f) = -1; - FRAME_COLUMN_WIDTH (f) = FONT_WIDTH (FRAME_FONT (f)); + FRAME_COLUMN_WIDTH (f) = fontp->average_width; + FRAME_SPACE_WIDTH (f) = fontp->space_width; FRAME_LINE_HEIGHT (f) = FONT_HEIGHT (FRAME_FONT (f)); compute_fringe_widths (f, 1); @@ -6475,12 +6476,8 @@ x_font_min_bounds (font, w, h) MacFontStruct *font; int *w, *h; { - /* - * TODO: Windows does not appear to offer min bound, only - * average and maximum width, and maximum height. - */ *h = FONT_HEIGHT (font); - *w = FONT_WIDTH (font); + *w = font->min_bounds.width; } @@ -6708,14 +6705,20 @@ XLoadQueryFont (Display *dpy, char *fontname) font->per_char = (XCharStruct *) xmalloc (sizeof (XCharStruct) * (0xff - 0x20 + 1)); { - int c; + int c, min_width, max_width; + min_width = max_width = char_width; for (c = 0x20; c <= 0xff; c++) { - font->per_char[c - 0x20] = font->max_bounds; - font->per_char[c - 0x20].width = - font->per_char[c - 0x20].rbearing = CharWidth (c); + font->per_char[c - 0x20] = font->max_bounds; + char_width = CharWidth (c); + font->per_char[c - 0x20].width = char_width; + font->per_char[c - 0x20].rbearing = char_width; + min_width = min (min_width, char_width); + max_width = max (max_width, char_width); } + font->min_bounds.width = min_width; + font->max_bounds.width = max_width; } } @@ -6823,6 +6826,35 @@ x_load_font (f, fontname, size) fontp->name = (char *) xmalloc (strlen (font->fontname) + 1); bcopy (font->fontname, fontp->name, strlen (font->fontname) + 1); + if (font->min_bounds.width == font->max_bounds.width) + { + /* Fixed width font. */ + fontp->average_width = fontp->space_width = font->min_bounds.width; + } + else + { + XChar2b char2b; + XCharStruct *pcm; + + char2b.byte1 = 0x00, char2b.byte2 = 0x20; + pcm = mac_per_char_metric (font, &char2b, 0); + if (pcm) + fontp->space_width = pcm->width; + else + fontp->space_width = FONT_WIDTH (font); + + if (pcm) + { + int width = pcm->width; + for (char2b.byte2 = 33; char2b.byte2 <= 126; char2b.byte2++) + if ((pcm = mac_per_char_metric (font, &char2b, 0)) != NULL) + width += pcm->width; + fontp->average_width = width / 95; + } + else + fontp->average_width = FONT_WIDTH (font); + } + fontp->full_name = fontp->name; fontp->size = font->max_bounds.width; |