1 /* Terminal hooks for GNU Emacs on the Microsoft W32 API.
2 Copyright (C) 1992, 1999 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.
21 Tim Fleehart (apollo@online.com) 1-17-92
22 Geoff Voelker (voelker@cs.washington.edu) 9-12-93
37 #include "termhooks.h"
38 #include "dispextern.h"
39 /* Disable features in frame.h that require a Window System. */
40 #undef HAVE_WINDOW_SYSTEM
45 extern Lisp_Object
Frecenter ();
48 extern int detect_input_pending ();
51 extern int read_input_pending ();
53 extern struct frame
* updating_frame
;
56 static void w32con_move_cursor (int row
, int col
);
57 static void w32con_clear_to_end (void);
58 static void w32con_clear_frame (void);
59 static void w32con_clear_end_of_line (int);
60 static void w32con_ins_del_lines (int vpos
, int n
);
61 static void w32con_insert_glyphs (struct glyph
*start
, int len
);
62 static void w32con_write_glyphs (struct glyph
*string
, int len
);
63 static void w32con_delete_glyphs (int n
);
64 void w32_sys_ring_bell (void);
65 static void w32con_reset_terminal_modes (void);
66 static void w32con_set_terminal_modes (void);
67 static void w32con_set_terminal_window (int size
);
68 static void w32con_update_begin (struct frame
* f
);
69 static void w32con_update_end (struct frame
* f
);
70 static WORD
w32_face_attributes (struct frame
*f
, int face_id
);
72 static COORD cursor_coords
;
73 static HANDLE prev_screen
, cur_screen
;
74 static WORD char_attr_normal
;
75 static DWORD prev_console_mode
;
77 #ifndef USE_SEPARATE_SCREEN
78 static CONSOLE_CURSOR_INFO prev_console_cursor
;
81 /* Determine whether to make frame dimensions match the screen buffer,
82 or the current window size. The former is desirable when running
83 over telnet, while the latter is more useful when working directly at
84 the console with a large scroll-back buffer. */
85 int w32_use_full_screen_buffer
;
86 HANDLE keyboard_handle
;
89 /* Setting this as the ctrl handler prevents emacs from being killed when
90 someone hits ^C in a 'suspended' session (child shell).
91 Also ignore Ctrl-Break signals. */
94 ctrl_c_handler (unsigned long type
)
96 /* Only ignore "interrupt" events when running interactively. */
97 return (!noninteractive
98 && (type
== CTRL_C_EVENT
|| type
== CTRL_BREAK_EVENT
));
101 /* If we're updating a frame, use it as the current frame
102 Otherwise, use the selected frame. */
103 #define PICK_FRAME() (updating_frame ? updating_frame : SELECTED_FRAME ())
105 /* Move the cursor to (row, col). */
107 w32con_move_cursor (int row
, int col
)
109 cursor_coords
.X
= col
;
110 cursor_coords
.Y
= row
;
112 if (updating_frame
== (struct frame
*) NULL
)
114 SetConsoleCursorPosition (cur_screen
, cursor_coords
);
118 /* Clear from cursor to end of screen. */
120 w32con_clear_to_end (void)
122 struct frame
* f
= PICK_FRAME ();
124 w32con_clear_end_of_line (FRAME_COLS (f
) - 1);
125 w32con_ins_del_lines (cursor_coords
.Y
, FRAME_LINES (f
) - cursor_coords
.Y
- 1);
128 /* Clear the frame. */
130 w32con_clear_frame (void)
132 struct frame
* f
= PICK_FRAME ();
136 CONSOLE_SCREEN_BUFFER_INFO info
;
138 GetConsoleScreenBufferInfo (GetStdHandle (STD_OUTPUT_HANDLE
), &info
);
140 /* Remember that the screen buffer might be wider than the window. */
141 n
= FRAME_LINES (f
) * info
.dwSize
.X
;
144 FillConsoleOutputAttribute (cur_screen
, char_attr_normal
, n
, dest
, &r
);
145 FillConsoleOutputCharacter (cur_screen
, ' ', n
, dest
, &r
);
147 w32con_move_cursor (0, 0);
151 static struct glyph glyph_base
[256];
152 static BOOL ceol_initialized
= FALSE
;
154 /* Clear from Cursor to end (what's "standout marker"?). */
156 w32con_clear_end_of_line (int end
)
158 if (!ceol_initialized
)
161 for (i
= 0; i
< 256; i
++)
163 memcpy (&glyph_base
[i
], &space_glyph
, sizeof (struct glyph
));
165 ceol_initialized
= TRUE
;
167 w32con_write_glyphs (glyph_base
, end
- cursor_coords
.X
); /* fencepost ? */
170 /* Insert n lines at vpos. if n is negative delete -n lines. */
172 w32con_ins_del_lines (int vpos
, int n
)
178 struct frame
* f
= PICK_FRAME ();
182 scroll
.Top
= vpos
- n
;
183 scroll
.Bottom
= FRAME_LINES (f
);
189 scroll
.Bottom
= FRAME_LINES (f
) - n
;
193 scroll
.Right
= FRAME_COLS (f
);
197 fill
.Char
.AsciiChar
= 0x20;
198 fill
.Attributes
= char_attr_normal
;
200 ScrollConsoleScreenBuffer (cur_screen
, &scroll
, NULL
, dest
, &fill
);
202 /* Here we have to deal with a w32 console flake: If the scroll
203 region looks like abc and we scroll c to a and fill with d we get
204 cbd... if we scroll block c one line at a time to a, we get cdd...
205 Emacs expects cdd consistently... So we have to deal with that
206 here... (this also occurs scrolling the same way in the other
211 if (scroll
.Bottom
< dest
.Y
)
213 for (i
= scroll
.Bottom
; i
< dest
.Y
; i
++)
215 w32con_move_cursor (i
, 0);
216 w32con_clear_end_of_line (FRAME_COLS (f
));
222 nb
= dest
.Y
+ (scroll
.Bottom
- scroll
.Top
) + 1;
226 for (i
= nb
; i
< scroll
.Top
; i
++)
228 w32con_move_cursor (i
, 0);
229 w32con_clear_end_of_line (FRAME_COLS (f
));
235 cursor_coords
.Y
= vpos
;
244 scroll_line (int dist
, int direction
)
246 /* The idea here is to implement a horizontal scroll in one line to
247 implement delete and half of insert. */
251 struct frame
* f
= PICK_FRAME ();
253 scroll
.Top
= cursor_coords
.Y
;
254 scroll
.Bottom
= cursor_coords
.Y
;
256 if (direction
== LEFT
)
258 scroll
.Left
= cursor_coords
.X
+ dist
;
259 scroll
.Right
= FRAME_COLS (f
) - 1;
263 scroll
.Left
= cursor_coords
.X
;
264 scroll
.Right
= FRAME_COLS (f
) - dist
- 1;
267 dest
.X
= cursor_coords
.X
;
268 dest
.Y
= cursor_coords
.Y
;
270 fill
.Char
.AsciiChar
= 0x20;
271 fill
.Attributes
= char_attr_normal
;
273 ScrollConsoleScreenBuffer (cur_screen
, &scroll
, NULL
, dest
, &fill
);
277 /* If start is zero insert blanks instead of a string at start ?. */
279 w32con_insert_glyphs (register struct glyph
*start
, register int len
)
281 scroll_line (len
, RIGHT
);
283 /* Move len chars to the right starting at cursor_coords, fill with blanks */
286 /* Print the first len characters of start, cursor_coords.X adjusted
289 w32con_write_glyphs (start
, len
);
293 w32con_clear_end_of_line (cursor_coords
.X
+ len
);
297 extern unsigned char *encode_terminal_code
P_ ((struct glyph
*, int,
298 struct coding_system
*));
301 w32con_write_glyphs (register struct glyph
*string
, register int len
)
303 int produced
, consumed
;
305 struct frame
* f
= PICK_FRAME ();
307 unsigned char *conversion_buffer
;
308 struct coding_system
*coding
;
313 /* If terminal_coding does any conversion, use it, otherwise use
314 safe_terminal_coding. We can't use CODING_REQUIRE_ENCODING here
315 because it always return 1 if the member src_multibyte is 1. */
316 coding
= (terminal_coding
.common_flags
& CODING_REQUIRE_ENCODING_MASK
317 ? &terminal_coding
: &safe_terminal_coding
);
318 /* The mode bit CODING_MODE_LAST_BLOCK should be set to 1 only at
320 terminal_coding
.mode
&= ~CODING_MODE_LAST_BLOCK
;
324 /* Identify a run of glyphs with the same face. */
325 int face_id
= string
->face_id
;
328 for (n
= 1; n
< len
; ++n
)
329 if (string
[n
].face_id
!= face_id
)
332 /* Turn appearance modes of the face of the run on. */
333 char_attr
= w32_face_attributes (f
, face_id
);
336 /* This is the last run. */
337 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
338 conversion_buffer
= encode_terminal_code (string
, n
, coding
);
339 if (coding
->produced
> 0)
341 /* Set the attribute for these characters. */
342 if (!FillConsoleOutputAttribute (cur_screen
, char_attr
,
343 coding
->produced
, cursor_coords
,
346 printf ("Failed writing console attributes: %d\n",
351 /* Write the characters. */
352 if (!WriteConsoleOutputCharacter (cur_screen
, conversion_buffer
,
353 coding
->produced
, cursor_coords
,
356 printf ("Failed writing console characters: %d\n",
361 cursor_coords
.X
+= coding
->produced
;
362 w32con_move_cursor (cursor_coords
.Y
, cursor_coords
.X
);
371 w32con_delete_glyphs (int n
)
373 /* delete chars means scroll chars from cursor_coords.X + n to
374 cursor_coords.X, anything beyond the edge of the screen should
377 scroll_line (n
, LEFT
);
380 static unsigned int sound_type
= 0xFFFFFFFF;
381 #define MB_EMACS_SILENT (0xFFFFFFFF - 1)
384 w32_sys_ring_bell (void)
386 if (sound_type
== 0xFFFFFFFF)
390 else if (sound_type
== MB_EMACS_SILENT
)
395 MessageBeep (sound_type
);
398 DEFUN ("set-message-beep", Fset_message_beep
, Sset_message_beep
, 1, 1, 0,
399 doc
: /* Set the sound generated when the bell is rung.
400 SOUND is 'asterisk, 'exclamation, 'hand, 'question, 'ok, or 'silent
401 to use the corresponding system sound for the bell. The 'silent sound
402 prevents Emacs from making any sound at all.
403 SOUND is nil to use the normal beep. */)
407 CHECK_SYMBOL (sound
);
410 sound_type
= 0xFFFFFFFF;
411 else if (EQ (sound
, intern ("asterisk")))
412 sound_type
= MB_ICONASTERISK
;
413 else if (EQ (sound
, intern ("exclamation")))
414 sound_type
= MB_ICONEXCLAMATION
;
415 else if (EQ (sound
, intern ("hand")))
416 sound_type
= MB_ICONHAND
;
417 else if (EQ (sound
, intern ("question")))
418 sound_type
= MB_ICONQUESTION
;
419 else if (EQ (sound
, intern ("ok")))
421 else if (EQ (sound
, intern ("silent")))
422 sound_type
= MB_EMACS_SILENT
;
424 sound_type
= 0xFFFFFFFF;
430 w32con_reset_terminal_modes (void)
432 #ifdef USE_SEPARATE_SCREEN
433 SetConsoleActiveScreenBuffer (prev_screen
);
435 SetConsoleCursorInfo (prev_screen
, &prev_console_cursor
);
437 SetConsoleMode (keyboard_handle
, prev_console_mode
);
441 w32con_set_terminal_modes (void)
443 CONSOLE_CURSOR_INFO cci
;
445 /* make cursor big and visible (100 on Win95 makes it disappear) */
448 (void) SetConsoleCursorInfo (cur_screen
, &cci
);
450 SetConsoleActiveScreenBuffer (cur_screen
);
452 SetConsoleMode (keyboard_handle
, ENABLE_MOUSE_INPUT
| ENABLE_WINDOW_INPUT
);
454 /* Initialize input mode: interrupt_input off, no flow control, allow
455 8 bit character input, standard quit char. */
456 Fset_input_mode (Qnil
, Qnil
, make_number (2), Qnil
);
459 /* hmmm... perhaps these let us bracket screen changes so that we can flush
460 clumps rather than one-character-at-a-time...
462 we'll start with not moving the cursor while an update is in progress. */
464 w32con_update_begin (struct frame
* f
)
469 w32con_update_end (struct frame
* f
)
471 SetConsoleCursorPosition (cur_screen
, cursor_coords
);
475 w32con_set_terminal_window (int size
)
479 /***********************************************************************
481 ***********************************************************************/
484 /* Turn appearances of face FACE_ID on tty frame F on. */
487 w32_face_attributes (f
, face_id
)
492 struct face
*face
= FACE_FROM_ID (f
, face_id
);
494 xassert (face
!= NULL
);
496 char_attr
= char_attr_normal
;
498 if (face
->foreground
!= FACE_TTY_DEFAULT_FG_COLOR
499 && face
->foreground
!= FACE_TTY_DEFAULT_COLOR
)
500 char_attr
= (char_attr
& 0xfff0) + (face
->foreground
% 16);
502 if (face
->background
!= FACE_TTY_DEFAULT_BG_COLOR
503 && face
->background
!= FACE_TTY_DEFAULT_COLOR
)
504 char_attr
= (char_attr
& 0xff0f) + ((face
->background
% 16) << 4);
507 /* NTEMACS_TODO: Faces defined during startup get both foreground
508 and background of 0. Need a better way around this - for now detect
509 the problem and invert one of the faces to make the text readable. */
510 if (((char_attr
& 0x00f0) >> 4) == (char_attr
& 0x000f))
513 if (face
->tty_reverse_p
)
514 char_attr
= (char_attr
& 0xff00) + ((char_attr
& 0x000f) << 4)
515 + ((char_attr
& 0x00f0) >> 4);
521 /* Emulation of some X window features from xfns.c and xfaces.c. */
523 extern char unspecified_fg
[], unspecified_bg
[];
526 /* Given a color index, return its standard name. */
528 vga_stdcolor_name (int idx
)
530 /* Standard VGA colors, in the order of their standard numbering
531 in the default VGA palette. */
532 static char *vga_colors
[16] = {
533 "black", "blue", "green", "cyan", "red", "magenta", "brown",
534 "lightgray", "darkgray", "lightblue", "lightgreen", "lightcyan",
535 "lightred", "lightmagenta", "yellow", "white"
538 extern Lisp_Object Qunspecified
;
540 if (idx
>= 0 && idx
< sizeof (vga_colors
) / sizeof (vga_colors
[0]))
541 return build_string (vga_colors
[idx
]);
543 return Qunspecified
; /* meaning the default */
546 typedef int (*term_hook
) ();
549 initialize_w32_display (void)
551 CONSOLE_SCREEN_BUFFER_INFO info
;
553 cursor_to_hook
= w32con_move_cursor
;
554 raw_cursor_to_hook
= w32con_move_cursor
;
555 clear_to_end_hook
= w32con_clear_to_end
;
556 clear_frame_hook
= w32con_clear_frame
;
557 clear_end_of_line_hook
= w32con_clear_end_of_line
;
558 ins_del_lines_hook
= w32con_ins_del_lines
;
559 insert_glyphs_hook
= w32con_insert_glyphs
;
560 write_glyphs_hook
= w32con_write_glyphs
;
561 delete_glyphs_hook
= w32con_delete_glyphs
;
562 ring_bell_hook
= w32_sys_ring_bell
;
563 reset_terminal_modes_hook
= w32con_reset_terminal_modes
;
564 set_terminal_modes_hook
= w32con_set_terminal_modes
;
565 set_terminal_window_hook
= w32con_set_terminal_window
;
566 update_begin_hook
= w32con_update_begin
;
567 update_end_hook
= w32con_update_end
;
569 read_socket_hook
= w32_console_read_socket
;
570 mouse_position_hook
= w32_console_mouse_position
;
572 /* Initialize interrupt_handle. */
575 /* Remember original console settings. */
576 keyboard_handle
= GetStdHandle (STD_INPUT_HANDLE
);
577 GetConsoleMode (keyboard_handle
, &prev_console_mode
);
579 prev_screen
= GetStdHandle (STD_OUTPUT_HANDLE
);
581 #ifdef USE_SEPARATE_SCREEN
582 cur_screen
= CreateConsoleScreenBuffer (GENERIC_READ
| GENERIC_WRITE
,
584 CONSOLE_TEXTMODE_BUFFER
,
587 if (cur_screen
== INVALID_HANDLE_VALUE
)
589 printf ("CreateConsoleScreenBuffer failed in ResetTerm\n");
590 printf ("LastError = 0x%lx\n", GetLastError ());
595 cur_screen
= prev_screen
;
596 GetConsoleCursorInfo (prev_screen
, &prev_console_cursor
);
599 /* Respect setting of LINES and COLUMNS environment variables. */
601 char * lines
= getenv("LINES");
602 char * columns
= getenv("COLUMNS");
604 if (lines
!= NULL
&& columns
!= NULL
)
606 SMALL_RECT new_win_dims
;
609 new_size
.X
= atoi (columns
);
610 new_size
.Y
= atoi (lines
);
612 GetConsoleScreenBufferInfo (cur_screen
, &info
);
614 /* Shrink the window first, so the buffer dimensions can be
615 reduced if necessary. */
616 new_win_dims
.Top
= 0;
617 new_win_dims
.Left
= 0;
618 new_win_dims
.Bottom
= min (new_size
.Y
, info
.dwSize
.Y
) - 1;
619 new_win_dims
.Right
= min (new_size
.X
, info
.dwSize
.X
) - 1;
620 SetConsoleWindowInfo (cur_screen
, TRUE
, &new_win_dims
);
622 SetConsoleScreenBufferSize (cur_screen
, new_size
);
624 /* Set the window size to match the buffer dimension. */
625 new_win_dims
.Top
= 0;
626 new_win_dims
.Left
= 0;
627 new_win_dims
.Bottom
= new_size
.Y
- 1;
628 new_win_dims
.Right
= new_size
.X
- 1;
629 SetConsoleWindowInfo (cur_screen
, TRUE
, &new_win_dims
);
633 GetConsoleScreenBufferInfo (cur_screen
, &info
);
636 char_attr_normal
= info
.wAttributes
;
638 if (w32_use_full_screen_buffer
)
640 FRAME_LINES (SELECTED_FRAME ()) = info
.dwSize
.Y
; /* lines per page */
641 SET_FRAME_COLS (SELECTED_FRAME (), info
.dwSize
.X
); /* characters per line */
645 /* Lines per page. Use buffer coords instead of buffer size. */
646 FRAME_LINES (SELECTED_FRAME ()) = 1 + info
.srWindow
.Bottom
-
648 /* Characters per line. Use buffer coords instead of buffer size. */
649 SET_FRAME_COLS (SELECTED_FRAME (), 1 + info
.srWindow
.Right
-
653 /* Setup w32_display_info structure for this frame. */
655 w32_initialize_display_info (build_string ("Console"));
659 DEFUN ("set-screen-color", Fset_screen_color
, Sset_screen_color
, 2, 2, 0,
660 doc
: /* Set screen colors. */)
661 (foreground
, background
)
662 Lisp_Object foreground
;
663 Lisp_Object background
;
665 char_attr_normal
= XFASTINT (foreground
) + (XFASTINT (background
) << 4);
671 DEFUN ("set-cursor-size", Fset_cursor_size
, Sset_cursor_size
, 1, 1, 0,
672 doc
: /* Set cursor size. */)
676 CONSOLE_CURSOR_INFO cci
;
677 cci
.dwSize
= XFASTINT (size
);
679 (void) SetConsoleCursorInfo (cur_screen
, &cci
);
687 DEFVAR_BOOL ("w32-use-full-screen-buffer",
688 &w32_use_full_screen_buffer
,
689 doc
: /* Non-nil means make terminal frames use the full screen buffer dimensions.
690 This is desirable when running Emacs over telnet, and is the default.
691 A value of nil means use the current console window dimensions; this
692 may be preferrable when working directly at the console with a large
693 scroll-back buffer. */);
694 w32_use_full_screen_buffer
= 1;
696 defsubr (&Sset_screen_color
);
697 defsubr (&Sset_cursor_size
);
698 defsubr (&Sset_message_beep
);
701 /* arch-tag: a390a07f-f661-42bc-aeb4-e6d8bf860337
702 (do not change this comment) */