1 /* Terminal hooks for GNU Emacs on the Microsoft W32 API.
2 Copyright (C) 1992, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
3 2008, 2009, 2010 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 Tim Fleehart (apollo@online.com) 1-17-92
22 Geoff Voelker (voelker@cs.washington.edu) 9-12-93
33 #include "character.h"
37 #include "termhooks.h"
39 #include "dispextern.h"
43 extern Lisp_Object
Frecenter (Lisp_Object
);
46 extern int detect_input_pending (void);
49 extern int read_input_pending (void);
51 static void w32con_move_cursor (struct frame
*f
, int row
, int col
);
52 static void w32con_clear_to_end (struct frame
*f
);
53 static void w32con_clear_frame (struct frame
*f
);
54 static void w32con_clear_end_of_line (struct frame
*f
, int);
55 static void w32con_ins_del_lines (struct frame
*f
, int vpos
, int n
);
56 static void w32con_insert_glyphs (struct frame
*f
, struct glyph
*start
, int len
);
57 static void w32con_write_glyphs (struct frame
*f
, struct glyph
*string
, int len
);
58 static void w32con_delete_glyphs (struct frame
*f
, int n
);
59 static void w32con_reset_terminal_modes (struct terminal
*t
);
60 static void w32con_set_terminal_modes (struct terminal
*t
);
61 static void w32con_set_terminal_window (struct frame
*f
, int size
);
62 static void w32con_update_begin (struct frame
* f
);
63 static void w32con_update_end (struct frame
* f
);
64 static WORD
w32_face_attributes (struct frame
*f
, int face_id
);
66 static COORD cursor_coords
;
67 static HANDLE prev_screen
, cur_screen
;
68 static WORD char_attr_normal
;
69 static DWORD prev_console_mode
;
71 #ifndef USE_SEPARATE_SCREEN
72 static CONSOLE_CURSOR_INFO prev_console_cursor
;
75 extern Lisp_Object Vtty_defined_color_alist
;
77 /* Determine whether to make frame dimensions match the screen buffer,
78 or the current window size. The former is desirable when running
79 over telnet, while the latter is more useful when working directly at
80 the console with a large scroll-back buffer. */
81 int w32_use_full_screen_buffer
;
82 HANDLE keyboard_handle
;
85 /* Setting this as the ctrl handler prevents emacs from being killed when
86 someone hits ^C in a 'suspended' session (child shell).
87 Also ignore Ctrl-Break signals. */
90 ctrl_c_handler (unsigned long type
)
92 /* Only ignore "interrupt" events when running interactively. */
93 return (!noninteractive
94 && (type
== CTRL_C_EVENT
|| type
== CTRL_BREAK_EVENT
));
98 /* Move the cursor to (ROW, COL) on FRAME. */
100 w32con_move_cursor (struct frame
*f
, int row
, int col
)
102 cursor_coords
.X
= col
;
103 cursor_coords
.Y
= row
;
105 /* TODO: for multi-tty support, cur_screen should be replaced with a
106 reference to the terminal for this frame. */
107 SetConsoleCursorPosition (cur_screen
, cursor_coords
);
110 /* Clear from cursor to end of screen. */
112 w32con_clear_to_end (struct frame
*f
)
114 w32con_clear_end_of_line (f
, FRAME_COLS (f
) - 1);
115 w32con_ins_del_lines (f
, cursor_coords
.Y
, FRAME_LINES (f
) - cursor_coords
.Y
- 1);
118 /* Clear the frame. */
120 w32con_clear_frame (struct frame
*f
)
125 CONSOLE_SCREEN_BUFFER_INFO info
;
127 GetConsoleScreenBufferInfo (GetStdHandle (STD_OUTPUT_HANDLE
), &info
);
129 /* Remember that the screen buffer might be wider than the window. */
130 n
= FRAME_LINES (f
) * info
.dwSize
.X
;
133 FillConsoleOutputAttribute (cur_screen
, char_attr_normal
, n
, dest
, &r
);
134 FillConsoleOutputCharacter (cur_screen
, ' ', n
, dest
, &r
);
136 w32con_move_cursor (f
, 0, 0);
140 static struct glyph glyph_base
[256];
141 static BOOL ceol_initialized
= FALSE
;
143 /* Clear from Cursor to end (what's "standout marker"?). */
145 w32con_clear_end_of_line (struct frame
*f
, int end
)
147 if (!ceol_initialized
)
150 for (i
= 0; i
< 256; i
++)
152 memcpy (&glyph_base
[i
], &space_glyph
, sizeof (struct glyph
));
154 ceol_initialized
= TRUE
;
156 w32con_write_glyphs (f
, glyph_base
, end
- cursor_coords
.X
); /* fencepost ? */
159 /* Insert n lines at vpos. if n is negative delete -n lines. */
161 w32con_ins_del_lines (struct frame
*f
, int vpos
, int n
)
171 scroll
.Top
= vpos
- n
;
172 scroll
.Bottom
= FRAME_LINES (f
);
178 scroll
.Bottom
= FRAME_LINES (f
) - n
;
181 clip
.Top
= clip
.Left
= scroll
.Left
= 0;
182 clip
.Right
= scroll
.Right
= FRAME_COLS (f
);
183 clip
.Bottom
= FRAME_LINES (f
);
187 fill
.Char
.AsciiChar
= 0x20;
188 fill
.Attributes
= char_attr_normal
;
190 ScrollConsoleScreenBuffer (cur_screen
, &scroll
, &clip
, dest
, &fill
);
192 /* Here we have to deal with a w32 console flake: If the scroll
193 region looks like abc and we scroll c to a and fill with d we get
194 cbd... if we scroll block c one line at a time to a, we get cdd...
195 Emacs expects cdd consistently... So we have to deal with that
196 here... (this also occurs scrolling the same way in the other
201 if (scroll
.Bottom
< dest
.Y
)
203 for (i
= scroll
.Bottom
; i
< dest
.Y
; i
++)
205 w32con_move_cursor (f
, i
, 0);
206 w32con_clear_end_of_line (f
, FRAME_COLS (f
));
212 nb
= dest
.Y
+ (scroll
.Bottom
- scroll
.Top
) + 1;
216 for (i
= nb
; i
< scroll
.Top
; i
++)
218 w32con_move_cursor (f
, i
, 0);
219 w32con_clear_end_of_line (f
, FRAME_COLS (f
));
225 cursor_coords
.Y
= vpos
;
234 scroll_line (struct frame
*f
, int dist
, int direction
)
236 /* The idea here is to implement a horizontal scroll in one line to
237 implement delete and half of insert. */
238 SMALL_RECT scroll
, clip
;
242 clip
.Top
= scroll
.Top
= clip
.Bottom
= scroll
.Bottom
= cursor_coords
.Y
;
244 clip
.Right
= FRAME_COLS (f
);
246 if (direction
== LEFT
)
248 scroll
.Left
= cursor_coords
.X
+ dist
;
249 scroll
.Right
= FRAME_COLS (f
) - 1;
253 scroll
.Left
= cursor_coords
.X
;
254 scroll
.Right
= FRAME_COLS (f
) - dist
- 1;
257 dest
.X
= cursor_coords
.X
;
258 dest
.Y
= cursor_coords
.Y
;
260 fill
.Char
.AsciiChar
= 0x20;
261 fill
.Attributes
= char_attr_normal
;
263 ScrollConsoleScreenBuffer (cur_screen
, &scroll
, &clip
, dest
, &fill
);
267 /* If start is zero insert blanks instead of a string at start ?. */
269 w32con_insert_glyphs (struct frame
*f
, register struct glyph
*start
,
272 scroll_line (f
, len
, RIGHT
);
274 /* Move len chars to the right starting at cursor_coords, fill with blanks */
277 /* Print the first len characters of start, cursor_coords.X adjusted
280 w32con_write_glyphs (f
, start
, len
);
284 w32con_clear_end_of_line (f
, cursor_coords
.X
+ len
);
288 extern unsigned char *encode_terminal_code (struct glyph
*, int,
289 struct coding_system
*);
292 w32con_write_glyphs (struct frame
*f
, register struct glyph
*string
,
297 unsigned char *conversion_buffer
;
298 struct coding_system
*coding
;
303 /* If terminal_coding does any conversion, use it, otherwise use
304 safe_terminal_coding. We can't use CODING_REQUIRE_ENCODING here
305 because it always return 1 if the member src_multibyte is 1. */
306 coding
= (FRAME_TERMINAL_CODING (f
)->common_flags
& CODING_REQUIRE_ENCODING_MASK
307 ? FRAME_TERMINAL_CODING (f
) : &safe_terminal_coding
);
308 /* The mode bit CODING_MODE_LAST_BLOCK should be set to 1 only at
310 coding
->mode
&= ~CODING_MODE_LAST_BLOCK
;
314 /* Identify a run of glyphs with the same face. */
315 int face_id
= string
->face_id
;
318 for (n
= 1; n
< len
; ++n
)
319 if (string
[n
].face_id
!= face_id
)
322 /* Turn appearance modes of the face of the run on. */
323 char_attr
= w32_face_attributes (f
, face_id
);
326 /* This is the last run. */
327 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
328 conversion_buffer
= encode_terminal_code (string
, n
, coding
);
329 if (coding
->produced
> 0)
331 /* Set the attribute for these characters. */
332 if (!FillConsoleOutputAttribute (cur_screen
, char_attr
,
333 coding
->produced
, cursor_coords
,
336 printf ("Failed writing console attributes: %d\n",
341 /* Write the characters. */
342 if (!WriteConsoleOutputCharacter (cur_screen
, conversion_buffer
,
343 coding
->produced
, cursor_coords
,
346 printf ("Failed writing console characters: %d\n",
351 cursor_coords
.X
+= coding
->produced
;
352 w32con_move_cursor (f
, cursor_coords
.Y
, cursor_coords
.X
);
361 w32con_delete_glyphs (struct frame
*f
, int n
)
363 /* delete chars means scroll chars from cursor_coords.X + n to
364 cursor_coords.X, anything beyond the edge of the screen should
367 scroll_line (f
, n
, LEFT
);
370 static unsigned int sound_type
= 0xFFFFFFFF;
371 #define MB_EMACS_SILENT (0xFFFFFFFF - 1)
374 w32_sys_ring_bell (struct frame
*f
)
376 if (sound_type
== 0xFFFFFFFF)
380 else if (sound_type
== MB_EMACS_SILENT
)
385 MessageBeep (sound_type
);
388 DEFUN ("set-message-beep", Fset_message_beep
, Sset_message_beep
, 1, 1, 0,
389 doc
: /* Set the sound generated when the bell is rung.
390 SOUND is 'asterisk, 'exclamation, 'hand, 'question, 'ok, or 'silent
391 to use the corresponding system sound for the bell. The 'silent sound
392 prevents Emacs from making any sound at all.
393 SOUND is nil to use the normal beep. */)
396 CHECK_SYMBOL (sound
);
399 sound_type
= 0xFFFFFFFF;
400 else if (EQ (sound
, intern ("asterisk")))
401 sound_type
= MB_ICONASTERISK
;
402 else if (EQ (sound
, intern ("exclamation")))
403 sound_type
= MB_ICONEXCLAMATION
;
404 else if (EQ (sound
, intern ("hand")))
405 sound_type
= MB_ICONHAND
;
406 else if (EQ (sound
, intern ("question")))
407 sound_type
= MB_ICONQUESTION
;
408 else if (EQ (sound
, intern ("ok")))
410 else if (EQ (sound
, intern ("silent")))
411 sound_type
= MB_EMACS_SILENT
;
413 sound_type
= 0xFFFFFFFF;
419 w32con_reset_terminal_modes (struct terminal
*t
)
422 CONSOLE_SCREEN_BUFFER_INFO info
;
426 /* Clear the complete screen buffer. This is required because Emacs
427 sets the cursor position to the top of the buffer, but there might
428 be other output below the bottom of the Emacs frame if the screen buffer
429 is larger than the window size. */
430 GetConsoleScreenBufferInfo (cur_screen
, &info
);
433 n
= info
.dwSize
.X
* info
.dwSize
.Y
;
435 FillConsoleOutputAttribute (cur_screen
, char_attr_normal
, n
, dest
, &r
);
436 FillConsoleOutputCharacter (cur_screen
, ' ', n
, dest
, &r
);
437 /* Now that the screen is clear, put the cursor at the top. */
438 SetConsoleCursorPosition (cur_screen
, dest
);
440 #ifdef USE_SEPARATE_SCREEN
441 SetConsoleActiveScreenBuffer (prev_screen
);
443 SetConsoleCursorInfo (prev_screen
, &prev_console_cursor
);
446 SetConsoleMode (keyboard_handle
, prev_console_mode
);
450 w32con_set_terminal_modes (struct terminal
*t
)
452 CONSOLE_CURSOR_INFO cci
;
454 /* make cursor big and visible (100 on Win95 makes it disappear) */
457 (void) SetConsoleCursorInfo (cur_screen
, &cci
);
459 SetConsoleActiveScreenBuffer (cur_screen
);
461 SetConsoleMode (keyboard_handle
, ENABLE_MOUSE_INPUT
| ENABLE_WINDOW_INPUT
);
463 /* Initialize input mode: interrupt_input off, no flow control, allow
464 8 bit character input, standard quit char. */
465 Fset_input_mode (Qnil
, Qnil
, make_number (2), Qnil
);
468 /* hmmm... perhaps these let us bracket screen changes so that we can flush
469 clumps rather than one-character-at-a-time...
471 we'll start with not moving the cursor while an update is in progress. */
473 w32con_update_begin (struct frame
* f
)
478 w32con_update_end (struct frame
* f
)
480 SetConsoleCursorPosition (cur_screen
, cursor_coords
);
484 w32con_set_terminal_window (struct frame
*f
, int size
)
488 /***********************************************************************
490 ***********************************************************************/
493 sys_tputs (char *str
, int nlines
, int (*outfun
) (int))
498 sys_tgetstr (char *cap
, char **area
)
504 /***********************************************************************
506 ***********************************************************************/
508 struct tty_display_info
*current_tty
= NULL
;
524 cmcheckmagic (struct tty_display_info
*tty
)
529 cmcostinit (struct tty_display_info
*tty
)
534 cmgoto (struct tty_display_info
*tty
, int row
, int col
)
539 Wcm_clear (struct tty_display_info
*tty
)
544 /***********************************************************************
546 ***********************************************************************/
549 /* Turn appearances of face FACE_ID on tty frame F on. */
552 w32_face_attributes (struct frame
*f
, int face_id
)
555 struct face
*face
= FACE_FROM_ID (f
, face_id
);
557 xassert (face
!= NULL
);
559 char_attr
= char_attr_normal
;
561 /* Reverse the default color if requested. If background and
562 foreground are specified, then they have been reversed already. */
563 if (face
->tty_reverse_p
)
564 char_attr
= (char_attr
& 0xff00) + ((char_attr
& 0x000f) << 4)
565 + ((char_attr
& 0x00f0) >> 4);
567 /* Before the terminal is properly initialized, all colors map to 0.
568 Don't try to resolve them. */
569 if (NILP (Vtty_defined_color_alist
))
572 /* Colors should be in the range 0...15 unless they are one of
573 FACE_TTY_DEFAULT_COLOR, FACE_TTY_DEFAULT_FG_COLOR or
574 FACE_TTY_DEFAULT_BG_COLOR. Other out of range colors are
575 invalid, so it is better to use the default color if they ever
576 get through to here. */
577 if (face
->foreground
>= 0 && face
->foreground
< 16)
578 char_attr
= (char_attr
& 0xfff0) + face
->foreground
;
580 if (face
->background
>= 0 && face
->background
< 16)
581 char_attr
= (char_attr
& 0xff0f) + (face
->background
<< 4);
587 initialize_w32_display (struct terminal
*term
)
589 CONSOLE_SCREEN_BUFFER_INFO info
;
591 term
->rif
= 0; /* No window based redisplay on the console. */
592 term
->cursor_to_hook
= w32con_move_cursor
;
593 term
->raw_cursor_to_hook
= w32con_move_cursor
;
594 term
->clear_to_end_hook
= w32con_clear_to_end
;
595 term
->clear_frame_hook
= w32con_clear_frame
;
596 term
->clear_end_of_line_hook
= w32con_clear_end_of_line
;
597 term
->ins_del_lines_hook
= w32con_ins_del_lines
;
598 term
->insert_glyphs_hook
= w32con_insert_glyphs
;
599 term
->write_glyphs_hook
= w32con_write_glyphs
;
600 term
->delete_glyphs_hook
= w32con_delete_glyphs
;
601 term
->ring_bell_hook
= w32_sys_ring_bell
;
602 term
->reset_terminal_modes_hook
= w32con_reset_terminal_modes
;
603 term
->set_terminal_modes_hook
= w32con_set_terminal_modes
;
604 term
->set_terminal_window_hook
= w32con_set_terminal_window
;
605 term
->update_begin_hook
= w32con_update_begin
;
606 term
->update_end_hook
= w32con_update_end
;
608 term
->read_socket_hook
= w32_console_read_socket
;
609 term
->mouse_position_hook
= w32_console_mouse_position
;
611 /* The following are not used on the console. */
612 term
->frame_rehighlight_hook
= 0;
613 term
->frame_raise_lower_hook
= 0;
614 term
->set_vertical_scroll_bar_hook
= 0;
615 term
->condemn_scroll_bars_hook
= 0;
616 term
->redeem_scroll_bar_hook
= 0;
617 term
->judge_scroll_bars_hook
= 0;
618 term
->frame_up_to_date_hook
= 0;
620 /* Initialize interrupt_handle. */
623 /* Remember original console settings. */
624 keyboard_handle
= GetStdHandle (STD_INPUT_HANDLE
);
625 GetConsoleMode (keyboard_handle
, &prev_console_mode
);
627 prev_screen
= GetStdHandle (STD_OUTPUT_HANDLE
);
629 #ifdef USE_SEPARATE_SCREEN
630 cur_screen
= CreateConsoleScreenBuffer (GENERIC_READ
| GENERIC_WRITE
,
632 CONSOLE_TEXTMODE_BUFFER
,
635 if (cur_screen
== INVALID_HANDLE_VALUE
)
637 printf ("CreateConsoleScreenBuffer failed in ResetTerm\n");
638 printf ("LastError = 0x%lx\n", GetLastError ());
643 cur_screen
= prev_screen
;
644 GetConsoleCursorInfo (prev_screen
, &prev_console_cursor
);
647 /* Respect setting of LINES and COLUMNS environment variables. */
649 char * lines
= getenv ("LINES");
650 char * columns
= getenv ("COLUMNS");
652 if (lines
!= NULL
&& columns
!= NULL
)
654 SMALL_RECT new_win_dims
;
657 new_size
.X
= atoi (columns
);
658 new_size
.Y
= atoi (lines
);
660 GetConsoleScreenBufferInfo (cur_screen
, &info
);
662 /* Shrink the window first, so the buffer dimensions can be
663 reduced if necessary. */
664 new_win_dims
.Top
= 0;
665 new_win_dims
.Left
= 0;
666 new_win_dims
.Bottom
= min (new_size
.Y
, info
.dwSize
.Y
) - 1;
667 new_win_dims
.Right
= min (new_size
.X
, info
.dwSize
.X
) - 1;
668 SetConsoleWindowInfo (cur_screen
, TRUE
, &new_win_dims
);
670 SetConsoleScreenBufferSize (cur_screen
, new_size
);
672 /* Set the window size to match the buffer dimension. */
673 new_win_dims
.Top
= 0;
674 new_win_dims
.Left
= 0;
675 new_win_dims
.Bottom
= new_size
.Y
- 1;
676 new_win_dims
.Right
= new_size
.X
- 1;
677 SetConsoleWindowInfo (cur_screen
, TRUE
, &new_win_dims
);
681 GetConsoleScreenBufferInfo (cur_screen
, &info
);
683 char_attr_normal
= info
.wAttributes
;
685 /* Determine if the info returned by GetConsoleScreenBufferInfo
686 is realistic. Old MS Telnet servers used to only fill out
687 the dwSize portion, even modern one fill the whole struct with
688 garbage when using non-MS telnet clients. */
689 if ((w32_use_full_screen_buffer
690 && (info
.dwSize
.Y
< 20 || info
.dwSize
.Y
> 100
691 || info
.dwSize
.X
< 40 || info
.dwSize
.X
> 200))
692 || (!w32_use_full_screen_buffer
693 && (info
.srWindow
.Bottom
- info
.srWindow
.Top
< 20
694 || info
.srWindow
.Bottom
- info
.srWindow
.Top
> 100
695 || info
.srWindow
.Right
- info
.srWindow
.Left
< 40
696 || info
.srWindow
.Right
- info
.srWindow
.Left
> 100)))
698 FRAME_LINES (SELECTED_FRAME ()) = 25;
699 SET_FRAME_COLS (SELECTED_FRAME (), 80);
702 else if (w32_use_full_screen_buffer
)
704 FRAME_LINES (SELECTED_FRAME ()) = info
.dwSize
.Y
; /* lines per page */
705 SET_FRAME_COLS (SELECTED_FRAME (), info
.dwSize
.X
); /* characters per line */
709 /* Lines per page. Use buffer coords instead of buffer size. */
710 FRAME_LINES (SELECTED_FRAME ()) = 1 + info
.srWindow
.Bottom
-
712 /* Characters per line. Use buffer coords instead of buffer size. */
713 SET_FRAME_COLS (SELECTED_FRAME (), 1 + info
.srWindow
.Right
-
717 /* Setup w32_display_info structure for this frame. */
719 w32_initialize_display_info (build_string ("Console"));
724 DEFUN ("set-screen-color", Fset_screen_color
, Sset_screen_color
, 2, 2, 0,
725 doc
: /* Set screen colors. */)
726 (Lisp_Object foreground
, Lisp_Object background
)
728 char_attr_normal
= XFASTINT (foreground
) + (XFASTINT (background
) << 4);
734 DEFUN ("set-cursor-size", Fset_cursor_size
, Sset_cursor_size
, 1, 1, 0,
735 doc
: /* Set cursor size. */)
738 CONSOLE_CURSOR_INFO cci
;
739 cci
.dwSize
= XFASTINT (size
);
741 (void) SetConsoleCursorInfo (cur_screen
, &cci
);
747 syms_of_ntterm (void)
749 DEFVAR_BOOL ("w32-use-full-screen-buffer",
750 &w32_use_full_screen_buffer
,
751 doc
: /* Non-nil means make terminal frames use the full screen buffer dimensions.
752 This is desirable when running Emacs over telnet.
753 A value of nil means use the current console window dimensions; this
754 may be preferrable when working directly at the console with a large
755 scroll-back buffer. */);
756 w32_use_full_screen_buffer
= 0;
758 defsubr (&Sset_screen_color
);
759 defsubr (&Sset_cursor_size
);
760 defsubr (&Sset_message_beep
);
763 /* arch-tag: a390a07f-f661-42bc-aeb4-e6d8bf860337
764 (do not change this comment) */