- Subject: Re: x-keydefs.sl
- From: Marko Mahnic <marko.mahnic@xxxxxxxx>
- Date: Thu, 19 Jan 2006 10:08:10 +0100
G. Milde wrote:
Maybe someone with Jed under DOS or Windos could help to find
out the strings sent by
On Windows (console jed):
Key_Ctrl_Tab
Nothing
Key_Alt_Tab
Switch application, no code
Key_Shift_Return
Same as Return (^M)
Key_Alt_Return
Switch to fullscreen mode, no code
Key_Ctrl_Shift_Home
Same as Key_Ctrl_Home
Key_Ctrl_Shift_End
Same as Key_Ctrl_End
Key_Ctrl_Shift_PgUp
Same as Key_Ctrl_PgUp
Key_Ctrl_Shift_PgDn
Same as Key_Ctrl_PgDn
Marko
define testkey()
{
variable ch, s;
flush("Test Key: ");
while ( not input_pending(0));
s = "";
while (input_pending(0))
{
ch = getkey();
if (ch < 32) s = s + sprintf("^%c ", ch + 64);
else if (ch == 32) s = s + "SPC ";
else if (ch < 128) s = s + sprintf("%c ", ch);
else s = s + sprintf("\\x%x ", ch);
}
flush (sprintf("'%s'", s));
}
definekey("testkey", "^p", "C");
[2006 date index]
[2006 thread index]
[Thread Prev] [Thread Next]
[Date Prev] [Date Next]