Mercurial > emacs
annotate src/w32console.c @ 24877:f0aa6266cd12
(Finsert_file_contents): In the case of REPALCE, call
del_range_byte instead off del_range_1, set `inserted' to the
number of characters actually inserted.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Tue, 22 Jun 1999 23:25:16 +0000 |
parents | 3bb855a40bf6 |
children | a4c871b96d4b |
rev | line source |
---|---|
16883
d1d4d81f9ece
Change all uses of win95, winnt, and win32
Geoff Voelker <voelker@cs.washington.edu>
parents:
16593
diff
changeset
|
1 /* Terminal hooks for GNU Emacs on the Microsoft W32 API. |
9907 | 2 Copyright (C) 1992 Free Software Foundation, Inc. |
3 | |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13424
diff
changeset
|
4 This file is part of GNU Emacs. |
9907 | 5 |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13424
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:
13424
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:
13424
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:
13424
diff
changeset
|
9 any later version. |
9907 | 10 |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13424
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:
13424
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:
13424
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:
13424
diff
changeset
|
14 GNU General Public License for more details. |
9907 | 15 |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13424
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:
13424
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:
13424
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:
13424
diff
changeset
|
19 Boston, MA 02111-1307, USA. |
9907 | 20 |
21 Tim Fleehart (apollo@online.com) 1-17-92 | |
22 Geoff Voelker (voelker@cs.washington.edu) 9-12-93 | |
23 */ | |
24 | |
25 | |
12183
47685fb0fbd1
Include config.h before stdio.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11942
diff
changeset
|
26 #include <config.h> |
47685fb0fbd1
Include config.h before stdio.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11942
diff
changeset
|
27 |
9907 | 28 #include <stdlib.h> |
29 #include <stdio.h> | |
30 #include <windows.h> | |
31 | |
32 #include "lisp.h" | |
18507
be4c110cda51
Include charset.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16883
diff
changeset
|
33 #include "charset.h" |
9907 | 34 #include "frame.h" |
35 #include "disptab.h" | |
36 #include "termhooks.h" | |
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
16588
diff
changeset
|
37 #include "w32inevt.h" |
9907 | 38 |
11389 | 39 /* from window.c */ |
9907 | 40 extern Lisp_Object Frecenter (); |
41 | |
42 /* from keyboard.c */ | |
43 extern int detect_input_pending (); | |
44 | |
45 /* from sysdep.c */ | |
46 extern int read_input_pending (); | |
47 | |
48 extern FRAME_PTR updating_frame; | |
49 extern int meta_key; | |
50 | |
51 static void move_cursor (int row, int col); | |
52 static void clear_to_end (void); | |
53 static void clear_frame (void); | |
54 static void clear_end_of_line (int); | |
55 static void ins_del_lines (int vpos, int n); | |
56 static void change_line_highlight (int, int, int); | |
57 static void reassert_line_highlight (int, int); | |
58 static void insert_glyphs (GLYPH *start, int len); | |
59 static void write_glyphs (GLYPH *string, int len); | |
60 static void delete_glyphs (int n); | |
16588
481b7874a1e9
Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16262
diff
changeset
|
61 void w32_sys_ring_bell (void); |
9907 | 62 static void reset_terminal_modes (void); |
63 static void set_terminal_modes (void); | |
64 static void set_terminal_window (int size); | |
65 static void update_begin (FRAME_PTR f); | |
66 static void update_end (FRAME_PTR f); | |
67 static int hl_mode (int new_highlight); | |
68 | |
69 COORD cursor_coords; | |
70 HANDLE prev_screen, cur_screen; | |
71 UCHAR char_attr, char_attr_normal, char_attr_reverse; | |
72 HANDLE keyboard_handle; | |
15203
5bda3e000c2c
(prev_console_mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
14244
diff
changeset
|
73 DWORD prev_console_mode; |
9907 | 74 |
19706
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
75 #ifndef USE_SEPARATE_SCREEN |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
76 CONSOLE_CURSOR_INFO prev_console_cursor; |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
77 #endif |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
78 |
9907 | 79 |
80 /* Setting this as the ctrl handler prevents emacs from being killed when | |
12336
617f39b43557
(ctrl_c_handler): Ignore CTRL_BREAK_EVENT signals.
Richard M. Stallman <rms@gnu.org>
parents:
12183
diff
changeset
|
81 someone hits ^C in a 'suspended' session (child shell). |
617f39b43557
(ctrl_c_handler): Ignore CTRL_BREAK_EVENT signals.
Richard M. Stallman <rms@gnu.org>
parents:
12183
diff
changeset
|
82 Also ignore Ctrl-Break signals. */ |
617f39b43557
(ctrl_c_handler): Ignore CTRL_BREAK_EVENT signals.
Richard M. Stallman <rms@gnu.org>
parents:
12183
diff
changeset
|
83 |
9907 | 84 BOOL |
85 ctrl_c_handler (unsigned long type) | |
86 { | |
19706
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
87 /* Only ignore "interrupt" events when running interactively. */ |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
88 return (!noninteractive |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
89 && (type == CTRL_C_EVENT || type == CTRL_BREAK_EVENT)); |
9907 | 90 } |
91 | |
92 /* If we're updating a frame, use it as the current frame | |
93 Otherwise, use the selected frame. */ | |
94 #define PICK_FRAME() (updating_frame ? updating_frame : selected_frame) | |
95 | |
96 /* Move the cursor to (row, col). */ | |
97 void | |
98 move_cursor (int row, int col) | |
99 { | |
100 cursor_coords.X = col; | |
101 cursor_coords.Y = row; | |
102 | |
11389 | 103 if (updating_frame == (FRAME_PTR) NULL) |
9907 | 104 { |
105 SetConsoleCursorPosition (cur_screen, cursor_coords); | |
106 } | |
107 } | |
108 | |
109 /* Clear from cursor to end of screen. */ | |
110 void | |
111 clear_to_end (void) | |
112 { | |
113 FRAME_PTR f = PICK_FRAME (); | |
114 | |
115 clear_end_of_line (FRAME_WIDTH (f) - 1); | |
116 ins_del_lines (cursor_coords.Y, FRAME_HEIGHT (f) - cursor_coords.Y - 1); | |
117 } | |
118 | |
119 /* Clear the frame. */ | |
120 void | |
121 clear_frame (void) | |
122 { | |
14244
493cff4d5960
(clear_frame): Use FillConsoleOutput* calls instead of
Geoff Voelker <voelker@cs.washington.edu>
parents:
14186
diff
changeset
|
123 FRAME_PTR f = PICK_FRAME (); |
9907 | 124 COORD dest; |
14244
493cff4d5960
(clear_frame): Use FillConsoleOutput* calls instead of
Geoff Voelker <voelker@cs.washington.edu>
parents:
14186
diff
changeset
|
125 int n, r; |
24755
3bb855a40bf6
(clear_frame): Remember that the window width might
Andrew Innes <andrewi@gnu.org>
parents:
23572
diff
changeset
|
126 CONSOLE_SCREEN_BUFFER_INFO info; |
3bb855a40bf6
(clear_frame): Remember that the window width might
Andrew Innes <andrewi@gnu.org>
parents:
23572
diff
changeset
|
127 |
3bb855a40bf6
(clear_frame): Remember that the window width might
Andrew Innes <andrewi@gnu.org>
parents:
23572
diff
changeset
|
128 GetConsoleScreenBufferInfo (GetStdHandle (STD_OUTPUT_HANDLE), &info); |
14244
493cff4d5960
(clear_frame): Use FillConsoleOutput* calls instead of
Geoff Voelker <voelker@cs.washington.edu>
parents:
14186
diff
changeset
|
129 |
9907 | 130 hl_mode (0); |
131 | |
24755
3bb855a40bf6
(clear_frame): Remember that the window width might
Andrew Innes <andrewi@gnu.org>
parents:
23572
diff
changeset
|
132 /* Remember that the screen buffer might be wider than the window. */ |
3bb855a40bf6
(clear_frame): Remember that the window width might
Andrew Innes <andrewi@gnu.org>
parents:
23572
diff
changeset
|
133 n = FRAME_HEIGHT (f) * info.dwSize.X; |
14244
493cff4d5960
(clear_frame): Use FillConsoleOutput* calls instead of
Geoff Voelker <voelker@cs.washington.edu>
parents:
14186
diff
changeset
|
134 dest.X = dest.Y = 0; |
493cff4d5960
(clear_frame): Use FillConsoleOutput* calls instead of
Geoff Voelker <voelker@cs.washington.edu>
parents:
14186
diff
changeset
|
135 |
493cff4d5960
(clear_frame): Use FillConsoleOutput* calls instead of
Geoff Voelker <voelker@cs.washington.edu>
parents:
14186
diff
changeset
|
136 FillConsoleOutputAttribute (cur_screen, char_attr, n, dest, &r); |
493cff4d5960
(clear_frame): Use FillConsoleOutput* calls instead of
Geoff Voelker <voelker@cs.washington.edu>
parents:
14186
diff
changeset
|
137 FillConsoleOutputCharacter (cur_screen, ' ', n, dest, &r); |
493cff4d5960
(clear_frame): Use FillConsoleOutput* calls instead of
Geoff Voelker <voelker@cs.washington.edu>
parents:
14186
diff
changeset
|
138 |
9907 | 139 move_cursor (0, 0); |
140 } | |
141 | |
142 | |
143 static GLYPH glyph_base[256]; | |
144 static BOOL ceol_initialized = FALSE; | |
145 | |
146 /* Clear from Cursor to end (what's "standout marker"?). */ | |
147 void | |
148 clear_end_of_line (int end) | |
149 { | |
150 if (!ceol_initialized) | |
151 { | |
152 int i; | |
153 for (i = 0; i < 256; i++) | |
154 { | |
155 glyph_base[i] = SPACEGLYPH; /* empty space */ | |
156 } | |
157 ceol_initialized = TRUE; | |
158 } | |
159 write_glyphs (glyph_base, end - cursor_coords.X); /* fencepost ? */ | |
160 } | |
161 | |
162 /* Insert n lines at vpos. if n is negative delete -n lines. */ | |
163 void | |
164 ins_del_lines (int vpos, int n) | |
165 { | |
166 int i, nb, save_highlight; | |
167 SMALL_RECT scroll; | |
168 COORD dest; | |
169 CHAR_INFO fill; | |
170 FRAME_PTR f = PICK_FRAME (); | |
171 | |
172 if (n < 0) | |
173 { | |
174 scroll.Top = vpos - n; | |
175 scroll.Bottom = FRAME_HEIGHT (f); | |
176 dest.Y = vpos; | |
177 } | |
178 else | |
179 { | |
180 scroll.Top = vpos; | |
181 scroll.Bottom = FRAME_HEIGHT (f) - n; | |
182 dest.Y = vpos + n; | |
183 } | |
184 scroll.Left = 0; | |
185 scroll.Right = FRAME_WIDTH (f); | |
186 | |
187 dest.X = 0; | |
188 | |
189 save_highlight = hl_mode (0); | |
190 | |
191 fill.Char.AsciiChar = 0x20; | |
192 fill.Attributes = char_attr; | |
193 | |
194 ScrollConsoleScreenBuffer (cur_screen, &scroll, NULL, dest, &fill); | |
195 | |
16588
481b7874a1e9
Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16262
diff
changeset
|
196 /* Here we have to deal with a w32 console flake: If the scroll |
9907 | 197 region looks like abc and we scroll c to a and fill with d we get |
198 cbd... if we scroll block c one line at a time to a, we get cdd... | |
199 Emacs expects cdd consistently... So we have to deal with that | |
200 here... (this also occurs scrolling the same way in the other | |
201 direction. */ | |
202 | |
203 if (n > 0) | |
204 { | |
205 if (scroll.Bottom < dest.Y) | |
206 { | |
207 for (i = scroll.Bottom; i < dest.Y; i++) | |
208 { | |
209 move_cursor (i, 0); | |
210 clear_end_of_line (FRAME_WIDTH (f)); | |
211 } | |
212 } | |
213 } | |
214 else | |
215 { | |
216 nb = dest.Y + (scroll.Bottom - scroll.Top) + 1; | |
217 | |
218 if (nb < scroll.Top) | |
219 { | |
220 for (i = nb; i < scroll.Top; i++) | |
221 { | |
222 move_cursor (i, 0); | |
223 clear_end_of_line (FRAME_WIDTH (f)); | |
224 } | |
225 } | |
226 } | |
227 | |
228 cursor_coords.X = 0; | |
229 cursor_coords.Y = vpos; | |
230 | |
231 hl_mode (save_highlight); | |
232 } | |
233 | |
234 /* Changes attribute to use when drawing characters to control. */ | |
235 static int | |
236 hl_mode (int new_highlight) | |
237 { | |
238 static int highlight = 0; | |
239 int old_highlight; | |
240 | |
241 old_highlight = highlight; | |
242 highlight = (new_highlight != 0); | |
243 if (highlight) | |
244 { | |
245 char_attr = char_attr_reverse; | |
246 } | |
247 else | |
248 { | |
249 char_attr = char_attr_normal; | |
250 } | |
251 return old_highlight; | |
252 } | |
253 | |
254 /* Call this when about to modify line at position VPOS and change whether it | |
255 is highlighted. */ | |
256 void | |
257 change_line_highlight (int new_highlight, int vpos, int first_unused_hpos) | |
258 { | |
259 hl_mode (new_highlight); | |
260 move_cursor (vpos, 0); | |
261 clear_end_of_line (first_unused_hpos); | |
262 } | |
263 | |
264 /* External interface to control of standout mode. Call this when about to | |
265 * modify line at position VPOS and not change whether it is highlighted. */ | |
266 void | |
267 reassert_line_highlight (int highlight, int vpos) | |
268 { | |
269 hl_mode (highlight); | |
270 vpos; /* pedantic compiler silencer */ | |
271 } | |
272 | |
273 #undef LEFT | |
274 #undef RIGHT | |
275 #define LEFT 1 | |
276 #define RIGHT 0 | |
277 | |
278 void | |
279 scroll_line (int dist, int direction) | |
280 { | |
281 /* The idea here is to implement a horizontal scroll in one line to | |
282 implement delete and half of insert. */ | |
283 SMALL_RECT scroll; | |
284 COORD dest; | |
285 CHAR_INFO fill; | |
286 FRAME_PTR f = PICK_FRAME (); | |
287 | |
288 scroll.Top = cursor_coords.Y; | |
289 scroll.Bottom = cursor_coords.Y; | |
290 | |
291 if (direction == LEFT) | |
292 { | |
293 scroll.Left = cursor_coords.X + dist; | |
294 scroll.Right = FRAME_WIDTH (f) - 1; | |
295 } | |
296 else | |
297 { | |
298 scroll.Left = cursor_coords.X; | |
299 scroll.Right = FRAME_WIDTH (f) - dist - 1; | |
300 } | |
301 | |
302 dest.X = cursor_coords.X; | |
303 dest.Y = cursor_coords.Y; | |
304 | |
305 fill.Char.AsciiChar = 0x20; | |
306 fill.Attributes = char_attr; | |
307 | |
308 ScrollConsoleScreenBuffer (cur_screen, &scroll, NULL, dest, &fill); | |
309 } | |
310 | |
311 | |
312 /* If start is zero insert blanks instead of a string at start ?. */ | |
313 void | |
314 insert_glyphs (register GLYPH *start, register int len) | |
315 { | |
316 scroll_line (len, RIGHT); | |
317 | |
318 /* Move len chars to the right starting at cursor_coords, fill with blanks */ | |
319 if (start) | |
320 { | |
321 /* Print the first len characters of start, cursor_coords.X adjusted | |
322 by write_glyphs. */ | |
323 | |
324 write_glyphs (start, len); | |
325 } | |
326 else | |
327 { | |
328 clear_end_of_line (cursor_coords.X + len); | |
329 } | |
330 } | |
331 | |
332 void | |
333 write_glyphs (register GLYPH *string, register int len) | |
334 { | |
335 register unsigned int glyph_len = GLYPH_TABLE_LENGTH; | |
336 Lisp_Object *glyph_table = GLYPH_TABLE_BASE; | |
337 FRAME_PTR f = PICK_FRAME (); | |
338 register char *ptr; | |
339 GLYPH glyph; | |
340 char *chars; | |
341 int i; | |
342 | |
14244
493cff4d5960
(clear_frame): Use FillConsoleOutput* calls instead of
Geoff Voelker <voelker@cs.washington.edu>
parents:
14186
diff
changeset
|
343 if (len <= 0) |
493cff4d5960
(clear_frame): Use FillConsoleOutput* calls instead of
Geoff Voelker <voelker@cs.washington.edu>
parents:
14186
diff
changeset
|
344 return; |
493cff4d5960
(clear_frame): Use FillConsoleOutput* calls instead of
Geoff Voelker <voelker@cs.washington.edu>
parents:
14186
diff
changeset
|
345 |
9907 | 346 chars = alloca (len * sizeof (*chars)); |
24755
3bb855a40bf6
(clear_frame): Remember that the window width might
Andrew Innes <andrewi@gnu.org>
parents:
23572
diff
changeset
|
347 if (chars == NULL) |
9907 | 348 { |
349 printf ("alloca failed in write_glyphs\n"); | |
350 return; | |
351 } | |
352 | |
353 /* We have to deal with the glyph indirection...go over the glyph | |
354 buffer and extract the characters. */ | |
355 ptr = chars; | |
356 while (--len >= 0) | |
357 { | |
358 glyph = *string++; | |
359 | |
360 if (glyph > glyph_len) | |
361 { | |
362 *ptr++ = glyph & 0xFF; | |
363 continue; | |
364 } | |
365 GLYPH_FOLLOW_ALIASES (glyph_table, glyph_len, glyph); | |
13424
efbbbfd268dd
(nt_ring_bell): Renamed from ring_bell, now global.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12336
diff
changeset
|
366 #ifndef HAVE_NTGUI |
9907 | 367 if (GLYPH_FACE (fixfix, glyph) != 0) |
368 printf ("Glyph face is %d\n", GLYPH_FACE (fixfix, glyph)); | |
13424
efbbbfd268dd
(nt_ring_bell): Renamed from ring_bell, now global.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12336
diff
changeset
|
369 #endif /* !HAVE_NTGUI */ |
9907 | 370 if (GLYPH_SIMPLE_P (glyph_table, glyph_len, glyph)) |
371 { | |
372 *ptr++ = glyph & 0xFF; | |
373 continue; | |
374 } | |
375 for (i = 0; i < GLYPH_LENGTH (glyph_table, glyph); i++) | |
376 { | |
377 *ptr++ = (GLYPH_STRING (glyph_table, glyph))[i]; | |
378 } | |
379 } | |
380 | |
381 /* Number of characters we have in the buffer. */ | |
382 len = ptr-chars; | |
383 | |
24755
3bb855a40bf6
(clear_frame): Remember that the window width might
Andrew Innes <andrewi@gnu.org>
parents:
23572
diff
changeset
|
384 /* Set the attribute for these characters. */ |
3bb855a40bf6
(clear_frame): Remember that the window width might
Andrew Innes <andrewi@gnu.org>
parents:
23572
diff
changeset
|
385 if (!FillConsoleOutputAttribute (cur_screen, char_attr, len, cursor_coords, &i)) |
9907 | 386 { |
11389 | 387 printf ("Failed writing console attributes: %d\n", GetLastError ()); |
9907 | 388 fflush (stdout); |
389 } | |
390 | |
391 /* Write the characters. */ | |
392 if (!WriteConsoleOutputCharacter (cur_screen, chars, len, cursor_coords, &i)) | |
393 { | |
11389 | 394 printf ("Failed writing console characters: %d\n", GetLastError ()); |
9907 | 395 fflush (stdout); |
396 } | |
397 | |
398 cursor_coords.X += len; | |
399 move_cursor (cursor_coords.Y, cursor_coords.X); | |
400 } | |
401 | |
402 void | |
403 delete_glyphs (int n) | |
404 { | |
405 /* delete chars means scroll chars from cursor_coords.X + n to | |
406 cursor_coords.X, anything beyond the edge of the screen should | |
407 come out empty... */ | |
408 | |
409 scroll_line (n, LEFT); | |
410 } | |
411 | |
11389 | 412 static unsigned int sound_type = 0xFFFFFFFF; |
23563
18c5f58b70b5
(Fset_message_beep): Recognize 'silent.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22540
diff
changeset
|
413 #define MB_EMACS_SILENT (0xFFFFFFFF - 1) |
11389 | 414 |
9907 | 415 void |
16588
481b7874a1e9
Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16262
diff
changeset
|
416 w32_sys_ring_bell (void) |
9907 | 417 { |
11389 | 418 if (sound_type == 0xFFFFFFFF) |
23563
18c5f58b70b5
(Fset_message_beep): Recognize 'silent.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22540
diff
changeset
|
419 { |
11389 | 420 Beep (666, 100); |
23563
18c5f58b70b5
(Fset_message_beep): Recognize 'silent.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22540
diff
changeset
|
421 } |
18c5f58b70b5
(Fset_message_beep): Recognize 'silent.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22540
diff
changeset
|
422 else if (sound_type == MB_EMACS_SILENT) |
18c5f58b70b5
(Fset_message_beep): Recognize 'silent.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22540
diff
changeset
|
423 { |
18c5f58b70b5
(Fset_message_beep): Recognize 'silent.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22540
diff
changeset
|
424 /* Do nothing. */ |
18c5f58b70b5
(Fset_message_beep): Recognize 'silent.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22540
diff
changeset
|
425 } |
11389 | 426 else |
23563
18c5f58b70b5
(Fset_message_beep): Recognize 'silent.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22540
diff
changeset
|
427 MessageBeep (sound_type); |
9907 | 428 } |
429 | |
11389 | 430 DEFUN ("set-message-beep", Fset_message_beep, Sset_message_beep, 1, 1, 0, |
431 "Set the sound generated when the bell is rung.\n\ | |
23563
18c5f58b70b5
(Fset_message_beep): Recognize 'silent.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22540
diff
changeset
|
432 SOUND is 'asterisk, 'exclamation, 'hand, 'question, 'ok, or 'silent\n\ |
18c5f58b70b5
(Fset_message_beep): Recognize 'silent.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22540
diff
changeset
|
433 to use the corresponding system sound for the bell. The 'silent sound\n\ |
18c5f58b70b5
(Fset_message_beep): Recognize 'silent.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22540
diff
changeset
|
434 prevents Emacs from making any sound at all.\n\ |
11389 | 435 SOUND is nil to use the normal beep.") |
436 (sound) | |
437 Lisp_Object sound; | |
9907 | 438 { |
11389 | 439 CHECK_SYMBOL (sound, 0); |
440 | |
441 if (NILP (sound)) | |
442 sound_type = 0xFFFFFFFF; | |
443 else if (EQ (sound, intern ("asterisk"))) | |
444 sound_type = MB_ICONASTERISK; | |
445 else if (EQ (sound, intern ("exclamation"))) | |
446 sound_type = MB_ICONEXCLAMATION; | |
447 else if (EQ (sound, intern ("hand"))) | |
448 sound_type = MB_ICONHAND; | |
449 else if (EQ (sound, intern ("question"))) | |
450 sound_type = MB_ICONQUESTION; | |
451 else if (EQ (sound, intern ("ok"))) | |
452 sound_type = MB_OK; | |
23563
18c5f58b70b5
(Fset_message_beep): Recognize 'silent.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22540
diff
changeset
|
453 else if (EQ (sound, intern ("silent"))) |
18c5f58b70b5
(Fset_message_beep): Recognize 'silent.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22540
diff
changeset
|
454 sound_type = MB_EMACS_SILENT; |
11389 | 455 else |
456 sound_type = 0xFFFFFFFF; | |
457 | |
458 return sound; | |
9907 | 459 } |
460 | |
461 void | |
462 reset_terminal_modes (void) | |
463 { | |
19706
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
464 #ifdef USE_SEPARATE_SCREEN |
9907 | 465 SetConsoleActiveScreenBuffer (prev_screen); |
19706
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
466 #else |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
467 SetConsoleCursorInfo (prev_screen, &prev_console_cursor); |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
468 #endif |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
469 SetConsoleMode (keyboard_handle, prev_console_mode); |
9907 | 470 } |
471 | |
472 void | |
473 set_terminal_modes (void) | |
474 { | |
475 CONSOLE_CURSOR_INFO cci; | |
476 | |
19706
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
477 /* make cursor big and visible (100 on Win95 makes it disappear) */ |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
478 cci.dwSize = 99; |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
479 cci.bVisible = TRUE; |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
480 (void) SetConsoleCursorInfo (cur_screen, &cci); |
9907 | 481 |
19706
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
482 SetConsoleActiveScreenBuffer (cur_screen); |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
483 |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
484 SetConsoleMode (keyboard_handle, ENABLE_MOUSE_INPUT | ENABLE_WINDOW_INPUT); |
9907 | 485 |
19706
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
486 /* Initialize input mode: interrupt_input off, no flow control, allow |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
487 8 bit character input, standard quit char. */ |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
488 Fset_input_mode (Qnil, Qnil, make_number (2), Qnil); |
9907 | 489 } |
490 | |
491 /* hmmm... perhaps these let us bracket screen changes so that we can flush | |
492 clumps rather than one-character-at-a-time... | |
493 | |
494 we'll start with not moving the cursor while an update is in progress. */ | |
495 void | |
496 update_begin (FRAME_PTR f) | |
497 { | |
498 } | |
499 | |
500 void | |
501 update_end (FRAME_PTR f) | |
502 { | |
503 SetConsoleCursorPosition (cur_screen, cursor_coords); | |
504 } | |
505 | |
506 void | |
507 set_terminal_window (int size) | |
508 { | |
509 } | |
510 | |
511 typedef int (*term_hook) (); | |
512 | |
513 void | |
16883
d1d4d81f9ece
Change all uses of win95, winnt, and win32
Geoff Voelker <voelker@cs.washington.edu>
parents:
16593
diff
changeset
|
514 initialize_w32_display (void) |
9907 | 515 { |
516 CONSOLE_SCREEN_BUFFER_INFO info; | |
517 | |
21828
7e3f21132df4
(initialize_w32_displayed): Use new function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19706
diff
changeset
|
518 cursor_to_hook = move_cursor; |
7e3f21132df4
(initialize_w32_displayed): Use new function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19706
diff
changeset
|
519 raw_cursor_to_hook = move_cursor; |
7e3f21132df4
(initialize_w32_displayed): Use new function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19706
diff
changeset
|
520 clear_to_end_hook = clear_to_end; |
7e3f21132df4
(initialize_w32_displayed): Use new function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19706
diff
changeset
|
521 clear_frame_hook = clear_frame; |
7e3f21132df4
(initialize_w32_displayed): Use new function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19706
diff
changeset
|
522 clear_end_of_line_hook = clear_end_of_line; |
7e3f21132df4
(initialize_w32_displayed): Use new function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19706
diff
changeset
|
523 ins_del_lines_hook = ins_del_lines; |
7e3f21132df4
(initialize_w32_displayed): Use new function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19706
diff
changeset
|
524 change_line_highlight_hook = change_line_highlight; |
7e3f21132df4
(initialize_w32_displayed): Use new function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19706
diff
changeset
|
525 reassert_line_highlight_hook = reassert_line_highlight; |
7e3f21132df4
(initialize_w32_displayed): Use new function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19706
diff
changeset
|
526 insert_glyphs_hook = insert_glyphs; |
7e3f21132df4
(initialize_w32_displayed): Use new function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19706
diff
changeset
|
527 write_glyphs_hook = write_glyphs; |
7e3f21132df4
(initialize_w32_displayed): Use new function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19706
diff
changeset
|
528 delete_glyphs_hook = delete_glyphs; |
7e3f21132df4
(initialize_w32_displayed): Use new function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19706
diff
changeset
|
529 ring_bell_hook = w32_sys_ring_bell; |
7e3f21132df4
(initialize_w32_displayed): Use new function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19706
diff
changeset
|
530 reset_terminal_modes_hook = reset_terminal_modes; |
7e3f21132df4
(initialize_w32_displayed): Use new function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19706
diff
changeset
|
531 set_terminal_modes_hook = set_terminal_modes; |
7e3f21132df4
(initialize_w32_displayed): Use new function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19706
diff
changeset
|
532 set_terminal_window_hook = set_terminal_window; |
7e3f21132df4
(initialize_w32_displayed): Use new function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19706
diff
changeset
|
533 update_begin_hook = update_begin; |
7e3f21132df4
(initialize_w32_displayed): Use new function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19706
diff
changeset
|
534 update_end_hook = update_end; |
9907 | 535 |
16588
481b7874a1e9
Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16262
diff
changeset
|
536 read_socket_hook = w32_console_read_socket; |
21828
7e3f21132df4
(initialize_w32_displayed): Use new function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19706
diff
changeset
|
537 mouse_position_hook = w32_console_mouse_position; |
19706
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
538 |
22540
0e7c65caf1cb
(initialize_w32_display): Call init_crit to initialize
Andrew Innes <andrewi@gnu.org>
parents:
21828
diff
changeset
|
539 /* Initialize interrupt_handle. */ |
0e7c65caf1cb
(initialize_w32_display): Call init_crit to initialize
Andrew Innes <andrewi@gnu.org>
parents:
21828
diff
changeset
|
540 init_crit (); |
0e7c65caf1cb
(initialize_w32_display): Call init_crit to initialize
Andrew Innes <andrewi@gnu.org>
parents:
21828
diff
changeset
|
541 |
19706
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
542 /* Remember original console settings. */ |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
543 keyboard_handle = GetStdHandle (STD_INPUT_HANDLE); |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
544 GetConsoleMode (keyboard_handle, &prev_console_mode); |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
545 |
9907 | 546 prev_screen = GetStdHandle (STD_OUTPUT_HANDLE); |
547 | |
19706
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
548 #ifdef USE_SEPARATE_SCREEN |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
549 cur_screen = CreateConsoleScreenBuffer (GENERIC_READ | GENERIC_WRITE, |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
550 0, NULL, |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
551 CONSOLE_TEXTMODE_BUFFER, |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
552 NULL); |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
553 |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
554 if (cur_screen == INVALID_HANDLE_VALUE) |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
555 { |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
556 printf ("CreateConsoleScreenBuffer failed in ResetTerm\n"); |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
557 printf ("LastError = 0x%lx\n", GetLastError ()); |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
558 fflush (stdout); |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
559 exit (0); |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
560 } |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
561 #else |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
562 cur_screen = prev_screen; |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
563 GetConsoleCursorInfo (prev_screen, &prev_console_cursor); |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
564 #endif |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
565 |
9907 | 566 GetConsoleScreenBufferInfo (cur_screen, &info); |
567 | |
568 meta_key = 1; | |
569 char_attr = info.wAttributes & 0xFF; | |
570 char_attr_normal = char_attr; | |
571 char_attr_reverse = ((char_attr & 0xf) << 4) + ((char_attr & 0xf0) >> 4); | |
23572
1fa5f9f5c92e
(initialize_w32_display): Use buffer coords
Geoff Voelker <voelker@cs.washington.edu>
parents:
23563
diff
changeset
|
572 |
1fa5f9f5c92e
(initialize_w32_display): Use buffer coords
Geoff Voelker <voelker@cs.washington.edu>
parents:
23563
diff
changeset
|
573 /* Lines per page. Use buffer coords instead of buffer size. */ |
1fa5f9f5c92e
(initialize_w32_display): Use buffer coords
Geoff Voelker <voelker@cs.washington.edu>
parents:
23563
diff
changeset
|
574 FRAME_HEIGHT (selected_frame) = 1 + info.srWindow.Bottom - |
1fa5f9f5c92e
(initialize_w32_display): Use buffer coords
Geoff Voelker <voelker@cs.washington.edu>
parents:
23563
diff
changeset
|
575 info.srWindow.Top; |
1fa5f9f5c92e
(initialize_w32_display): Use buffer coords
Geoff Voelker <voelker@cs.washington.edu>
parents:
23563
diff
changeset
|
576 /* Characters per line. Use buffer coords instead of buffer size. */ |
1fa5f9f5c92e
(initialize_w32_display): Use buffer coords
Geoff Voelker <voelker@cs.washington.edu>
parents:
23563
diff
changeset
|
577 SET_FRAME_WIDTH (selected_frame, 1 + info.srWindow.Right - |
1fa5f9f5c92e
(initialize_w32_display): Use buffer coords
Geoff Voelker <voelker@cs.washington.edu>
parents:
23563
diff
changeset
|
578 info.srWindow.Left); |
9907 | 579 } |
580 | |
581 DEFUN ("set-screen-color", Fset_screen_color, Sset_screen_color, 2, 2, 0, | |
582 "Set screen colors.") | |
583 (foreground, background) | |
584 Lisp_Object foreground; | |
585 Lisp_Object background; | |
586 { | |
587 char_attr_normal = XFASTINT (foreground) + (XFASTINT (background) << 4); | |
588 char_attr_reverse = XFASTINT (background) + (XFASTINT (foreground) << 4); | |
589 | |
590 Frecenter (Qnil); | |
591 return Qt; | |
592 } | |
593 | |
594 DEFUN ("set-cursor-size", Fset_cursor_size, Sset_cursor_size, 1, 1, 0, | |
595 "Set cursor size.") | |
596 (size) | |
597 Lisp_Object size; | |
598 { | |
599 CONSOLE_CURSOR_INFO cci; | |
600 cci.dwSize = XFASTINT (size); | |
601 cci.bVisible = TRUE; | |
602 (void) SetConsoleCursorInfo (cur_screen, &cci); | |
603 | |
604 return Qt; | |
605 } | |
606 | |
13424
efbbbfd268dd
(nt_ring_bell): Renamed from ring_bell, now global.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12336
diff
changeset
|
607 #ifndef HAVE_NTGUI |
9907 | 608 void |
609 pixel_to_glyph_coords (FRAME_PTR f, int pix_x, int pix_y, int *x, int *y, | |
610 void *bounds, int noclip) | |
611 { | |
612 *x = pix_x; | |
613 *y = pix_y; | |
614 } | |
615 | |
616 void | |
617 glyph_to_pixel_coords (FRAME_PTR f, int x, int y, int *pix_x, int *pix_y) | |
618 { | |
619 *pix_x = x; | |
620 *pix_y = y; | |
621 } | |
13424
efbbbfd268dd
(nt_ring_bell): Renamed from ring_bell, now global.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12336
diff
changeset
|
622 #endif /* !HAVE_NTGUI */ |
9907 | 623 |
11389 | 624 void |
9907 | 625 syms_of_ntterm () |
626 { | |
627 defsubr (&Sset_screen_color); | |
628 defsubr (&Sset_cursor_size); | |
11389 | 629 defsubr (&Sset_message_beep); |
9907 | 630 } |