void XwcDrawText(display, d, gc, x, y, items, nitems)
Display *display;
Drawable d;
GC gc;
int x, y;
XwcTextItem *items;
int nitems;
void Xutf8DrawText(display, d, gc, x, y, items, nitems)
Display *display;
Drawable d;
GC gc;
int x, y;
XmbTextItem *items;
int nitems;
XmbDrawText, XwcDrawText and Xutf8DrawText do not perform any context-dependent rendering between text segments. Clients may compute the drawing metrics by passing each text segment to XmbTextExtents, XwcTextExtents, Xutf8TextExtents or XmbTextPerCharExtents, XwcTextPerCharExtents. Xutf8TextPerCharExtents. When the XFontSet has missing charsets, each unavailable character is drawn with the default string returned by XCreateFontSet. The behavior for an invalid codepoint is undefined.
The function Xutf8DrawText is an XFree86 extension introduced in XFree86 4.0.2. Its presence is indicated by the macro X_HAVE_UTF8_STRING.
0 0>=40 .vs 0u 0<=39 .vs 0p typedef struct { char *chars; int nchars; int delta; XFontSet font_set; } XmbTextItem;The XwcTextItem structure contains:
0 0>=40 .vs 0u 0<=39 .vs 0p typedef struct { wchar_t *chars; int nchars; int delta; XFontSet font_set; } XwcTextItem;