XmbLookupString(), XwcLookupString() - obtain composed input from an input method
int XmbLookupString (XIC ic, XKeyPressedEvent *event,
char *buffer_return, int bytes_buffer,
KeySym *keysym_return, Status *status_return)
int XwcLookupString (XIC ic, XKeyPressedEvent *event,
wchar_t *buffer_return, int wchars_buffer,
KeySym *keysym_return, Status *status_return)
The XmbLookupString(3) and XwcLookupString(3) functions return the string from the input method specified in the buffer_return argument. If no string is returned, the buffer_return argument is unchanged.
The KeySym into which the KeyCode from the event was mapped is returned in the keysym_return argument if it is non-NULL and the status_return argument indicates that a KeySym was returned. If both a string and a KeySym are returned, the KeySym value does not necessarily correspond to the string returned.
Note that XmbLookupString(3) returns the length of the string in bytes and that XwcLookupString(3) returns the length of the string in characters.
XmbLookupString(3) and XwcLookupString(3) return text in the encoding of the locale bound to the input method of the specified input context.
Note that each string returned by XmbLookupString(3) and XwcLookupString(3) begins in the initial state of the encoding of the locale (if the encoding of the locale is state-dependent).
Note
In order to insure proper input processing, it is essential that the client pass only KeyPress events to XmbLookupString(3) and XwcLookupString(3). Their behavior when a client passes a KeyRelease event is undefined.
Clients should check the status_return argument before using the other returned values. These two functions both return a value to status_return that indicates what has been returned in the other arguments. The possible values returned are:
It does not make any difference if the input context passed as an argument to XmbLookupString(3) and XwcLookupString(3) is the one currently in possession of the focus or not. Input may have been composed within an input context before it lost the focus, and that input may be returned on subsequent calls to XmbLookupString(3) or XwcLookupString(3), even though it does not have any more keyboard focus.
Xlib