NAME
XtConvertCase − determine uppercase and lowercase versions of a keysym.
SYNOPSIS
void XtConvertCase(display, keysym, lower_return, upper_return)
Display ∗display;
KeySym keysym;
KeySym ∗lower_return;
KeySym ∗upper_return;
Inputs
displaySpecifies the display that the keysym came from.
keysymSpecifies the keysym to convert.
Outputs
lower_return
Returns the lowercase equivalent of the keysym.
upper_return
Returns the uppercase equivalent of the keysym.
DESCRIPTION
XtConvertCase() calls the case converter procedure most recently registered for a range of keysyms that includes keysym to obtain uppercase and lowercase versions of the supplied keysym.
USAGE
You will probably never need to call this function unless you are writing a customized keycode-to-keysym translator. The Translation Manager uses case converters as part of its keycode-to-keysym translation process.
You can register a case converter for a range of keysyms with XtRegisterCaseConverter().
SEE ALSO
XtRegisterCaseConverterUNIX SYSTEM V/68, XtSetKeyTranslatorUNIX SYSTEM V/68, XtTranslateKeyUNIX SYSTEM V/68, XtTranslateKeycodeUNIX SYSTEM V/68,
XtCaseProcUNIX SYSTEM V/88, XtKeyProcUNIX SYSTEM V/88.