/* render under GNUstep using DPS */
{
NSGraphicsContext *context = [NSGraphicsContext currentContext];
- DPSgsave (context);
- if (s->clip_head)
- {
- DPSrectclip (context, s->clip_head->x, 0,
- FRAME_PIXEL_WIDTH (s->f),
- FRAME_PIXEL_HEIGHT (s->f));
- }
[font->nsfont set];
-
[col set];
-
DPSmoveto (context, r.origin.x, r.origin.y);
GSShowGlyphs (context, c, len);
- DPSstroke (context);
-
- DPSgrestore (context);
}
unblock_input ();
/* As prev was drawn while clipped to its own area, we
must draw the right_overhang part using s->hl now. */
enum draw_glyphs_face save = prev->hl;
- struct face *save_face = prev->face;
- prev->face = s->face;
+ prev->hl = s->hl;
NSRect r = NSMakeRect (s->x, s->y, s->width, s->height);
+ NSRect rc;
+ get_glyph_string_clip_rect (s, &rc);
[[NSGraphicsContext currentContext] saveGraphicsState];
NSRectClip (r);
+ if (n)
+ NSRectClip (rc);
#ifdef NS_IMPL_GNUSTEP
DPSgsave ([NSGraphicsContext currentContext]);
DPSrectclip ([NSGraphicsContext currentContext], s->x, s->y,
s->width, s->height);
+ DPSrectclip ([NSGraphicsContext currentContext], NSMinX (rc),
+ NSMinY (rc), NSWidth (rc), NSHeight (rc));
#endif
- prev->num_clips = 1;
- prev->hl = s->hl;
if (prev->first_glyph->type == CHAR_GLYPH)
ns_draw_glyph_string_foreground (prev);
else
#endif
[[NSGraphicsContext currentContext] restoreGraphicsState];
prev->hl = save;
- prev->face = save_face;
- prev->num_clips = 0;
}
ns_unfocus (s->f);
}
/* As next will be drawn while clipped to its own area,
we must draw the left_overhang part using s->hl now. */
enum draw_glyphs_face save = next->hl;
- struct face *save_face = next->face;
next->hl = s->hl;
- next->face = s->face;
NSRect r = NSMakeRect (s->x, s->y, s->width, s->height);
+ NSRect rc;
+ get_glyph_string_clip_rect (s, &rc);
[[NSGraphicsContext currentContext] saveGraphicsState];
NSRectClip (r);
+ NSRectClip (rc);
#ifdef NS_IMPL_GNUSTEP
DPSgsave ([NSGraphicsContext currentContext]);
DPSrectclip ([NSGraphicsContext currentContext], s->x, s->y,
s->width, s->height);
+ DPSrectclip ([NSGraphicsContext currentContext], NSMinX (rc),
+ NSMinY (rc), NSWidth (rc), NSHeight (rc));
#endif
- next->num_clips = 1;
if (next->first_glyph->type == CHAR_GLYPH)
ns_draw_glyph_string_foreground (next);
else
#endif
[[NSGraphicsContext currentContext] restoreGraphicsState];
next->hl = save;
- next->num_clips = 0;
- next->face = save_face;
- next->clip_head = next;
- next->background_filled_p = 0;
+ next->clip_head = s->next;
}
ns_unfocus (s->f);
}