KeySymsTrackball.mesa
Copyright Ó 1992 by Xerox Corporation. All rights reserved.
Contexts: Keysyms representing the ball, thumbwheel, and three buttons of a trackball device.
Kenneth A. Pier, August 20, 1992 10:22 am PDT
DIRECTORY
KeyTypes;
KeySymsTrackball: CEDAR DEFINITIONS =
BEGIN
KeySym: TYPE = KeyTypes.KeySym;
The following KeySym assignments were provided by Christian Jacobi
to conform to the XWindows legal extension range for Xerox. August 20, 1992.
TrackballLeft: KeySym = [010070018H];
TrackballMiddle: KeySym = [010070019H];
TrackballRight: KeySym = [01007001AH];
Trackball: KeySym = [01007001BH];
Thumbwheel: KeySym = [01007001CH];
END.