}
else
{
- struct font *font;
- unsigned long descent;
+ /* If we are drawing in the middle of a glyph row, find
+ the first glyph in the run of underlined glyphs
+ preceding the beginning of glyph string S. This is
+ because that glyph determines the underline position
+ and thickness for the entire run of the underlined
+ glyphs. */
+ struct glyph *g0 = s->row->glyphs[s->area], *g;
+
+ for (g = s->first_glyph - 1; g >= g0; g--)
+ {
+ struct face *prev_face = FACE_FROM_ID (s->f, g->face_id);
+ if (!(prev_face && prev_face->underline_p))
+ break;
+ }
+
+ /* Now use the font of the last glyph we saw that
+ still has the underlined_p flag set. */
+ struct face *glyph_face = FACE_FROM_ID (s->f, g[1].face_id);
+ struct font *font = glyph_face->font;
+ if (font)
+ font_prepare_for_face (s->f, glyph_face);
- font=s->font;
- descent = s->y + s->height - s->ybase;
+ unsigned long descent = s->y + s->height - s->ybase;
/* Use underline thickness of font, defaulting to 1. */
thickness = (font && font->underline_thickness > 0)
}
else
{
+ /* If we are drawing in the middle of a glyph row,
+ find the first glyph in the run of underlined
+ glyphs preceding the beginning of glyph string S.
+ This is because that glyph determines the
+ underline position and thickness for the entire
+ run of the underlined glyphs. */
+ struct glyph *g0 = s->row->glyphs[s->area], *g;
+
+ for (g = s->first_glyph - 1; g >= g0; g--)
+ {
+ struct face *prev_face = FACE_FROM_ID (s->f, g->face_id);
+ if (!(prev_face && prev_face->underline_p))
+ break;
+ }
+
+ /* Now use the font of the last glyph we saw that
+ still has the underlined_p flag set. */
+ struct face *glyph_face = FACE_FROM_ID (s->f, g[1].face_id);
+ struct font *font = glyph_face->font;
+ if (font)
+ font_prepare_for_face (s->f, glyph_face);
+
/* Get the underline thickness. Default is 1 pixel. */
- if (s->font && s->font->underline_thickness > 0)
- thickness = s->font->underline_thickness;
+ if (font && font->underline_thickness > 0)
+ thickness = font->underline_thickness;
else
thickness = 1;
if (x_underline_at_descent_line)
ROUND (x) = floor (x + 0.5) */
if (x_use_underline_position_properties
- && s->font && s->font->underline_position >= 0)
- position = s->font->underline_position;
- else if (s->font)
- position = (s->font->descent + 1) / 2;
+ && font && font->underline_position >= 0)
+ position = font->underline_position;
+ else if (font)
+ position = (font->descent + 1) / 2;
}
position = max (position, underline_minimum_offset);
}
if (s->y + s->height < s->ybase + position + thickness)
thickness = (s->y + s->height) - (s->ybase + position);
s->underline_thickness = thickness;
- s->underline_position =position;
+ s->underline_position = position;
y = s->ybase + position;
if (s->face->underline_defaulted_p)
{
}
else
{
+ /* If we are drawing in the middle of a glyph row,
+ find the first glyph in the run of underlined
+ glyphs preceding the beginning of glyph string S.
+ This is because that glyph determines the
+ underline position and thickness for the entire
+ run of the underlined glyphs. */
+ struct glyph *g0 = s->row->glyphs[s->area], *g;
+
+ for (g = s->first_glyph - 1; g >= g0; g--)
+ {
+ struct face *prev_face = FACE_FROM_ID (s->f, g->face_id);
+ if (!(prev_face && prev_face->underline_p))
+ break;
+ }
+
+ /* Now use the font of the last glyph we saw that
+ still has the underlined_p flag set. */
+ struct face *glyph_face = FACE_FROM_ID (s->f, g[1].face_id);
+ struct font *font = glyph_face->font;
+ if (font)
+ font_prepare_for_face (s->f, glyph_face);
+
/* Get the underline thickness. Default is 1 pixel. */
- if (s->font && s->font->underline_thickness > 0)
- thickness = s->font->underline_thickness;
+ if (font && font->underline_thickness > 0)
+ thickness = font->underline_thickness;
else
thickness = 1;
if (x_underline_at_descent_line)
ROUND(x) = floor (x + 0.5) */
if (x_use_underline_position_properties
- && s->font && s->font->underline_position >= 0)
- position = s->font->underline_position;
- else if (s->font)
- position = (s->font->descent + 1) / 2;
+ && font && font->underline_position >= 0)
+ position = font->underline_position;
+ else if (font)
+ position = (font->descent + 1) / 2;
else
position = underline_minimum_offset;
}