summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
authorcc_benny <cc_benny>2003-11-20 12:40:15 (GMT)
committercc_benny <cc_benny>2003-11-20 12:40:15 (GMT)
commit3a98df29aff9b79f52c1edfb2a812c1a48cc788a (patch)
tree533b7d7753989ca0d4eef6238593a1b851dfb503 /macosx
parent8ca7c36d173c2108f17a42ee737043d13b36cbd0 (diff)
downloadtk-3a98df29aff9b79f52c1edfb2a812c1a48cc788a.zip
tk-3a98df29aff9b79f52c1edfb2a812c1a48cc788a.tar.gz
tk-3a98df29aff9b79f52c1edfb2a812c1a48cc788a.tar.bz2
* keyArray: Add 0x34 as <Return>. Add notes.
Diffstat (limited to 'macosx')
-rw-r--r--macosx/tkMacOSXKeyboard.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/macosx/tkMacOSXKeyboard.c b/macosx/tkMacOSXKeyboard.c
index d20fae7..e1e6cda 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.6 2003/11/20 12:40:15 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},