KeySymsPhysicalSuns.mesa
Copyright Ó 1992 by Xerox Corporation. All rights reserved.
Christian Jacobi, February 25, 1992 1:53 pm PST
Christian Jacobi, February 26, 1992 4:53 pm PST
Some KeySyms which are useful on the keyboards of the Sun SPARC machines which we are currently using. There is a different interface for KeySyms registered by Sun.
These keysyms are not (yet?) registered with the X consortium.
DIRECTORY KeyTypes;
KeySymsPhysicalSuns: CEDAR DEFINITIONS =
BEGIN
KeySym: TYPE = KeyTypes.KeySym;
UniqueF11:  KeySym = [010070021H];
UniqueF12:  KeySym = [010070022H];
The F11 and F12 keysyms do exist in the standard, however they are not unique but share values with L1 and L2. We define alternative numerical values to enable reliable differentiation. These might be offered as alternatives to the regular F11 and F12 keysyms.
Compose:  KeySym = [010070026H];
KeypadIns:  KeySym = [010070027H];
KeypadDel:  KeySym = [010070028H];
END.