diff options
author | cc_benny <cc_benny> | 2003-11-21 13:05:09 (GMT) |
---|---|---|
committer | cc_benny <cc_benny> | 2003-11-21 13:05:09 (GMT) |
commit | 2d6c6f164e05ff0894578151d2b8f97664da269a (patch) | |
tree | 3b48c64ea92dace0420f06aa10f108072fbd70f0 /macosx/tkMacOSXKeyboard.c | |
parent | da6b5c5be1253d049455800d5d64e8c3d8006a58 (diff) | |
download | tk-2d6c6f164e05ff0894578151d2b8f97664da269a.zip tk-2d6c6f164e05ff0894578151d2b8f97664da269a.tar.gz tk-2d6c6f164e05ff0894578151d2b8f97664da269a.tar.bz2 |
* keyArray: Add 0x34 as <Return>. Add notes. (Merge from
trunk 1.6)
Diffstat (limited to 'macosx/tkMacOSXKeyboard.c')
-rw-r--r-- | macosx/tkMacOSXKeyboard.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/macosx/tkMacOSXKeyboard.c b/macosx/tkMacOSXKeyboard.c index d20fae7..e568e9f 100644 --- a/macosx/tkMacOSXKeyboard.c +++ b/macosx/tkMacOSXKeyboard.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacOSXKeyboard.c,v 1.5 2003/02/19 19:27:47 wolfsuit Exp $ + * RCS: @(#) $Id: tkMacOSXKeyboard.c,v 1.5.2.1 2003/11/21 13:05:09 cc_benny Exp $ */ #include "tkInt.h" @@ -25,9 +25,21 @@ typedef struct { KeySym keysym; /* X windows Keysym */ } KeyInfo; +/* + * Notes on keyArray: + * + * 0x34, XK_Return - Powerbooks use this and some keymaps define it. + * + * 0x47, XK_Clear - This key is NumLock when used on PCs, but Mac + * applications don't use it like that. + * + * All other keycodes are taken from the published ADB keyboard layouts. + */ + static KeyInfo keyArray[] = { {0x4C, XK_Return}, {0x24, XK_Return}, + {0x34, XK_Return}, {0x33, XK_BackSpace}, {0x75, XK_Delete}, {0x30, XK_Tab}, |