annotate src/w32inevt.c @ 42469:64341c22fb4c

Include <config.h>.
author Pavel Janík <Pavel@Janik.cz>
date Tue, 01 Jan 2002 19:15:26 +0000
parents 712561c30aa5
children 863817d7e734
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
16884
36babc489b0c Change all uses of win95, winnt, and win32
Geoff Voelker <voelker@cs.washington.edu>
parents: 16588
diff changeset
1 /* Input event support for Emacs on the Microsoft W32 API.
11386
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
2 Copyright (C) 1992, 1993, 1995 Free Software Foundation, Inc.
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
3
14186
ee40177f6c68 Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents: 12544
diff changeset
4 This file is part of GNU Emacs.
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
5
14186
ee40177f6c68 Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents: 12544
diff changeset
6 GNU Emacs is free software; you can redistribute it and/or modify
ee40177f6c68 Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents: 12544
diff changeset
7 it under the terms of the GNU General Public License as published by
ee40177f6c68 Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents: 12544
diff changeset
8 the Free Software Foundation; either version 2, or (at your option)
ee40177f6c68 Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents: 12544
diff changeset
9 any later version.
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
10
14186
ee40177f6c68 Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents: 12544
diff changeset
11 GNU Emacs is distributed in the hope that it will be useful,
ee40177f6c68 Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents: 12544
diff changeset
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
ee40177f6c68 Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents: 12544
diff changeset
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
ee40177f6c68 Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents: 12544
diff changeset
14 GNU General Public License for more details.
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
15
14186
ee40177f6c68 Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents: 12544
diff changeset
16 You should have received a copy of the GNU General Public License
ee40177f6c68 Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents: 12544
diff changeset
17 along with GNU Emacs; see the file COPYING. If not, write to
ee40177f6c68 Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents: 12544
diff changeset
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
ee40177f6c68 Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents: 12544
diff changeset
19 Boston, MA 02111-1307, USA.
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
20
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
21 Drew Bliss 01-Oct-93
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
22 Adapted from ntkbd.c by Tim Fleehart
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
23 */
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
24
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
25
42469
64341c22fb4c Include <config.h>.
Pavel Janík <Pavel@Janik.cz>
parents: 35284
diff changeset
26 #ifdef HAVE_CONFIG_H
64341c22fb4c Include <config.h>.
Pavel Janík <Pavel@Janik.cz>
parents: 35284
diff changeset
27 #include <config.h>
64341c22fb4c Include <config.h>.
Pavel Janík <Pavel@Janik.cz>
parents: 35284
diff changeset
28 #endif
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
29
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
30 #include <stdlib.h>
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
31 #include <stdio.h>
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
32 #include <windows.h>
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
33
31113
1743924e00dd Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents: 29319
diff changeset
34 #ifndef MOUSE_MOVED
1743924e00dd Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents: 29319
diff changeset
35 #define MOUSE_MOVED 1
1743924e00dd Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents: 29319
diff changeset
36 #endif
1743924e00dd Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents: 29319
diff changeset
37
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
38 #include "lisp.h"
31113
1743924e00dd Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents: 29319
diff changeset
39 #include "keyboard.h"
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
40 #include "frame.h"
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
41 #include "blockinput.h"
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
42 #include "termhooks.h"
23679
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
43 #include "w32heap.h"
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
44 #include "w32term.h"
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
45
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
46 /* stdin, from ntterm */
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
47 extern HANDLE keyboard_handle;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
48
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
49 /* Info for last mouse motion */
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
50 static COORD movement_pos;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
51 static DWORD movement_time;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
52
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
53 /* from keyboard.c */
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
54 extern void reinvoke_input_signal (void);
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
55
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
56 /* from dispnew.c */
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
57 extern int change_frame_size (FRAME_PTR, int, int, int, int);
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
58
24937
42f29912dc46 (w32_console_read_socket): Use new variable w32_use_full_screen_buffer.
Andrew Innes <andrewi@gnu.org>
parents: 24756
diff changeset
59 /* from w32console.c */
42f29912dc46 (w32_console_read_socket): Use new variable w32_use_full_screen_buffer.
Andrew Innes <andrewi@gnu.org>
parents: 24756
diff changeset
60 extern int w32_use_full_screen_buffer;
42f29912dc46 (w32_console_read_socket): Use new variable w32_use_full_screen_buffer.
Andrew Innes <andrewi@gnu.org>
parents: 24756
diff changeset
61
15460
be07c4433554 (Vwin32_alt_is_meta): Declared.
Richard M. Stallman <rms@gnu.org>
parents: 15144
diff changeset
62 /* from w32fns.c */
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15784
diff changeset
63 extern Lisp_Object Vw32_alt_is_meta;
23679
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
64 extern unsigned int map_keypad_keys (unsigned int, unsigned int);
15460
be07c4433554 (Vwin32_alt_is_meta): Declared.
Richard M. Stallman <rms@gnu.org>
parents: 15144
diff changeset
65
19710
4a6b8c86ad87 Declare externs from other files.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16884
diff changeset
66 /* from w32term */
4a6b8c86ad87 Declare externs from other files.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16884
diff changeset
67 extern Lisp_Object Vw32_capslock_is_shiftlock;
23679
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
68 extern Lisp_Object Vw32_enable_caps_lock;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
69 extern Lisp_Object Vw32_enable_num_lock;
21611
1a4fc4d9ca9a (Vw32_recognize_altgr): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 19710
diff changeset
70 extern Lisp_Object Vw32_recognize_altgr;
23679
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
71 extern Lisp_Object Vw32_pass_lwindow_to_system;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
72 extern Lisp_Object Vw32_pass_rwindow_to_system;
23804
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
73 extern Lisp_Object Vw32_phantom_key_code;
23679
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
74 extern Lisp_Object Vw32_lwindow_modifier;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
75 extern Lisp_Object Vw32_rwindow_modifier;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
76 extern Lisp_Object Vw32_apps_modifier;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
77 extern Lisp_Object Vw32_scroll_lock_modifier;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
78 extern unsigned int w32_key_to_modifier (int key);
19710
4a6b8c86ad87 Declare externs from other files.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16884
diff changeset
79
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
80 /* Event queue */
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
81 #define EVENT_QUEUE_SIZE 50
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
82 static INPUT_RECORD event_queue[EVENT_QUEUE_SIZE];
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
83 static INPUT_RECORD *queue_ptr = event_queue, *queue_end = event_queue;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
84
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
85 static int
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
86 fill_queue (BOOL block)
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
87 {
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
88 BOOL rc;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
89 DWORD events_waiting;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
90
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
91 if (queue_ptr < queue_end)
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
92 return queue_end-queue_ptr;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
93
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
94 if (!block)
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
95 {
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
96 /* Check to see if there are some events to read before we try
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
97 because we can't block. */
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
98 if (!GetNumberOfConsoleInputEvents (keyboard_handle, &events_waiting))
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
99 return -1;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
100 if (events_waiting == 0)
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
101 return 0;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
102 }
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
103
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
104 rc = ReadConsoleInput (keyboard_handle, event_queue, EVENT_QUEUE_SIZE,
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
105 &events_waiting);
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
106 if (!rc)
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
107 return -1;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
108 queue_ptr = event_queue;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
109 queue_end = event_queue + events_waiting;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
110 return (int) events_waiting;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
111 }
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
112
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
113 /* In a generic, multi-frame world this should take a console handle
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
114 and return the frame for it
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
115
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
116 Right now, there's only one frame so return it. */
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
117 static FRAME_PTR
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
118 get_frame (void)
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
119 {
27399
22e4449438ff (get_frame, w32_console_mouse_position, mouse_moved_to):
Jason Rumney <jasonr@gnu.org>
parents: 24937
diff changeset
120 return SELECTED_FRAME ();
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
121 }
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
122
11386
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
123 /* Translate console modifiers to emacs modifiers.
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
124 German keyboard support (Kai Morgan Zeise 2/18/95). */
15144
9dd18e9e0362 (win32_kdb_patch_key): Initialize isdead.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14463
diff changeset
125 int
19710
4a6b8c86ad87 Declare externs from other files.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16884
diff changeset
126 w32_kbd_mods_to_emacs (DWORD mods, WORD key)
11386
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
127 {
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
128 int retval = 0;
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
129
21611
1a4fc4d9ca9a (Vw32_recognize_altgr): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 19710
diff changeset
130 /* If we recognize right-alt and left-ctrl as AltGr, and it has been
23679
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
131 pressed, first remove those modifiers. */
21611
1a4fc4d9ca9a (Vw32_recognize_altgr): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 19710
diff changeset
132 if (!NILP (Vw32_recognize_altgr)
1a4fc4d9ca9a (Vw32_recognize_altgr): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 19710
diff changeset
133 && (mods & (RIGHT_ALT_PRESSED | LEFT_CTRL_PRESSED))
11386
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
134 == (RIGHT_ALT_PRESSED | LEFT_CTRL_PRESSED))
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
135 mods &= ~ (RIGHT_ALT_PRESSED | LEFT_CTRL_PRESSED);
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
136
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
137 if (mods & (RIGHT_ALT_PRESSED | LEFT_ALT_PRESSED))
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15784
diff changeset
138 retval = ((NILP (Vw32_alt_is_meta)) ? alt_modifier : meta_modifier);
11386
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
139
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
140 if (mods & (RIGHT_CTRL_PRESSED | LEFT_CTRL_PRESSED))
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
141 {
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
142 retval |= ctrl_modifier;
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
143 if ((mods & (RIGHT_CTRL_PRESSED | LEFT_CTRL_PRESSED))
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
144 == (RIGHT_CTRL_PRESSED | LEFT_CTRL_PRESSED))
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
145 retval |= meta_modifier;
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
146 }
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
147
23679
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
148 if (mods & LEFT_WIN_PRESSED)
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
149 retval |= w32_key_to_modifier (VK_LWIN);
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
150 if (mods & RIGHT_WIN_PRESSED)
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
151 retval |= w32_key_to_modifier (VK_RWIN);
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
152 if (mods & APPS_PRESSED)
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
153 retval |= w32_key_to_modifier (VK_APPS);
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
154 if (mods & SCROLLLOCK_ON)
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
155 retval |= w32_key_to_modifier (VK_SCROLL);
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
156
19710
4a6b8c86ad87 Declare externs from other files.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16884
diff changeset
157 /* Just in case someone wanted the original behaviour, make it
4a6b8c86ad87 Declare externs from other files.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16884
diff changeset
158 optional by setting w32-capslock-is-shiftlock to t. */
23679
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
159 if (NILP (Vw32_capslock_is_shiftlock)
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
160 /* Keys that should _not_ be affected by CapsLock. */
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
161 && ( (key == VK_BACK)
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
162 || (key == VK_TAB)
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
163 || (key == VK_CLEAR)
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
164 || (key == VK_RETURN)
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
165 || (key == VK_ESCAPE)
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
166 || ((key >= VK_SPACE) && (key <= VK_HELP))
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
167 || ((key >= VK_NUMPAD0) && (key <= VK_F24))
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
168 || ((key >= VK_NUMPAD_CLEAR) && (key <= VK_NUMPAD_DELETE))
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
169 ))
19710
4a6b8c86ad87 Declare externs from other files.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16884
diff changeset
170 {
23679
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
171 /* Only consider shift state. */
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
172 if ((mods & SHIFT_PRESSED) != 0)
19710
4a6b8c86ad87 Declare externs from other files.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16884
diff changeset
173 retval |= shift_modifier;
4a6b8c86ad87 Declare externs from other files.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16884
diff changeset
174 }
4a6b8c86ad87 Declare externs from other files.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16884
diff changeset
175 else
4a6b8c86ad87 Declare externs from other files.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16884
diff changeset
176 {
23679
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
177 /* Ignore CapsLock state if not enabled. */
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
178 if (NILP (Vw32_enable_caps_lock))
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
179 mods &= ~CAPSLOCK_ON;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
180 if ((mods & (SHIFT_PRESSED | CAPSLOCK_ON)) != 0)
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
181 retval |= shift_modifier;
19710
4a6b8c86ad87 Declare externs from other files.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16884
diff changeset
182 }
11386
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
183
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
184 return retval;
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
185 }
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
186
23679
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
187 #if 0
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
188 /* Return nonzero if the virtual key is a dead key. */
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
189 static int
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
190 is_dead_key (int wparam)
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
191 {
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
192 unsigned int code = MapVirtualKey (wparam, 2);
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
193
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
194 /* Windows 95 returns 0x8000, NT returns 0x80000000. */
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
195 return (code & 0x80008000) ? 1 : 0;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
196 }
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
197 #endif
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
198
14245
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
199 /* The return code indicates key code size. */
14463
24e5bd545f4d (win32_kbd_mods_to_emacs, win32_kbd_patch_key,
Geoff Voelker <voelker@cs.washington.edu>
parents: 14245
diff changeset
200 int
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15784
diff changeset
201 w32_kbd_patch_key (KEY_EVENT_RECORD *event)
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
202 {
11386
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
203 unsigned int key_code = event->wVirtualKeyCode;
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
204 unsigned int mods = event->dwControlKeyState;
14245
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
205 BYTE keystate[256];
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
206 static BYTE ansi_code[4];
15144
9dd18e9e0362 (win32_kdb_patch_key): Initialize isdead.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14463
diff changeset
207 static int isdead = 0;
11386
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
208
14245
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
209 if (isdead == 2)
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
210 {
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
211 event->uChar.AsciiChar = ansi_code[2];
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
212 isdead = 0;
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
213 return 1;
11386
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
214 }
14245
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
215 if (event->uChar.AsciiChar != 0)
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
216 return 1;
14463
24e5bd545f4d (win32_kbd_mods_to_emacs, win32_kbd_patch_key,
Geoff Voelker <voelker@cs.washington.edu>
parents: 14245
diff changeset
217
14245
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
218 memset (keystate, 0, sizeof (keystate));
23679
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
219 keystate[key_code] = 0x80;
14245
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
220 if (mods & SHIFT_PRESSED)
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
221 keystate[VK_SHIFT] = 0x80;
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
222 if (mods & CAPSLOCK_ON)
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
223 keystate[VK_CAPITAL] = 1;
21611
1a4fc4d9ca9a (Vw32_recognize_altgr): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 19710
diff changeset
224 /* If we recognize right-alt and left-ctrl as AltGr, set the key
1a4fc4d9ca9a (Vw32_recognize_altgr): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 19710
diff changeset
225 states accordingly before invoking ToAscii. */
1a4fc4d9ca9a (Vw32_recognize_altgr): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 19710
diff changeset
226 if (!NILP (Vw32_recognize_altgr)
1a4fc4d9ca9a (Vw32_recognize_altgr): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 19710
diff changeset
227 && (mods & LEFT_CTRL_PRESSED) && (mods & RIGHT_ALT_PRESSED))
14463
24e5bd545f4d (win32_kbd_mods_to_emacs, win32_kbd_patch_key,
Geoff Voelker <voelker@cs.washington.edu>
parents: 14245
diff changeset
228 {
24e5bd545f4d (win32_kbd_mods_to_emacs, win32_kbd_patch_key,
Geoff Voelker <voelker@cs.washington.edu>
parents: 14245
diff changeset
229 keystate[VK_CONTROL] = 0x80;
24e5bd545f4d (win32_kbd_mods_to_emacs, win32_kbd_patch_key,
Geoff Voelker <voelker@cs.washington.edu>
parents: 14245
diff changeset
230 keystate[VK_LCONTROL] = 0x80;
24e5bd545f4d (win32_kbd_mods_to_emacs, win32_kbd_patch_key,
Geoff Voelker <voelker@cs.washington.edu>
parents: 14245
diff changeset
231 keystate[VK_MENU] = 0x80;
24e5bd545f4d (win32_kbd_mods_to_emacs, win32_kbd_patch_key,
Geoff Voelker <voelker@cs.washington.edu>
parents: 14245
diff changeset
232 keystate[VK_RMENU] = 0x80;
24e5bd545f4d (win32_kbd_mods_to_emacs, win32_kbd_patch_key,
Geoff Voelker <voelker@cs.washington.edu>
parents: 14245
diff changeset
233 }
24e5bd545f4d (win32_kbd_mods_to_emacs, win32_kbd_patch_key,
Geoff Voelker <voelker@cs.washington.edu>
parents: 14245
diff changeset
234
23679
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
235 #if 0
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
236 /* Because of an OS bug, ToAscii corrupts the stack when called to
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
237 convert a dead key in console mode on NT4. Unfortunately, trying
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
238 to check for dead keys using MapVirtualKey doesn't work either -
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
239 these functions apparently use internal information about keyboard
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
240 layout which doesn't get properly updated in console programs when
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
241 changing layout (though apparently it gets partly updated,
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
242 otherwise ToAscii wouldn't crash). */
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
243 if (is_dead_key (event->wVirtualKeyCode))
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
244 return 0;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
245 #endif
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
246
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
247 /* On NT, call ToUnicode instead and then convert to the current
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
248 locale's default codepage. */
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
249 if (os_subtype == OS_NT)
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
250 {
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
251 WCHAR buf[128];
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
252
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
253 isdead = ToUnicode (event->wVirtualKeyCode, event->wVirtualScanCode,
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
254 keystate, buf, 128, 0);
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
255 if (isdead > 0)
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
256 {
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
257 char cp[20];
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
258 int cpId;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
259
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
260 GetLocaleInfo (GetThreadLocale (),
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
261 LOCALE_IDEFAULTANSICODEPAGE, cp, 20);
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
262 cpId = atoi (cp);
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
263 isdead = WideCharToMultiByte (cpId, 0, buf, isdead,
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
264 ansi_code, 4, NULL, NULL);
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
265 }
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
266 else
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
267 isdead = 0;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
268 }
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
269 else
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
270 {
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
271 isdead = ToAscii (event->wVirtualKeyCode, event->wVirtualScanCode,
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
272 keystate, (LPWORD) ansi_code, 0);
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
273 }
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
274
14245
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
275 if (isdead == 0)
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
276 return 0;
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
277 event->uChar.AsciiChar = ansi_code[0];
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
278 return isdead;
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
279 }
15144
9dd18e9e0362 (win32_kdb_patch_key): Initialize isdead.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14463
diff changeset
280
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
281
23679
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
282 extern char *lispy_function_keys[];
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
283
23804
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
284 static int faked_key = 0;
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
285
14245
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
286 /* return code -1 means that event_queue_ptr won't be incremented.
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
287 In other word, this event makes two key codes. (by himi) */
14463
24e5bd545f4d (win32_kbd_mods_to_emacs, win32_kbd_patch_key,
Geoff Voelker <voelker@cs.washington.edu>
parents: 14245
diff changeset
288 int
19710
4a6b8c86ad87 Declare externs from other files.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16884
diff changeset
289 key_event (KEY_EVENT_RECORD *event, struct input_event *emacs_ev, int *isdead)
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
290 {
23679
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
291 static int mod_key_state = 0;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
292 int wParam;
19710
4a6b8c86ad87 Declare externs from other files.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16884
diff changeset
293
4a6b8c86ad87 Declare externs from other files.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16884
diff changeset
294 *isdead = 0;
23679
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
295
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
296 /* Skip key-up events. */
15144
9dd18e9e0362 (win32_kdb_patch_key): Initialize isdead.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14463
diff changeset
297 if (!event->bKeyDown)
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
298 {
23679
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
299 switch (event->wVirtualKeyCode)
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
300 {
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
301 case VK_LWIN:
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
302 mod_key_state &= ~LEFT_WIN_PRESSED;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
303 break;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
304 case VK_RWIN:
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
305 mod_key_state &= ~RIGHT_WIN_PRESSED;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
306 break;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
307 case VK_APPS:
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
308 mod_key_state &= ~APPS_PRESSED;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
309 break;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
310 }
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
311 return 0;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
312 }
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
313
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
314 /* Ignore keystrokes we fake ourself; see below. */
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
315 if (faked_key == event->wVirtualKeyCode)
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
316 {
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
317 faked_key = 0;
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
318 return 0;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
319 }
11386
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
320
23679
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
321 /* To make it easier to debug this code, ignore modifier keys! */
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
322 switch (event->wVirtualKeyCode)
11386
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
323 {
23679
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
324 case VK_LWIN:
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
325 if (NILP (Vw32_pass_lwindow_to_system))
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
326 {
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
327 /* Prevent system from acting on keyup (which opens the Start
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
328 menu if no other key was pressed) by simulating a press of
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
329 Space which we will ignore. */
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
330 if ((mod_key_state & LEFT_WIN_PRESSED) == 0)
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
331 {
23804
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
332 if (NUMBERP (Vw32_phantom_key_code))
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
333 faked_key = XUINT (Vw32_phantom_key_code) & 255;
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
334 else
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
335 faked_key = VK_SPACE;
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
336 keybd_event (faked_key, (BYTE) MapVirtualKey (faked_key, 0), 0, 0);
23679
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
337 }
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
338 }
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
339 mod_key_state |= LEFT_WIN_PRESSED;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
340 if (!NILP (Vw32_lwindow_modifier))
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
341 return 0;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
342 break;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
343 case VK_RWIN:
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
344 if (NILP (Vw32_pass_rwindow_to_system))
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
345 {
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
346 if ((mod_key_state & RIGHT_WIN_PRESSED) == 0)
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
347 {
23804
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
348 if (NUMBERP (Vw32_phantom_key_code))
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
349 faked_key = XUINT (Vw32_phantom_key_code) & 255;
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
350 else
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
351 faked_key = VK_SPACE;
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
352 keybd_event (faked_key, (BYTE) MapVirtualKey (faked_key, 0), 0, 0);
23679
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
353 }
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
354 }
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
355 mod_key_state |= RIGHT_WIN_PRESSED;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
356 if (!NILP (Vw32_rwindow_modifier))
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
357 return 0;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
358 break;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
359 case VK_APPS:
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
360 mod_key_state |= APPS_PRESSED;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
361 if (!NILP (Vw32_apps_modifier))
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
362 return 0;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
363 break;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
364 case VK_CAPITAL:
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
365 /* Decide whether to treat as modifier or function key. */
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
366 if (NILP (Vw32_enable_caps_lock))
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
367 goto disable_lock_key;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
368 return 0;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
369 case VK_NUMLOCK:
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
370 /* Decide whether to treat as modifier or function key. */
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
371 if (NILP (Vw32_enable_num_lock))
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
372 goto disable_lock_key;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
373 return 0;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
374 case VK_SCROLL:
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
375 /* Decide whether to treat as modifier or function key. */
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
376 if (NILP (Vw32_scroll_lock_modifier))
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
377 goto disable_lock_key;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
378 return 0;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
379 disable_lock_key:
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
380 /* Ensure the appropriate lock key state is off (and the
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
381 indicator light as well). */
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
382 wParam = event->wVirtualKeyCode;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
383 if (GetAsyncKeyState (wParam) & 0x8000)
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
384 {
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
385 /* Fake another press of the relevant key. Apparently, this
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
386 really is the only way to turn off the indicator. */
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
387 faked_key = wParam;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
388 keybd_event ((BYTE) wParam, (BYTE) MapVirtualKey (wParam, 0),
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
389 KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, 0);
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
390 keybd_event ((BYTE) wParam, (BYTE) MapVirtualKey (wParam, 0),
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
391 KEYEVENTF_EXTENDEDKEY | 0, 0);
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
392 keybd_event ((BYTE) wParam, (BYTE) MapVirtualKey (wParam, 0),
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
393 KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, 0);
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
394 }
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
395 break;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
396 case VK_MENU:
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
397 case VK_CONTROL:
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
398 case VK_SHIFT:
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
399 return 0;
23804
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
400 case VK_CANCEL:
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
401 /* Windows maps Ctrl-Pause (aka Ctrl-Break) into VK_CANCEL,
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
402 which is confusing for purposes of key binding; convert
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
403 VK_CANCEL events into VK_PAUSE events. */
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
404 event->wVirtualKeyCode = VK_PAUSE;
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
405 break;
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
406 case VK_PAUSE:
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
407 /* Windows maps Ctrl-NumLock into VK_PAUSE, which is confusing
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
408 for purposes of key binding; convert these back into
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
409 VK_NUMLOCK events, at least when we want to see NumLock key
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
410 presses. (Note that there is never any possibility that
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
411 VK_PAUSE with Ctrl really is C-Pause as per above.) */
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
412 if (NILP (Vw32_enable_num_lock)
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
413 && (event->dwControlKeyState
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
414 & (LEFT_CTRL_PRESSED | RIGHT_CTRL_PRESSED)) != 0)
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
415 event->wVirtualKeyCode = VK_NUMLOCK;
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
416 break;
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
417 }
23679
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
418
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
419 /* Recognize state of Windows and Apps keys. */
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
420 event->dwControlKeyState |= mod_key_state;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
421
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
422 /* Distinguish numeric keypad keys from extended keys. */
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
423 event->wVirtualKeyCode =
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
424 map_keypad_keys (event->wVirtualKeyCode,
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
425 (event->dwControlKeyState & ENHANCED_KEY));
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
426
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
427 if (lispy_function_keys[event->wVirtualKeyCode] == 0)
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
428 {
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
429 emacs_ev->kind = ascii_keystroke;
23679
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
430
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
431 if (!NILP (Vw32_recognize_altgr)
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
432 && (event->dwControlKeyState & LEFT_CTRL_PRESSED)
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
433 && (event->dwControlKeyState & RIGHT_ALT_PRESSED))
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
434 {
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
435 /* Don't try to interpret AltGr key chords; ToAscii seems not
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
436 to process them correctly. */
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
437 }
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
438 /* Handle key chords including any modifiers other than shift
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
439 directly, in order to preserve as much modifier information as
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
440 possible. */
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
441 else if (event->dwControlKeyState
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
442 & ( RIGHT_CTRL_PRESSED | LEFT_CTRL_PRESSED
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
443 | RIGHT_ALT_PRESSED | LEFT_ALT_PRESSED
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
444 | (!NILP (Vw32_lwindow_modifier) ? LEFT_WIN_PRESSED : 0)
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
445 | (!NILP (Vw32_rwindow_modifier) ? RIGHT_WIN_PRESSED : 0)
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
446 | (!NILP (Vw32_apps_modifier) ? APPS_PRESSED : 0)
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
447 | (!NILP (Vw32_scroll_lock_modifier) ? SCROLLLOCK_ON : 0)))
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
448 {
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
449 /* Don't translate modified alphabetic keystrokes, so the user
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
450 doesn't need to constantly switch layout to type control or
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
451 meta keystrokes when the normal layout translates
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
452 alphabetic characters to non-ascii characters. */
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
453 if ('A' <= event->wVirtualKeyCode && event->wVirtualKeyCode <= 'Z')
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
454 {
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
455 event->uChar.AsciiChar = event->wVirtualKeyCode;
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
456 if ((event->dwControlKeyState & SHIFT_PRESSED) == 0)
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
457 event->uChar.AsciiChar += ('a' - 'A');
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
458 }
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
459 /* Try to handle unrecognized keystrokes by determining the
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
460 base character (ie. translating the base key plus shift
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
461 modifier). */
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
462 else if (event->uChar.AsciiChar == 0)
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
463 w32_kbd_patch_key (event);
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
464 }
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
465 if (event->uChar.AsciiChar == 0)
14245
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
466 return 0;
10007
10fc4417831d (SET_FRAME, key_event, do_mouse_event): Use accessor macros.
Karl Heuer <kwzh@gnu.org>
parents: 9907
diff changeset
467 XSETINT (emacs_ev->code, event->uChar.AsciiChar);
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
468 }
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
469 else
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
470 {
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
471 emacs_ev->kind = non_ascii_keystroke;
15144
9dd18e9e0362 (win32_kdb_patch_key): Initialize isdead.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14463
diff changeset
472 XSETINT (emacs_ev->code, event->wVirtualKeyCode);
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
473 }
23679
3d02c8b4b525 Include w32term.h and w32heap.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21829
diff changeset
474
11386
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
475 XSETFRAME (emacs_ev->frame_or_window, get_frame ());
19710
4a6b8c86ad87 Declare externs from other files.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16884
diff changeset
476 emacs_ev->modifiers = w32_kbd_mods_to_emacs (event->dwControlKeyState,
4a6b8c86ad87 Declare externs from other files.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16884
diff changeset
477 event->wVirtualKeyCode);
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
478 emacs_ev->timestamp = GetTickCount ();
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
479 return 1;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
480 }
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
481
23804
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
482 int
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
483 w32_console_toggle_lock_key (int vk_code, Lisp_Object new_state)
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
484 {
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
485 int cur_state = (GetKeyState (vk_code) & 1);
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
486
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
487 if (NILP (new_state)
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
488 || (NUMBERP (new_state)
35284
712561c30aa5 (w32_console_toggle_lock_key): Add parentheses.
Jason Rumney <jasonr@gnu.org>
parents: 31113
diff changeset
489 && ((XUINT (new_state)) & 1) != cur_state))
23804
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
490 {
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
491 faked_key = vk_code;
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
492
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
493 keybd_event ((BYTE) vk_code,
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
494 (BYTE) MapVirtualKey (vk_code, 0),
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
495 KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, 0);
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
496 keybd_event ((BYTE) vk_code,
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
497 (BYTE) MapVirtualKey (vk_code, 0),
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
498 KEYEVENTF_EXTENDEDKEY | 0, 0);
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
499 keybd_event ((BYTE) vk_code,
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
500 (BYTE) MapVirtualKey (vk_code, 0),
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
501 KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, 0);
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
502 cur_state = !cur_state;
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
503 }
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
504
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
505 return cur_state;
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
506 }
aa5a4d0b1591 (key_event): Use Vw32_phantom_key_code. Undo the
Geoff Voelker <voelker@cs.washington.edu>
parents: 23679
diff changeset
507
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
508 /* Mouse position hook. */
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
509 void
21829
674d44aeeda1 (w32_console_mouse_position): Rename from
Geoff Voelker <voelker@cs.washington.edu>
parents: 21611
diff changeset
510 w32_console_mouse_position (FRAME_PTR *f,
674d44aeeda1 (w32_console_mouse_position): Rename from
Geoff Voelker <voelker@cs.washington.edu>
parents: 21611
diff changeset
511 int insist,
674d44aeeda1 (w32_console_mouse_position): Rename from
Geoff Voelker <voelker@cs.washington.edu>
parents: 21611
diff changeset
512 Lisp_Object *bar_window,
674d44aeeda1 (w32_console_mouse_position): Rename from
Geoff Voelker <voelker@cs.washington.edu>
parents: 21611
diff changeset
513 enum scroll_bar_part *part,
674d44aeeda1 (w32_console_mouse_position): Rename from
Geoff Voelker <voelker@cs.washington.edu>
parents: 21611
diff changeset
514 Lisp_Object *x,
674d44aeeda1 (w32_console_mouse_position): Rename from
Geoff Voelker <voelker@cs.washington.edu>
parents: 21611
diff changeset
515 Lisp_Object *y,
674d44aeeda1 (w32_console_mouse_position): Rename from
Geoff Voelker <voelker@cs.washington.edu>
parents: 21611
diff changeset
516 unsigned long *time)
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
517 {
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
518 BLOCK_INPUT;
15144
9dd18e9e0362 (win32_kdb_patch_key): Initialize isdead.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14463
diff changeset
519
11386
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
520 insist = insist;
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
521
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
522 *f = get_frame ();
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
523 *bar_window = Qnil;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
524 *part = 0;
27399
22e4449438ff (get_frame, w32_console_mouse_position, mouse_moved_to):
Jason Rumney <jasonr@gnu.org>
parents: 24937
diff changeset
525 SELECTED_FRAME ()->mouse_moved = 0;
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
526
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
527 *x = movement_pos.X;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
528 *y = movement_pos.Y;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
529 *time = movement_time;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
530
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
531 UNBLOCK_INPUT;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
532 }
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
533
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
534 /* Remember mouse motion and notify emacs. */
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
535 static void
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
536 mouse_moved_to (int x, int y)
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
537 {
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
538 /* If we're in the same place, ignore it */
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
539 if (x != movement_pos.X || y != movement_pos.Y)
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
540 {
27399
22e4449438ff (get_frame, w32_console_mouse_position, mouse_moved_to):
Jason Rumney <jasonr@gnu.org>
parents: 24937
diff changeset
541 SELECTED_FRAME ()->mouse_moved = 1;
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
542 movement_pos.X = x;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
543 movement_pos.Y = y;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
544 movement_time = GetTickCount ();
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
545 }
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
546 }
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
547
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
548 /* Consoles return button bits in a strange order:
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
549 least significant - Leftmost button
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
550 next - Rightmost button
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
551 next - Leftmost+1
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
552 next - Leftmost+2...
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
553
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
554 Assume emacs likes three button mice, so
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
555 Left == 0
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
556 Middle == 1
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
557 Right == 2
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
558 Others increase from there. */
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
559
29319
2069f3aa4939 (NUM_TRANSLATED_MOUSE_BUTTONS): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 27515
diff changeset
560 #define NUM_TRANSLATED_MOUSE_BUTTONS 3
2069f3aa4939 (NUM_TRANSLATED_MOUSE_BUTTONS): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 27515
diff changeset
561 static int emacs_button_translation[NUM_TRANSLATED_MOUSE_BUTTONS] =
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
562 {
29319
2069f3aa4939 (NUM_TRANSLATED_MOUSE_BUTTONS): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 27515
diff changeset
563 0, 2, 1
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
564 };
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
565
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
566 static int
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
567 do_mouse_event (MOUSE_EVENT_RECORD *event,
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
568 struct input_event *emacs_ev)
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
569 {
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
570 static DWORD button_state = 0;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
571 DWORD but_change, mask;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
572 int i;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
573
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
574 if (event->dwEventFlags == MOUSE_MOVED)
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
575 {
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
576 /* For movement events we just note that the mouse has moved
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
577 so that emacs will generate drag events. */
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
578 mouse_moved_to (event->dwMousePosition.X, event->dwMousePosition.Y);
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
579 return 0;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
580 }
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
581
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
582 /* It looks like the console code sends us a mouse event with
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
583 dwButtonState == 0 when a window is activated. Ignore this case. */
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
584 if (event->dwButtonState == button_state)
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
585 return 0;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
586
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
587 emacs_ev->kind = mouse_click;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
588
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
589 /* Find out what button has changed state since the last button event. */
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
590 but_change = button_state ^ event->dwButtonState;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
591 mask = 1;
29319
2069f3aa4939 (NUM_TRANSLATED_MOUSE_BUTTONS): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 27515
diff changeset
592 for (i = 0; mask; i++, mask <<= 1)
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
593 if (but_change & mask)
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
594 {
29319
2069f3aa4939 (NUM_TRANSLATED_MOUSE_BUTTONS): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 27515
diff changeset
595 if (i < NUM_TRANSLATED_MOUSE_BUTTONS)
2069f3aa4939 (NUM_TRANSLATED_MOUSE_BUTTONS): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 27515
diff changeset
596 XSETINT (emacs_ev->code, emacs_button_translation[i]);
2069f3aa4939 (NUM_TRANSLATED_MOUSE_BUTTONS): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 27515
diff changeset
597 else
2069f3aa4939 (NUM_TRANSLATED_MOUSE_BUTTONS): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 27515
diff changeset
598 XSETINT (emacs_ev->code, i);
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
599 break;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
600 }
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
601
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
602 button_state = event->dwButtonState;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
603 emacs_ev->timestamp = GetTickCount ();
19710
4a6b8c86ad87 Declare externs from other files.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16884
diff changeset
604 emacs_ev->modifiers = w32_kbd_mods_to_emacs (event->dwControlKeyState, 0) |
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
605 ((event->dwButtonState & mask) ? down_modifier : up_modifier);
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
606
10007
10fc4417831d (SET_FRAME, key_event, do_mouse_event): Use accessor macros.
Karl Heuer <kwzh@gnu.org>
parents: 9907
diff changeset
607 XSETFASTINT (emacs_ev->x, event->dwMousePosition.X);
10fc4417831d (SET_FRAME, key_event, do_mouse_event): Use accessor macros.
Karl Heuer <kwzh@gnu.org>
parents: 9907
diff changeset
608 XSETFASTINT (emacs_ev->y, event->dwMousePosition.Y);
14245
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
609 /* for Mule 2.2 (Based on Emacs 19.28 */
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
610 #ifdef MULE
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
611 XSET (emacs_ev->frame_or_window, Lisp_Frame, get_frame ());
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
612 #else
11386
62e2ab942896 (do_mouse_event): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents: 11123
diff changeset
613 XSETFRAME (emacs_ev->frame_or_window, get_frame ());
14245
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
614 #endif
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
615
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
616 return 1;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
617 }
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
618
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
619 static void
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
620 resize_event (WINDOW_BUFFER_SIZE_RECORD *event)
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
621 {
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
622 FRAME_PTR f = get_frame ();
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
623
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
624 change_frame_size (f, event->dwSize.Y, event->dwSize.X, 0, 1);
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
625 SET_FRAME_GARBAGED (f);
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
626 }
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
627
24756
4582b492a651 (maybe_generate_resize_event): Detect changes in the
Andrew Innes <andrewi@gnu.org>
parents: 23804
diff changeset
628 static void
4582b492a651 (maybe_generate_resize_event): Detect changes in the
Andrew Innes <andrewi@gnu.org>
parents: 23804
diff changeset
629 maybe_generate_resize_event ()
4582b492a651 (maybe_generate_resize_event): Detect changes in the
Andrew Innes <andrewi@gnu.org>
parents: 23804
diff changeset
630 {
4582b492a651 (maybe_generate_resize_event): Detect changes in the
Andrew Innes <andrewi@gnu.org>
parents: 23804
diff changeset
631 CONSOLE_SCREEN_BUFFER_INFO info;
4582b492a651 (maybe_generate_resize_event): Detect changes in the
Andrew Innes <andrewi@gnu.org>
parents: 23804
diff changeset
632 FRAME_PTR f = get_frame ();
4582b492a651 (maybe_generate_resize_event): Detect changes in the
Andrew Innes <andrewi@gnu.org>
parents: 23804
diff changeset
633
4582b492a651 (maybe_generate_resize_event): Detect changes in the
Andrew Innes <andrewi@gnu.org>
parents: 23804
diff changeset
634 GetConsoleScreenBufferInfo (GetStdHandle (STD_OUTPUT_HANDLE), &info);
4582b492a651 (maybe_generate_resize_event): Detect changes in the
Andrew Innes <andrewi@gnu.org>
parents: 23804
diff changeset
635
4582b492a651 (maybe_generate_resize_event): Detect changes in the
Andrew Innes <andrewi@gnu.org>
parents: 23804
diff changeset
636 /* It is okay to call this unconditionally, since it will do nothing
4582b492a651 (maybe_generate_resize_event): Detect changes in the
Andrew Innes <andrewi@gnu.org>
parents: 23804
diff changeset
637 if the size hasn't actually changed. */
4582b492a651 (maybe_generate_resize_event): Detect changes in the
Andrew Innes <andrewi@gnu.org>
parents: 23804
diff changeset
638 change_frame_size (f,
4582b492a651 (maybe_generate_resize_event): Detect changes in the
Andrew Innes <andrewi@gnu.org>
parents: 23804
diff changeset
639 1 + info.srWindow.Bottom - info.srWindow.Top,
4582b492a651 (maybe_generate_resize_event): Detect changes in the
Andrew Innes <andrewi@gnu.org>
parents: 23804
diff changeset
640 1 + info.srWindow.Right - info.srWindow.Left,
4582b492a651 (maybe_generate_resize_event): Detect changes in the
Andrew Innes <andrewi@gnu.org>
parents: 23804
diff changeset
641 0, 0);
4582b492a651 (maybe_generate_resize_event): Detect changes in the
Andrew Innes <andrewi@gnu.org>
parents: 23804
diff changeset
642 }
4582b492a651 (maybe_generate_resize_event): Detect changes in the
Andrew Innes <andrewi@gnu.org>
parents: 23804
diff changeset
643
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
644 int
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15784
diff changeset
645 w32_console_read_socket (int sd, struct input_event *bufp, int numchars,
21829
674d44aeeda1 (w32_console_mouse_position): Rename from
Geoff Voelker <voelker@cs.washington.edu>
parents: 21611
diff changeset
646 int expected)
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
647 {
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
648 BOOL no_events = TRUE;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
649 int nev, ret = 0, add;
19710
4a6b8c86ad87 Declare externs from other files.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16884
diff changeset
650 int isdead;
4a6b8c86ad87 Declare externs from other files.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16884
diff changeset
651
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
652 if (interrupt_input_blocked)
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
653 {
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
654 interrupt_input_pending = 1;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
655 return -1;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
656 }
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
657
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
658 interrupt_input_pending = 0;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
659 BLOCK_INPUT;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
660
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
661 for (;;)
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
662 {
15784
75547616a6fe (win32_read_socket): Never block reading from input queue.
Richard M. Stallman <rms@gnu.org>
parents: 15460
diff changeset
663 nev = fill_queue (0);
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
664 if (nev <= 0)
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
665 {
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
666 /* If nev == -1, there was some kind of error
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
667 If nev == 0 then waitp must be zero and no events were available
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
668 so return. */
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
669 UNBLOCK_INPUT;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
670 return nev;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
671 }
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
672
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
673 while (nev > 0 && numchars > 0)
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
674 {
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
675 switch (queue_ptr->EventType)
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
676 {
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
677 case KEY_EVENT:
19710
4a6b8c86ad87 Declare externs from other files.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16884
diff changeset
678 add = key_event (&queue_ptr->Event.KeyEvent, bufp, &isdead);
14245
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
679 if (add == -1) /* 95.7.25 by himi */
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
680 {
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
681 queue_ptr--;
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
682 add = 1;
59d24d42958a (WIN32_KEY_SHIFTED): Macro undefined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14186
diff changeset
683 }
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
684 bufp += add;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
685 ret += add;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
686 numchars -= add;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
687 break;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
688
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
689 case MOUSE_EVENT:
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
690 add = do_mouse_event (&queue_ptr->Event.MouseEvent, bufp);
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
691 bufp += add;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
692 ret += add;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
693 numchars -= add;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
694 break;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
695
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
696 case WINDOW_BUFFER_SIZE_EVENT:
24937
42f29912dc46 (w32_console_read_socket): Use new variable w32_use_full_screen_buffer.
Andrew Innes <andrewi@gnu.org>
parents: 24756
diff changeset
697 if (w32_use_full_screen_buffer)
42f29912dc46 (w32_console_read_socket): Use new variable w32_use_full_screen_buffer.
Andrew Innes <andrewi@gnu.org>
parents: 24756
diff changeset
698 resize_event (&queue_ptr->Event.WindowBufferSizeEvent);
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
699 break;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
700
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
701 case MENU_EVENT:
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
702 case FOCUS_EVENT:
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
703 /* Internal event types, ignored. */
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
704 break;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
705 }
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
706
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
707 queue_ptr++;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
708 nev--;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
709 }
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
710
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
711 if (ret > 0 || expected == 0)
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
712 break;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
713 }
24756
4582b492a651 (maybe_generate_resize_event): Detect changes in the
Andrew Innes <andrewi@gnu.org>
parents: 23804
diff changeset
714
4582b492a651 (maybe_generate_resize_event): Detect changes in the
Andrew Innes <andrewi@gnu.org>
parents: 23804
diff changeset
715 /* We don't get told about changes in the window size (only the buffer
4582b492a651 (maybe_generate_resize_event): Detect changes in the
Andrew Innes <andrewi@gnu.org>
parents: 23804
diff changeset
716 size, which we no longer care about), so we have to check it
4582b492a651 (maybe_generate_resize_event): Detect changes in the
Andrew Innes <andrewi@gnu.org>
parents: 23804
diff changeset
717 periodically. */
24937
42f29912dc46 (w32_console_read_socket): Use new variable w32_use_full_screen_buffer.
Andrew Innes <andrewi@gnu.org>
parents: 24756
diff changeset
718 if (!w32_use_full_screen_buffer)
42f29912dc46 (w32_console_read_socket): Use new variable w32_use_full_screen_buffer.
Andrew Innes <andrewi@gnu.org>
parents: 24756
diff changeset
719 maybe_generate_resize_event ();
24756
4582b492a651 (maybe_generate_resize_event): Detect changes in the
Andrew Innes <andrewi@gnu.org>
parents: 23804
diff changeset
720
9907
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
721 UNBLOCK_INPUT;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
722 return ret;
2e5a14f7c44e Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
723 }