summaryrefslogtreecommitdiff
path: root/modules/basic/basic.c
diff options
context:
space:
mode:
Diffstat (limited to 'modules/basic/basic.c')
-rw-r--r--modules/basic/basic.c20
1 files changed, 11 insertions, 9 deletions
diff --git a/modules/basic/basic.c b/modules/basic/basic.c
index 6c851228..e78aa384 100644
--- a/modules/basic/basic.c
+++ b/modules/basic/basic.c
@@ -401,16 +401,9 @@ basic_engine_shape (PangoFont *font,
input = buf;
}
- if (wc == 0x200B) /* Zero-width space */
+ if (wc == 0x200B || wc == 0x200E || wc == 0x200F) /* Zero-width characters */
{
- index = find_char (cache, font, ' ', input);
- if (index)
- {
- set_glyph (font, glyphs, i, p - text, index);
- glyphs->glyphs[i].geometry.width = 0;
- }
- else
- set_glyph (font, glyphs, i, p - text, pango_x_get_unknown_glyph (font));
+ set_glyph (font, glyphs, i, p - text, 0);
}
else
{
@@ -423,10 +416,19 @@ basic_engine_shape (PangoFont *font,
{
if (i > 0)
{
+ PangoRectangle logical_rect, ink_rect;
+
glyphs->glyphs[i].geometry.width = MAX (glyphs->glyphs[i-1].geometry.width,
glyphs->glyphs[i].geometry.width);
glyphs->glyphs[i-1].geometry.width = 0;
glyphs->log_clusters[i] = glyphs->log_clusters[i-1];
+
+ /* Some heuristics to try to guess how overstrike glyphs are
+ * done and compensate
+ */
+ pango_font_get_glyph_extents (font, glyphs->glyphs[i].glyph, &ink_rect, &logical_rect);
+ if (logical_rect.width == 0 && ink_rect.x == 0)
+ glyphs->glyphs[i].geometry.x_offset = (glyphs->glyphs[i].geometry.width - ink_rect.width) / 2;
}
}
}