Evas font-engine: handle invisible chars in font query.

SVN revision: 56429
This commit is contained in:
Tom Hacohen 2011-01-30 10:33:43 +00:00
parent 74b26fec2e
commit 509e7bed98
2 changed files with 26 additions and 12 deletions

View File

@ -5,12 +5,6 @@
#include "evas_bidi_utils.h" /*defines BIDI_SUPPORT if possible */
#include "evas_font_private.h" /* for Frame-Queuing support */
#define EVAS_FONT_CHARACTER_IS_INVISIBLE(x) ( \
((0x200C <= (x)) && ((x) <= 0x200D)) || /* ZWNJ..ZWH */ \
((0x200E <= (x)) && ((x) <= 0x200F)) || /* BIDI stuff */ \
((0x202A <= (x)) && ((x) <= 0x202E)) /* BIDI stuff */ \
)
#define WORD_CACHE_MAXLEN 50
/* How many to cache */
#define WORD_CACHE_NWORDS 40

View File

@ -29,6 +29,13 @@ void evas_common_font_int_use_trim(void);
void evas_common_font_int_unload(RGBA_Font_Int *fi);
void evas_common_font_int_reload(RGBA_Font_Int *fi);
/* Macros for text walking */
#define EVAS_FONT_CHARACTER_IS_INVISIBLE(x) ( \
((0x200C <= (x)) && ((x) <= 0x200D)) || /* ZWNJ..ZWH */ \
((0x200E <= (x)) && ((x) <= 0x200F)) || /* BIDI stuff */ \
((0x202A <= (x)) && ((x) <= 0x202E)) /* BIDI stuff */ \
)
/**
* @def EVAS_FONT_UPDATE_KERN()
* @internal
@ -106,6 +113,7 @@ void evas_common_font_int_reload(RGBA_Font_Int *fi);
do \
{ \
int adv; \
int visible; \
prev_index = 0; \
last_adv = 0; \
for (char_index = 0 ; *text ; text++, char_index++) \
@ -136,10 +144,19 @@ void evas_common_font_int_reload(RGBA_Font_Int *fi);
continue; \
} \
kern = 0; \
if (EVAS_FONT_CHARACTER_IS_INVISIBLE(gl)) \
{ \
adv = width = bear_x = bear_y = 0; \
visible = 0; \
} \
else \
{ \
bear_x = fg->glyph_out->left; \
bear_y = fg->glyph_out->top; \
adv = fg->glyph->advance.x >> 16; \
width = fg->glyph_out->bitmap.width; \
visible = 1; \
} \
/* hmmm kerning means i can't sanely do my own cached metric */ \
/* tables! grrr - this means font face sharing is kinda... not */ \
/* an option if you want performance */ \
@ -153,8 +170,11 @@ void evas_common_font_int_reload(RGBA_Font_Int *fi);
LKU(fi->ft_mutex); \
/* If the current one is not a compositing char, do the */ \
/* previous advance and set the current advance as the next */ \
/* advance to do */ \
if (adv > 0) \
/* advance to do. If it's an invisible char (i.e one that shouldn't
* be printed anyhow, we want to advance everything as if it's
* a visible char. FIXME: use a proper way to detect diacritic
* instead. */ \
if ((adv > 0) || !visible) \
{ \
pen_x += last_adv; \
last_adv = adv; \