1 /* Input event support for Emacs on the Microsoft W32 API.
2 Copyright (C) 1992, 1993, 1995 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.
22 Adapted from ntkbd.c by Tim Fleehart
34 #include "blockinput.h"
35 #include "termhooks.h"
39 /* stdin, from ntterm */
40 extern HANDLE keyboard_handle
;
42 /* Info for last mouse motion */
43 static COORD movement_pos
;
44 static DWORD movement_time
;
47 extern void reinvoke_input_signal (void);
50 extern int change_frame_size (FRAME_PTR
, int, int, int, int);
52 /* from w32console.c */
53 extern int w32_use_full_screen_buffer
;
56 extern Lisp_Object Vw32_alt_is_meta
;
57 extern unsigned int map_keypad_keys (unsigned int, unsigned int);
60 extern Lisp_Object Vw32_capslock_is_shiftlock
;
61 extern Lisp_Object Vw32_enable_caps_lock
;
62 extern Lisp_Object Vw32_enable_num_lock
;
63 extern Lisp_Object Vw32_recognize_altgr
;
64 extern Lisp_Object Vw32_pass_lwindow_to_system
;
65 extern Lisp_Object Vw32_pass_rwindow_to_system
;
66 extern Lisp_Object Vw32_phantom_key_code
;
67 extern Lisp_Object Vw32_lwindow_modifier
;
68 extern Lisp_Object Vw32_rwindow_modifier
;
69 extern Lisp_Object Vw32_apps_modifier
;
70 extern Lisp_Object Vw32_scroll_lock_modifier
;
71 extern unsigned int w32_key_to_modifier (int key
);
74 #define EVENT_QUEUE_SIZE 50
75 static INPUT_RECORD event_queue
[EVENT_QUEUE_SIZE
];
76 static INPUT_RECORD
*queue_ptr
= event_queue
, *queue_end
= event_queue
;
79 fill_queue (BOOL block
)
84 if (queue_ptr
< queue_end
)
85 return queue_end
-queue_ptr
;
89 /* Check to see if there are some events to read before we try
90 because we can't block. */
91 if (!GetNumberOfConsoleInputEvents (keyboard_handle
, &events_waiting
))
93 if (events_waiting
== 0)
97 rc
= ReadConsoleInput (keyboard_handle
, event_queue
, EVENT_QUEUE_SIZE
,
101 queue_ptr
= event_queue
;
102 queue_end
= event_queue
+ events_waiting
;
103 return (int) events_waiting
;
106 /* In a generic, multi-frame world this should take a console handle
107 and return the frame for it
109 Right now, there's only one frame so return it. */
113 return SELECTED_FRAME ();
116 /* Translate console modifiers to emacs modifiers.
117 German keyboard support (Kai Morgan Zeise 2/18/95). */
119 w32_kbd_mods_to_emacs (DWORD mods
, WORD key
)
123 /* If we recognize right-alt and left-ctrl as AltGr, and it has been
124 pressed, first remove those modifiers. */
125 if (!NILP (Vw32_recognize_altgr
)
126 && (mods
& (RIGHT_ALT_PRESSED
| LEFT_CTRL_PRESSED
))
127 == (RIGHT_ALT_PRESSED
| LEFT_CTRL_PRESSED
))
128 mods
&= ~ (RIGHT_ALT_PRESSED
| LEFT_CTRL_PRESSED
);
130 if (mods
& (RIGHT_ALT_PRESSED
| LEFT_ALT_PRESSED
))
131 retval
= ((NILP (Vw32_alt_is_meta
)) ? alt_modifier
: meta_modifier
);
133 if (mods
& (RIGHT_CTRL_PRESSED
| LEFT_CTRL_PRESSED
))
135 retval
|= ctrl_modifier
;
136 if ((mods
& (RIGHT_CTRL_PRESSED
| LEFT_CTRL_PRESSED
))
137 == (RIGHT_CTRL_PRESSED
| LEFT_CTRL_PRESSED
))
138 retval
|= meta_modifier
;
141 if (mods
& LEFT_WIN_PRESSED
)
142 retval
|= w32_key_to_modifier (VK_LWIN
);
143 if (mods
& RIGHT_WIN_PRESSED
)
144 retval
|= w32_key_to_modifier (VK_RWIN
);
145 if (mods
& APPS_PRESSED
)
146 retval
|= w32_key_to_modifier (VK_APPS
);
147 if (mods
& SCROLLLOCK_ON
)
148 retval
|= w32_key_to_modifier (VK_SCROLL
);
150 /* Just in case someone wanted the original behaviour, make it
151 optional by setting w32-capslock-is-shiftlock to t. */
152 if (NILP (Vw32_capslock_is_shiftlock
)
153 /* Keys that should _not_ be affected by CapsLock. */
154 && ( (key
== VK_BACK
)
157 || (key
== VK_RETURN
)
158 || (key
== VK_ESCAPE
)
159 || ((key
>= VK_SPACE
) && (key
<= VK_HELP
))
160 || ((key
>= VK_NUMPAD0
) && (key
<= VK_F24
))
161 || ((key
>= VK_NUMPAD_CLEAR
) && (key
<= VK_NUMPAD_DELETE
))
164 /* Only consider shift state. */
165 if ((mods
& SHIFT_PRESSED
) != 0)
166 retval
|= shift_modifier
;
170 /* Ignore CapsLock state if not enabled. */
171 if (NILP (Vw32_enable_caps_lock
))
172 mods
&= ~CAPSLOCK_ON
;
173 if ((mods
& (SHIFT_PRESSED
| CAPSLOCK_ON
)) != 0)
174 retval
|= shift_modifier
;
181 /* Return nonzero if the virtual key is a dead key. */
183 is_dead_key (int wparam
)
185 unsigned int code
= MapVirtualKey (wparam
, 2);
187 /* Windows 95 returns 0x8000, NT returns 0x80000000. */
188 return (code
& 0x80008000) ? 1 : 0;
192 /* The return code indicates key code size. */
194 w32_kbd_patch_key (KEY_EVENT_RECORD
*event
)
196 unsigned int key_code
= event
->wVirtualKeyCode
;
197 unsigned int mods
= event
->dwControlKeyState
;
199 static BYTE ansi_code
[4];
200 static int isdead
= 0;
204 event
->uChar
.AsciiChar
= ansi_code
[2];
208 if (event
->uChar
.AsciiChar
!= 0)
211 memset (keystate
, 0, sizeof (keystate
));
212 keystate
[key_code
] = 0x80;
213 if (mods
& SHIFT_PRESSED
)
214 keystate
[VK_SHIFT
] = 0x80;
215 if (mods
& CAPSLOCK_ON
)
216 keystate
[VK_CAPITAL
] = 1;
217 /* If we recognize right-alt and left-ctrl as AltGr, set the key
218 states accordingly before invoking ToAscii. */
219 if (!NILP (Vw32_recognize_altgr
)
220 && (mods
& LEFT_CTRL_PRESSED
) && (mods
& RIGHT_ALT_PRESSED
))
222 keystate
[VK_CONTROL
] = 0x80;
223 keystate
[VK_LCONTROL
] = 0x80;
224 keystate
[VK_MENU
] = 0x80;
225 keystate
[VK_RMENU
] = 0x80;
229 /* Because of an OS bug, ToAscii corrupts the stack when called to
230 convert a dead key in console mode on NT4. Unfortunately, trying
231 to check for dead keys using MapVirtualKey doesn't work either -
232 these functions apparently use internal information about keyboard
233 layout which doesn't get properly updated in console programs when
234 changing layout (though apparently it gets partly updated,
235 otherwise ToAscii wouldn't crash). */
236 if (is_dead_key (event
->wVirtualKeyCode
))
240 /* On NT, call ToUnicode instead and then convert to the current
241 locale's default codepage. */
242 if (os_subtype
== OS_NT
)
246 isdead
= ToUnicode (event
->wVirtualKeyCode
, event
->wVirtualScanCode
,
247 keystate
, buf
, 128, 0);
253 GetLocaleInfo (GetThreadLocale (),
254 LOCALE_IDEFAULTANSICODEPAGE
, cp
, 20);
256 isdead
= WideCharToMultiByte (cpId
, 0, buf
, isdead
,
257 ansi_code
, 4, NULL
, NULL
);
264 isdead
= ToAscii (event
->wVirtualKeyCode
, event
->wVirtualScanCode
,
265 keystate
, (LPWORD
) ansi_code
, 0);
270 event
->uChar
.AsciiChar
= ansi_code
[0];
275 extern char *lispy_function_keys
[];
277 static int faked_key
= 0;
279 /* return code -1 means that event_queue_ptr won't be incremented.
280 In other word, this event makes two key codes. (by himi) */
282 key_event (KEY_EVENT_RECORD
*event
, struct input_event
*emacs_ev
, int *isdead
)
284 static int mod_key_state
= 0;
289 /* Skip key-up events. */
290 if (!event
->bKeyDown
)
292 switch (event
->wVirtualKeyCode
)
295 mod_key_state
&= ~LEFT_WIN_PRESSED
;
298 mod_key_state
&= ~RIGHT_WIN_PRESSED
;
301 mod_key_state
&= ~APPS_PRESSED
;
307 /* Ignore keystrokes we fake ourself; see below. */
308 if (faked_key
== event
->wVirtualKeyCode
)
314 /* To make it easier to debug this code, ignore modifier keys! */
315 switch (event
->wVirtualKeyCode
)
318 if (NILP (Vw32_pass_lwindow_to_system
))
320 /* Prevent system from acting on keyup (which opens the Start
321 menu if no other key was pressed) by simulating a press of
322 Space which we will ignore. */
323 if ((mod_key_state
& LEFT_WIN_PRESSED
) == 0)
325 if (NUMBERP (Vw32_phantom_key_code
))
326 faked_key
= XUINT (Vw32_phantom_key_code
) & 255;
328 faked_key
= VK_SPACE
;
329 keybd_event (faked_key
, (BYTE
) MapVirtualKey (faked_key
, 0), 0, 0);
332 mod_key_state
|= LEFT_WIN_PRESSED
;
333 if (!NILP (Vw32_lwindow_modifier
))
337 if (NILP (Vw32_pass_rwindow_to_system
))
339 if ((mod_key_state
& RIGHT_WIN_PRESSED
) == 0)
341 if (NUMBERP (Vw32_phantom_key_code
))
342 faked_key
= XUINT (Vw32_phantom_key_code
) & 255;
344 faked_key
= VK_SPACE
;
345 keybd_event (faked_key
, (BYTE
) MapVirtualKey (faked_key
, 0), 0, 0);
348 mod_key_state
|= RIGHT_WIN_PRESSED
;
349 if (!NILP (Vw32_rwindow_modifier
))
353 mod_key_state
|= APPS_PRESSED
;
354 if (!NILP (Vw32_apps_modifier
))
358 /* Decide whether to treat as modifier or function key. */
359 if (NILP (Vw32_enable_caps_lock
))
360 goto disable_lock_key
;
363 /* Decide whether to treat as modifier or function key. */
364 if (NILP (Vw32_enable_num_lock
))
365 goto disable_lock_key
;
368 /* Decide whether to treat as modifier or function key. */
369 if (NILP (Vw32_scroll_lock_modifier
))
370 goto disable_lock_key
;
373 /* Ensure the appropriate lock key state is off (and the
374 indicator light as well). */
375 wParam
= event
->wVirtualKeyCode
;
376 if (GetAsyncKeyState (wParam
) & 0x8000)
378 /* Fake another press of the relevant key. Apparently, this
379 really is the only way to turn off the indicator. */
381 keybd_event ((BYTE
) wParam
, (BYTE
) MapVirtualKey (wParam
, 0),
382 KEYEVENTF_EXTENDEDKEY
| KEYEVENTF_KEYUP
, 0);
383 keybd_event ((BYTE
) wParam
, (BYTE
) MapVirtualKey (wParam
, 0),
384 KEYEVENTF_EXTENDEDKEY
| 0, 0);
385 keybd_event ((BYTE
) wParam
, (BYTE
) MapVirtualKey (wParam
, 0),
386 KEYEVENTF_EXTENDEDKEY
| KEYEVENTF_KEYUP
, 0);
394 /* Windows maps Ctrl-Pause (aka Ctrl-Break) into VK_CANCEL,
395 which is confusing for purposes of key binding; convert
396 VK_CANCEL events into VK_PAUSE events. */
397 event
->wVirtualKeyCode
= VK_PAUSE
;
400 /* Windows maps Ctrl-NumLock into VK_PAUSE, which is confusing
401 for purposes of key binding; convert these back into
402 VK_NUMLOCK events, at least when we want to see NumLock key
403 presses. (Note that there is never any possibility that
404 VK_PAUSE with Ctrl really is C-Pause as per above.) */
405 if (NILP (Vw32_enable_num_lock
)
406 && (event
->dwControlKeyState
407 & (LEFT_CTRL_PRESSED
| RIGHT_CTRL_PRESSED
)) != 0)
408 event
->wVirtualKeyCode
= VK_NUMLOCK
;
412 /* Recognize state of Windows and Apps keys. */
413 event
->dwControlKeyState
|= mod_key_state
;
415 /* Distinguish numeric keypad keys from extended keys. */
416 event
->wVirtualKeyCode
=
417 map_keypad_keys (event
->wVirtualKeyCode
,
418 (event
->dwControlKeyState
& ENHANCED_KEY
));
420 if (lispy_function_keys
[event
->wVirtualKeyCode
] == 0)
422 emacs_ev
->kind
= ascii_keystroke
;
424 if (!NILP (Vw32_recognize_altgr
)
425 && (event
->dwControlKeyState
& LEFT_CTRL_PRESSED
)
426 && (event
->dwControlKeyState
& RIGHT_ALT_PRESSED
))
428 /* Don't try to interpret AltGr key chords; ToAscii seems not
429 to process them correctly. */
431 /* Handle key chords including any modifiers other than shift
432 directly, in order to preserve as much modifier information as
434 else if (event
->dwControlKeyState
435 & ( RIGHT_CTRL_PRESSED
| LEFT_CTRL_PRESSED
436 | RIGHT_ALT_PRESSED
| LEFT_ALT_PRESSED
437 | (!NILP (Vw32_lwindow_modifier
) ? LEFT_WIN_PRESSED
: 0)
438 | (!NILP (Vw32_rwindow_modifier
) ? RIGHT_WIN_PRESSED
: 0)
439 | (!NILP (Vw32_apps_modifier
) ? APPS_PRESSED
: 0)
440 | (!NILP (Vw32_scroll_lock_modifier
) ? SCROLLLOCK_ON
: 0)))
442 /* Don't translate modified alphabetic keystrokes, so the user
443 doesn't need to constantly switch layout to type control or
444 meta keystrokes when the normal layout translates
445 alphabetic characters to non-ascii characters. */
446 if ('A' <= event
->wVirtualKeyCode
&& event
->wVirtualKeyCode
<= 'Z')
448 event
->uChar
.AsciiChar
= event
->wVirtualKeyCode
;
449 if ((event
->dwControlKeyState
& SHIFT_PRESSED
) == 0)
450 event
->uChar
.AsciiChar
+= ('a' - 'A');
452 /* Try to handle unrecognized keystrokes by determining the
453 base character (ie. translating the base key plus shift
455 else if (event
->uChar
.AsciiChar
== 0)
456 w32_kbd_patch_key (event
);
458 if (event
->uChar
.AsciiChar
== 0)
460 XSETINT (emacs_ev
->code
, event
->uChar
.AsciiChar
);
464 emacs_ev
->kind
= non_ascii_keystroke
;
465 XSETINT (emacs_ev
->code
, event
->wVirtualKeyCode
);
468 XSETFRAME (emacs_ev
->frame_or_window
, get_frame ());
469 emacs_ev
->modifiers
= w32_kbd_mods_to_emacs (event
->dwControlKeyState
,
470 event
->wVirtualKeyCode
);
471 emacs_ev
->timestamp
= GetTickCount ();
476 w32_console_toggle_lock_key (int vk_code
, Lisp_Object new_state
)
478 int cur_state
= (GetKeyState (vk_code
) & 1);
481 || (NUMBERP (new_state
)
482 && (XUINT (new_state
)) & 1 != cur_state
))
486 keybd_event ((BYTE
) vk_code
,
487 (BYTE
) MapVirtualKey (vk_code
, 0),
488 KEYEVENTF_EXTENDEDKEY
| KEYEVENTF_KEYUP
, 0);
489 keybd_event ((BYTE
) vk_code
,
490 (BYTE
) MapVirtualKey (vk_code
, 0),
491 KEYEVENTF_EXTENDEDKEY
| 0, 0);
492 keybd_event ((BYTE
) vk_code
,
493 (BYTE
) MapVirtualKey (vk_code
, 0),
494 KEYEVENTF_EXTENDEDKEY
| KEYEVENTF_KEYUP
, 0);
495 cur_state
= !cur_state
;
501 /* Mouse position hook. */
503 w32_console_mouse_position (FRAME_PTR
*f
,
505 Lisp_Object
*bar_window
,
506 enum scroll_bar_part
*part
,
518 SELECTED_FRAME ()->mouse_moved
= 0;
522 *time
= movement_time
;
527 /* Remember mouse motion and notify emacs. */
529 mouse_moved_to (int x
, int y
)
531 /* If we're in the same place, ignore it */
532 if (x
!= movement_pos
.X
|| y
!= movement_pos
.Y
)
534 SELECTED_FRAME ()->mouse_moved
= 1;
537 movement_time
= GetTickCount ();
541 /* Consoles return button bits in a strange order:
542 least significant - Leftmost button
543 next - Rightmost button
547 Assume emacs likes three button mice, so
551 Others increase from there. */
553 static int emacs_button_translation
[NUM_MOUSE_BUTTONS
] =
559 do_mouse_event (MOUSE_EVENT_RECORD
*event
,
560 struct input_event
*emacs_ev
)
562 static DWORD button_state
= 0;
563 DWORD but_change
, mask
;
566 if (event
->dwEventFlags
== MOUSE_MOVED
)
568 /* For movement events we just note that the mouse has moved
569 so that emacs will generate drag events. */
570 mouse_moved_to (event
->dwMousePosition
.X
, event
->dwMousePosition
.Y
);
574 /* It looks like the console code sends us a mouse event with
575 dwButtonState == 0 when a window is activated. Ignore this case. */
576 if (event
->dwButtonState
== button_state
)
579 emacs_ev
->kind
= mouse_click
;
581 /* Find out what button has changed state since the last button event. */
582 but_change
= button_state
^ event
->dwButtonState
;
584 for (i
= 0; i
< NUM_MOUSE_BUTTONS
; i
++, mask
<<= 1)
585 if (but_change
& mask
)
587 XSETINT (emacs_ev
->code
, emacs_button_translation
[i
]);
591 /* If the changed button is out of emacs' range (highly unlikely)
592 ignore this event. */
593 if (i
== NUM_MOUSE_BUTTONS
)
596 button_state
= event
->dwButtonState
;
597 emacs_ev
->timestamp
= GetTickCount ();
598 emacs_ev
->modifiers
= w32_kbd_mods_to_emacs (event
->dwControlKeyState
, 0) |
599 ((event
->dwButtonState
& mask
) ? down_modifier
: up_modifier
);
601 XSETFASTINT (emacs_ev
->x
, event
->dwMousePosition
.X
);
602 XSETFASTINT (emacs_ev
->y
, event
->dwMousePosition
.Y
);
603 /* for Mule 2.2 (Based on Emacs 19.28 */
605 XSET (emacs_ev
->frame_or_window
, Lisp_Frame
, get_frame ());
607 XSETFRAME (emacs_ev
->frame_or_window
, get_frame ());
614 resize_event (WINDOW_BUFFER_SIZE_RECORD
*event
)
616 FRAME_PTR f
= get_frame ();
618 change_frame_size (f
, event
->dwSize
.Y
, event
->dwSize
.X
, 0, 1);
619 SET_FRAME_GARBAGED (f
);
623 maybe_generate_resize_event ()
625 CONSOLE_SCREEN_BUFFER_INFO info
;
626 FRAME_PTR f
= get_frame ();
628 GetConsoleScreenBufferInfo (GetStdHandle (STD_OUTPUT_HANDLE
), &info
);
630 /* It is okay to call this unconditionally, since it will do nothing
631 if the size hasn't actually changed. */
632 change_frame_size (f
,
633 1 + info
.srWindow
.Bottom
- info
.srWindow
.Top
,
634 1 + info
.srWindow
.Right
- info
.srWindow
.Left
,
639 w32_console_read_socket (int sd
, struct input_event
*bufp
, int numchars
,
642 BOOL no_events
= TRUE
;
643 int nev
, ret
= 0, add
;
646 if (interrupt_input_blocked
)
648 interrupt_input_pending
= 1;
652 interrupt_input_pending
= 0;
657 nev
= fill_queue (0);
660 /* If nev == -1, there was some kind of error
661 If nev == 0 then waitp must be zero and no events were available
667 while (nev
> 0 && numchars
> 0)
669 switch (queue_ptr
->EventType
)
672 add
= key_event (&queue_ptr
->Event
.KeyEvent
, bufp
, &isdead
);
673 if (add
== -1) /* 95.7.25 by himi */
684 add
= do_mouse_event (&queue_ptr
->Event
.MouseEvent
, bufp
);
690 case WINDOW_BUFFER_SIZE_EVENT
:
691 if (w32_use_full_screen_buffer
)
692 resize_event (&queue_ptr
->Event
.WindowBufferSizeEvent
);
697 /* Internal event types, ignored. */
705 if (ret
> 0 || expected
== 0)
709 /* We don't get told about changes in the window size (only the buffer
710 size, which we no longer care about), so we have to check it
712 if (!w32_use_full_screen_buffer
)
713 maybe_generate_resize_event ();