1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-13 15:18:14 +00:00
Interlisp.maiko/inc/keysym.h
Bruce Mitchener 694d9b08c6
Update more header include guards. (#348)
Some of these didn't have include guards, some  used old names
for them. Now they follow the current convention.
2021-02-11 10:42:07 -08:00

134 lines
3.0 KiB
C
Executable File

#ifndef KEYSYM_H
#define KEYSYM_H 1
/* $Id: keysym.h,v 1.2 1999/01/03 02:06:07 sybalsky Exp $ (C) Copyright Venue, All Rights Reserved */
/************************************************************************/
/* */
/* (C) Copyright 1989, 1990, 1990, 1991, 1992, 1993, 1994, 1995 Venue. */
/* All Rights Reserved. */
/* Manufactured in the United States of America. */
/* */
/************************************************************************/
/* * * * D O S K E Y B O A R D M A P P I N G S * * * */
#define KEY_5 0
#define KEY_4 1
#define KEY_6 2
#define KEY_E 3
#define KEY_7 4
#define KEY_D 5
#define KEY_U 6
#define KEY_V 7
#define KEY_0 8
#define KEY_K 9
#define KEY_MINUS 10
#define KEY_P 11
#define KEY_SLASH 12
#define KEY_BACKSPACE 13
#define KEY_SAME 14
#define KEY_DEL 15
#define KEY_3 16
#define KEY_2 17
#define KEY_W 18
#define KEY_Q 19
#define KEY_S 20
#define KEY_A 21
#define KEY_9 22
#define KEY_I 23
#define KEY_X 24
#define KEY_O 25
#define KEY_L 26
#define KEY_COMMA 27
#define KEY_QUOTE 28
#define KEY_CLOSEBRACK 29
/* KEY_NOT_USED 30 */
#define KEY_LEFTMETA 31
#define KEY_1 32
#define KEY_ESC 33
#define KEY_TAB 34
#define KEY_F 35
#define KEY_CTRL 36
#define KEY_C 37
#define KEY_J 38
#define KEY_B 39
#define KEY_Z 40
#define KEY_LEFTSHIFT 41
#define KEY_PERIOD 42
#define KEY_SEMICOLON 43
#define KEY_RETURN 44
#define KEY_BACKQUOTE 45
/* #define KEY_DEL 46 */
#define KEY_NEXT 47
#define KEY_R 48
#define KEY_T 49
#define KEY_G 50
#define KEY_Y 51
#define KEY_H 52
#define KEY_8 53
#define KEY_N 54
#define KEY_M 55
/* #define KEY_CAPSLOCK 56 */
#define KEY_SPACE 57
#define KEY_OPENBRACK 58
#define KEY_EQUAL 59
#define KEY_RIGHTSHIFT 60
#define KEY_STOP 61
#define KEY_MOVE 62
#define KEY_UNDO 63
#define KEY_PK_EQUAL 64
#define KEY_KP_SLASH 65
#define KEY_SUPERSCRIPT 66
#define KEY_CASE 67
#define KEY_STRIKEOUT 68
#define KEY_KP_2 69
#define KEY_KP_3 70
#define KEY_LINEFEED 71
#define KEY_CAPSLOCK 72
#define KEY_NUMLOCK 73
#define KEY_SCROLLOCK 74
#define KEY_BREAK 75
#define KEY_DOIT 76
/* KEY_NOT_USED 77 */
/* KEY_NOT_USED 78 */
/* KEY_NOT_USED 79 */
#define KEY_MARGIN 80
#define KEY_KP_HOME 81
#define KEY_KP_8 82
#define KEY_KP_9 83
#define KEY_KP_4 84
#define KEY_KP_5 85
#define KEEY_LEFT_SPC 86
#define KEY_KP_6 87
#define KEY_RIGHT_SPC 88
#define KEY_COPY 89
#define KEY_FIND 90
#define KEY_AGAIN 91
#define KEY_HELP 92
#define KEY_EXPAND 93
#define KEY_KP_END 94
#define KEY_KP_TIMES 95
#define KEY_KP_MINUS 96
#define KEY_CENTER 97
#define KEY_KP_INS 98
#define KEY_BOLD 99
#define KEY_ITALIC 100
#define KEY_UNDERLINE 101
#define KEY_KP_PLUS 102
/* KEY_NOT_USED 103 */
#define KEY_LARGER 104
#define KEY_BACKSLASH 105
#define KEY_LOOKS 106
#define KEY_F11 107
#define KEY_F12 108
#define KEY_PROPS 109
#define KEY_PRSC 110
#define KEY_OPEN 111
#endif