Copyright (C) 1994, Digital Equipment Corp.
INTERFACE Key;
Constants for the KeySym
s of common non-graphic keys.
CONST
KeyboardSetBase = 255 * 256;
Backspace = 8 + KeyboardSetBase;
Tab = 9 + KeyboardSetBase;
Linefeed = 10 + KeyboardSetBase;
Return = 13 + KeyboardSetBase;
Escape = 27 + KeyboardSetBase;
Delete = 255 + KeyboardSetBase;
LeftShift = 225 + KeyboardSetBase;
RightShift = 226 + KeyboardSetBase;
LeftControl = 227 + KeyboardSetBase;
RightControl = 228 + KeyboardSetBase;
LeftAlt = 232 + KeyboardSetBase;
RightAlt = 233 + KeyboardSetBase;
CapsLock = 229 + KeyboardSetBase;
(* SRC keyboard names *)
LeftOption = LeftAlt;
RightOption = RightAlt;
END Key.