merge trunk
[bpt/emacs.git] / src / w32console.c
1 /* Terminal hooks for GNU Emacs on the Microsoft Windows API.
2 Copyright (C) 1992, 1999, 2001-2012 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
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 3 of the License, or
9 (at your option) any later version.
10
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.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
18
19 /*
20 Tim Fleehart (apollo@online.com) 1-17-92
21 Geoff Voelker (voelker@cs.washington.edu) 9-12-93
22 */
23
24
25 #include <config.h>
26
27 #include <stdio.h>
28 #include <windows.h>
29
30 #include "lisp.h"
31 #include "character.h"
32 #include "coding.h"
33 #include "disptab.h"
34 #include "frame.h"
35 #include "window.h"
36 #include "termhooks.h"
37 #include "termchar.h"
38 #include "dispextern.h"
39 #include "w32heap.h" /* for os_subtype */
40 #include "w32inevt.h"
41
42 /* from window.c */
43 extern Lisp_Object Frecenter (Lisp_Object);
44
45 static void w32con_move_cursor (struct frame *f, int row, int col);
46 static void w32con_clear_to_end (struct frame *f);
47 static void w32con_clear_frame (struct frame *f);
48 static void w32con_clear_end_of_line (struct frame *f, int);
49 static void w32con_ins_del_lines (struct frame *f, int vpos, int n);
50 static void w32con_insert_glyphs (struct frame *f, struct glyph *start, int len);
51 static void w32con_write_glyphs (struct frame *f, struct glyph *string, int len);
52 static void w32con_delete_glyphs (struct frame *f, int n);
53 static void w32con_reset_terminal_modes (struct terminal *t);
54 static void w32con_set_terminal_modes (struct terminal *t);
55 static void w32con_set_terminal_window (struct frame *f, int size);
56 static void w32con_update_begin (struct frame * f);
57 static void w32con_update_end (struct frame * f);
58 static WORD w32_face_attributes (struct frame *f, int face_id);
59
60 static COORD cursor_coords;
61 static HANDLE prev_screen, cur_screen;
62 static WORD char_attr_normal;
63 static DWORD prev_console_mode;
64
65 #ifndef USE_SEPARATE_SCREEN
66 static CONSOLE_CURSOR_INFO prev_console_cursor;
67 #endif
68
69 HANDLE keyboard_handle;
70 int w32_console_unicode_input;
71
72
73 /* Setting this as the ctrl handler prevents emacs from being killed when
74 someone hits ^C in a 'suspended' session (child shell).
75 Also ignore Ctrl-Break signals. */
76
77 BOOL
78 ctrl_c_handler (unsigned long type)
79 {
80 /* Only ignore "interrupt" events when running interactively. */
81 return (!noninteractive
82 && (type == CTRL_C_EVENT || type == CTRL_BREAK_EVENT));
83 }
84
85
86 /* Move the cursor to (ROW, COL) on FRAME. */
87 static void
88 w32con_move_cursor (struct frame *f, int row, int col)
89 {
90 cursor_coords.X = col;
91 cursor_coords.Y = row;
92
93 /* TODO: for multi-tty support, cur_screen should be replaced with a
94 reference to the terminal for this frame. */
95 SetConsoleCursorPosition (cur_screen, cursor_coords);
96 }
97
98 /* Clear from cursor to end of screen. */
99 static void
100 w32con_clear_to_end (struct frame *f)
101 {
102 w32con_clear_end_of_line (f, FRAME_COLS (f) - 1);
103 w32con_ins_del_lines (f, cursor_coords.Y, FRAME_LINES (f) - cursor_coords.Y - 1);
104 }
105
106 /* Clear the frame. */
107 static void
108 w32con_clear_frame (struct frame *f)
109 {
110 COORD dest;
111 int n;
112 DWORD r;
113 CONSOLE_SCREEN_BUFFER_INFO info;
114
115 GetConsoleScreenBufferInfo (GetStdHandle (STD_OUTPUT_HANDLE), &info);
116
117 /* Remember that the screen buffer might be wider than the window. */
118 n = FRAME_LINES (f) * info.dwSize.X;
119 dest.X = dest.Y = 0;
120
121 FillConsoleOutputAttribute (cur_screen, char_attr_normal, n, dest, &r);
122 FillConsoleOutputCharacter (cur_screen, ' ', n, dest, &r);
123
124 w32con_move_cursor (f, 0, 0);
125 }
126
127
128 static struct glyph glyph_base[256];
129 static BOOL ceol_initialized = FALSE;
130
131 /* Clear from Cursor to end (what's "standout marker"?). */
132 static void
133 w32con_clear_end_of_line (struct frame *f, int end)
134 {
135 if (!ceol_initialized)
136 {
137 int i;
138 for (i = 0; i < 256; i++)
139 {
140 memcpy (&glyph_base[i], &space_glyph, sizeof (struct glyph));
141 }
142 ceol_initialized = TRUE;
143 }
144 w32con_write_glyphs (f, glyph_base, end - cursor_coords.X); /* fencepost ? */
145 }
146
147 /* Insert n lines at vpos. if n is negative delete -n lines. */
148 static void
149 w32con_ins_del_lines (struct frame *f, int vpos, int n)
150 {
151 int i, nb;
152 SMALL_RECT scroll;
153 SMALL_RECT clip;
154 COORD dest;
155 CHAR_INFO fill;
156
157 if (n < 0)
158 {
159 scroll.Top = vpos - n;
160 scroll.Bottom = FRAME_LINES (f);
161 dest.Y = vpos;
162 }
163 else
164 {
165 scroll.Top = vpos;
166 scroll.Bottom = FRAME_LINES (f) - n;
167 dest.Y = vpos + n;
168 }
169 clip.Top = clip.Left = scroll.Left = 0;
170 clip.Right = scroll.Right = FRAME_COLS (f);
171 clip.Bottom = FRAME_LINES (f);
172
173 dest.X = 0;
174
175 fill.Char.AsciiChar = 0x20;
176 fill.Attributes = char_attr_normal;
177
178 ScrollConsoleScreenBuffer (cur_screen, &scroll, &clip, dest, &fill);
179
180 /* Here we have to deal with a w32 console flake: If the scroll
181 region looks like abc and we scroll c to a and fill with d we get
182 cbd... if we scroll block c one line at a time to a, we get cdd...
183 Emacs expects cdd consistently... So we have to deal with that
184 here... (this also occurs scrolling the same way in the other
185 direction. */
186
187 if (n > 0)
188 {
189 if (scroll.Bottom < dest.Y)
190 {
191 for (i = scroll.Bottom; i < dest.Y; i++)
192 {
193 w32con_move_cursor (f, i, 0);
194 w32con_clear_end_of_line (f, FRAME_COLS (f));
195 }
196 }
197 }
198 else
199 {
200 nb = dest.Y + (scroll.Bottom - scroll.Top) + 1;
201
202 if (nb < scroll.Top)
203 {
204 for (i = nb; i < scroll.Top; i++)
205 {
206 w32con_move_cursor (f, i, 0);
207 w32con_clear_end_of_line (f, FRAME_COLS (f));
208 }
209 }
210 }
211
212 cursor_coords.X = 0;
213 cursor_coords.Y = vpos;
214 }
215
216 #undef LEFT
217 #undef RIGHT
218 #define LEFT 1
219 #define RIGHT 0
220
221 static void
222 scroll_line (struct frame *f, int dist, int direction)
223 {
224 /* The idea here is to implement a horizontal scroll in one line to
225 implement delete and half of insert. */
226 SMALL_RECT scroll, clip;
227 COORD dest;
228 CHAR_INFO fill;
229
230 clip.Top = scroll.Top = clip.Bottom = scroll.Bottom = cursor_coords.Y;
231 clip.Left = 0;
232 clip.Right = FRAME_COLS (f);
233
234 if (direction == LEFT)
235 {
236 scroll.Left = cursor_coords.X + dist;
237 scroll.Right = FRAME_COLS (f) - 1;
238 }
239 else
240 {
241 scroll.Left = cursor_coords.X;
242 scroll.Right = FRAME_COLS (f) - dist - 1;
243 }
244
245 dest.X = cursor_coords.X;
246 dest.Y = cursor_coords.Y;
247
248 fill.Char.AsciiChar = 0x20;
249 fill.Attributes = char_attr_normal;
250
251 ScrollConsoleScreenBuffer (cur_screen, &scroll, &clip, dest, &fill);
252 }
253
254
255 /* If start is zero insert blanks instead of a string at start ?. */
256 static void
257 w32con_insert_glyphs (struct frame *f, register struct glyph *start,
258 register int len)
259 {
260 scroll_line (f, len, RIGHT);
261
262 /* Move len chars to the right starting at cursor_coords, fill with blanks */
263 if (start)
264 {
265 /* Print the first len characters of start, cursor_coords.X adjusted
266 by write_glyphs. */
267
268 w32con_write_glyphs (f, start, len);
269 }
270 else
271 {
272 w32con_clear_end_of_line (f, cursor_coords.X + len);
273 }
274 }
275
276 static void
277 w32con_write_glyphs (struct frame *f, register struct glyph *string,
278 register int len)
279 {
280 DWORD r;
281 WORD char_attr;
282 unsigned char *conversion_buffer;
283 struct coding_system *coding;
284
285 if (len <= 0)
286 return;
287
288 /* If terminal_coding does any conversion, use it, otherwise use
289 safe_terminal_coding. We can't use CODING_REQUIRE_ENCODING here
290 because it always return 1 if the member src_multibyte is 1. */
291 coding = (FRAME_TERMINAL_CODING (f)->common_flags & CODING_REQUIRE_ENCODING_MASK
292 ? FRAME_TERMINAL_CODING (f) : &safe_terminal_coding);
293 /* The mode bit CODING_MODE_LAST_BLOCK should be set to 1 only at
294 the tail. */
295 coding->mode &= ~CODING_MODE_LAST_BLOCK;
296
297 while (len > 0)
298 {
299 /* Identify a run of glyphs with the same face. */
300 int face_id = string->face_id;
301 int n;
302
303 for (n = 1; n < len; ++n)
304 if (string[n].face_id != face_id)
305 break;
306
307 /* Turn appearance modes of the face of the run on. */
308 char_attr = w32_face_attributes (f, face_id);
309
310 if (n == len)
311 /* This is the last run. */
312 coding->mode |= CODING_MODE_LAST_BLOCK;
313 conversion_buffer = encode_terminal_code (string, n, coding);
314 if (coding->produced > 0)
315 {
316 /* Set the attribute for these characters. */
317 if (!FillConsoleOutputAttribute (cur_screen, char_attr,
318 coding->produced, cursor_coords,
319 &r))
320 {
321 printf ("Failed writing console attributes: %d\n",
322 GetLastError ());
323 fflush (stdout);
324 }
325
326 /* Write the characters. */
327 if (!WriteConsoleOutputCharacter (cur_screen, conversion_buffer,
328 coding->produced, cursor_coords,
329 &r))
330 {
331 printf ("Failed writing console characters: %d\n",
332 GetLastError ());
333 fflush (stdout);
334 }
335
336 cursor_coords.X += coding->produced;
337 w32con_move_cursor (f, cursor_coords.Y, cursor_coords.X);
338 }
339 len -= n;
340 string += n;
341 }
342 }
343
344 /* Used for mouse highlight. */
345 static void
346 w32con_write_glyphs_with_face (struct frame *f, register int x, register int y,
347 register struct glyph *string, register int len,
348 register int face_id)
349 {
350 unsigned char *conversion_buffer;
351 struct coding_system *coding;
352
353 if (len <= 0)
354 return;
355
356 /* If terminal_coding does any conversion, use it, otherwise use
357 safe_terminal_coding. We can't use CODING_REQUIRE_ENCODING here
358 because it always return 1 if the member src_multibyte is 1. */
359 coding = (FRAME_TERMINAL_CODING (f)->common_flags & CODING_REQUIRE_ENCODING_MASK
360 ? FRAME_TERMINAL_CODING (f) : &safe_terminal_coding);
361 /* We are going to write the entire block of glyphs in one go, as
362 they all have the same face. So this _is_ the last block. */
363 coding->mode |= CODING_MODE_LAST_BLOCK;
364
365 conversion_buffer = encode_terminal_code (string, len, coding);
366 if (coding->produced > 0)
367 {
368 DWORD filled, written;
369 /* Compute the character attributes corresponding to the face. */
370 DWORD char_attr = w32_face_attributes (f, face_id);
371 COORD start_coords;
372
373 start_coords.X = x;
374 start_coords.Y = y;
375 /* Set the attribute for these characters. */
376 if (!FillConsoleOutputAttribute (cur_screen, char_attr,
377 coding->produced, start_coords,
378 &filled))
379 DebPrint (("Failed writing console attributes: %d\n", GetLastError ()));
380 else
381 {
382 /* Write the characters. */
383 if (!WriteConsoleOutputCharacter (cur_screen, conversion_buffer,
384 filled, start_coords, &written))
385 DebPrint (("Failed writing console characters: %d\n",
386 GetLastError ()));
387 }
388 }
389 }
390
391 /* Implementation of draw_row_with_mouse_face for W32 console. */
392 void
393 tty_draw_row_with_mouse_face (struct window *w, struct glyph_row *row,
394 int start_hpos, int end_hpos,
395 enum draw_glyphs_face draw)
396 {
397 int nglyphs = end_hpos - start_hpos;
398 struct frame *f = XFRAME (WINDOW_FRAME (w));
399 struct tty_display_info *tty = FRAME_TTY (f);
400 int face_id = tty->mouse_highlight.mouse_face_face_id;
401 int pos_x, pos_y;
402
403 if (end_hpos >= row->used[TEXT_AREA])
404 nglyphs = row->used[TEXT_AREA] - start_hpos;
405
406 pos_y = row->y + WINDOW_TOP_EDGE_Y (w);
407 pos_x = row->used[LEFT_MARGIN_AREA] + start_hpos + WINDOW_LEFT_EDGE_X (w);
408
409 if (draw == DRAW_MOUSE_FACE)
410 w32con_write_glyphs_with_face (f, pos_x, pos_y,
411 row->glyphs[TEXT_AREA] + start_hpos,
412 nglyphs, face_id);
413 else if (draw == DRAW_NORMAL_TEXT)
414 {
415 COORD save_coords = cursor_coords;
416
417 w32con_move_cursor (f, pos_y, pos_x);
418 write_glyphs (f, row->glyphs[TEXT_AREA] + start_hpos, nglyphs);
419 w32con_move_cursor (f, save_coords.Y, save_coords.X);
420 }
421 }
422
423 static void
424 w32con_delete_glyphs (struct frame *f, int n)
425 {
426 /* delete chars means scroll chars from cursor_coords.X + n to
427 cursor_coords.X, anything beyond the edge of the screen should
428 come out empty... */
429
430 scroll_line (f, n, LEFT);
431 }
432
433 static unsigned int sound_type = 0xFFFFFFFF;
434 #define MB_EMACS_SILENT (0xFFFFFFFF - 1)
435
436 void
437 w32_sys_ring_bell (struct frame *f)
438 {
439 if (sound_type == 0xFFFFFFFF)
440 {
441 Beep (666, 100);
442 }
443 else if (sound_type == MB_EMACS_SILENT)
444 {
445 /* Do nothing. */
446 }
447 else
448 MessageBeep (sound_type);
449 }
450
451 DEFUN ("set-message-beep", Fset_message_beep, Sset_message_beep, 1, 1, 0,
452 doc: /* Set the sound generated when the bell is rung.
453 SOUND is 'asterisk, 'exclamation, 'hand, 'question, 'ok, or 'silent
454 to use the corresponding system sound for the bell. The 'silent sound
455 prevents Emacs from making any sound at all.
456 SOUND is nil to use the normal beep. */)
457 (Lisp_Object sound)
458 {
459 CHECK_SYMBOL (sound);
460
461 if (NILP (sound))
462 sound_type = 0xFFFFFFFF;
463 else if (EQ (sound, intern ("asterisk")))
464 sound_type = MB_ICONASTERISK;
465 else if (EQ (sound, intern ("exclamation")))
466 sound_type = MB_ICONEXCLAMATION;
467 else if (EQ (sound, intern ("hand")))
468 sound_type = MB_ICONHAND;
469 else if (EQ (sound, intern ("question")))
470 sound_type = MB_ICONQUESTION;
471 else if (EQ (sound, intern ("ok")))
472 sound_type = MB_OK;
473 else if (EQ (sound, intern ("silent")))
474 sound_type = MB_EMACS_SILENT;
475 else
476 sound_type = 0xFFFFFFFF;
477
478 return sound;
479 }
480
481 static void
482 w32con_reset_terminal_modes (struct terminal *t)
483 {
484 COORD dest;
485 CONSOLE_SCREEN_BUFFER_INFO info;
486 int n;
487 DWORD r;
488
489 /* Clear the complete screen buffer. This is required because Emacs
490 sets the cursor position to the top of the buffer, but there might
491 be other output below the bottom of the Emacs frame if the screen buffer
492 is larger than the window size. */
493 GetConsoleScreenBufferInfo (cur_screen, &info);
494 dest.X = 0;
495 dest.Y = 0;
496 n = info.dwSize.X * info.dwSize.Y;
497
498 FillConsoleOutputAttribute (cur_screen, char_attr_normal, n, dest, &r);
499 FillConsoleOutputCharacter (cur_screen, ' ', n, dest, &r);
500 /* Now that the screen is clear, put the cursor at the top. */
501 SetConsoleCursorPosition (cur_screen, dest);
502
503 #ifdef USE_SEPARATE_SCREEN
504 SetConsoleActiveScreenBuffer (prev_screen);
505 #else
506 SetConsoleCursorInfo (prev_screen, &prev_console_cursor);
507 #endif
508
509 SetConsoleMode (keyboard_handle, prev_console_mode);
510 }
511
512 static void
513 w32con_set_terminal_modes (struct terminal *t)
514 {
515 CONSOLE_CURSOR_INFO cci;
516
517 /* make cursor big and visible (100 on Windows 95 makes it disappear) */
518 cci.dwSize = 99;
519 cci.bVisible = TRUE;
520 (void) SetConsoleCursorInfo (cur_screen, &cci);
521
522 SetConsoleActiveScreenBuffer (cur_screen);
523
524 SetConsoleMode (keyboard_handle, ENABLE_MOUSE_INPUT | ENABLE_WINDOW_INPUT);
525
526 /* Initialize input mode: interrupt_input off, no flow control, allow
527 8 bit character input, standard quit char. */
528 Fset_input_mode (Qnil, Qnil, make_number (2), Qnil);
529 }
530
531 /* hmmm... perhaps these let us bracket screen changes so that we can flush
532 clumps rather than one-character-at-a-time...
533
534 we'll start with not moving the cursor while an update is in progress. */
535 static void
536 w32con_update_begin (struct frame * f)
537 {
538 }
539
540 static void
541 w32con_update_end (struct frame * f)
542 {
543 SetConsoleCursorPosition (cur_screen, cursor_coords);
544 }
545
546 static void
547 w32con_set_terminal_window (struct frame *f, int size)
548 {
549 }
550
551 /***********************************************************************
552 stubs from termcap.c
553 ***********************************************************************/
554
555 void
556 sys_tputs (char *str, int nlines, int (*outfun) (int))
557 {
558 }
559
560 char *
561 sys_tgetstr (char *cap, char **area)
562 {
563 return NULL;
564 }
565
566
567 /***********************************************************************
568 stubs from cm.c
569 ***********************************************************************/
570
571 struct tty_display_info *current_tty = NULL;
572 int cost = 0;
573
574 int
575 evalcost (int c)
576 {
577 return c;
578 }
579
580 int
581 cmputc (int c)
582 {
583 return c;
584 }
585
586 void
587 cmcheckmagic (struct tty_display_info *tty)
588 {
589 }
590
591 void
592 cmcostinit (struct tty_display_info *tty)
593 {
594 }
595
596 void
597 cmgoto (struct tty_display_info *tty, int row, int col)
598 {
599 }
600
601 void
602 Wcm_clear (struct tty_display_info *tty)
603 {
604 }
605
606
607 /***********************************************************************
608 Faces
609 ***********************************************************************/
610
611
612 /* Turn appearances of face FACE_ID on tty frame F on. */
613
614 static WORD
615 w32_face_attributes (struct frame *f, int face_id)
616 {
617 WORD char_attr;
618 struct face *face = FACE_FROM_ID (f, face_id);
619
620 eassert (face != NULL);
621
622 char_attr = char_attr_normal;
623
624 /* Reverse the default color if requested. If background and
625 foreground are specified, then they have been reversed already. */
626 if (face->tty_reverse_p)
627 char_attr = (char_attr & 0xff00) + ((char_attr & 0x000f) << 4)
628 + ((char_attr & 0x00f0) >> 4);
629
630 /* Before the terminal is properly initialized, all colors map to 0.
631 Don't try to resolve them. */
632 if (NILP (Vtty_defined_color_alist))
633 return char_attr;
634
635 /* Colors should be in the range 0...15 unless they are one of
636 FACE_TTY_DEFAULT_COLOR, FACE_TTY_DEFAULT_FG_COLOR or
637 FACE_TTY_DEFAULT_BG_COLOR. Other out of range colors are
638 invalid, so it is better to use the default color if they ever
639 get through to here. */
640 if (face->foreground >= 0 && face->foreground < 16)
641 char_attr = (char_attr & 0xfff0) + face->foreground;
642
643 if (face->background >= 0 && face->background < 16)
644 char_attr = (char_attr & 0xff0f) + (face->background << 4);
645
646 return char_attr;
647 }
648
649 void
650 initialize_w32_display (struct terminal *term)
651 {
652 CONSOLE_SCREEN_BUFFER_INFO info;
653 Mouse_HLInfo *hlinfo;
654
655 term->rif = 0; /* No window based redisplay on the console. */
656 term->cursor_to_hook = w32con_move_cursor;
657 term->raw_cursor_to_hook = w32con_move_cursor;
658 term->clear_to_end_hook = w32con_clear_to_end;
659 term->clear_frame_hook = w32con_clear_frame;
660 term->clear_end_of_line_hook = w32con_clear_end_of_line;
661 term->ins_del_lines_hook = w32con_ins_del_lines;
662 term->insert_glyphs_hook = w32con_insert_glyphs;
663 term->write_glyphs_hook = w32con_write_glyphs;
664 term->delete_glyphs_hook = w32con_delete_glyphs;
665 term->ring_bell_hook = w32_sys_ring_bell;
666 term->reset_terminal_modes_hook = w32con_reset_terminal_modes;
667 term->set_terminal_modes_hook = w32con_set_terminal_modes;
668 term->set_terminal_window_hook = w32con_set_terminal_window;
669 term->update_begin_hook = w32con_update_begin;
670 term->update_end_hook = w32con_update_end;
671
672 term->read_socket_hook = w32_console_read_socket;
673 term->mouse_position_hook = w32_console_mouse_position;
674
675 /* The following are not used on the console. */
676 term->frame_rehighlight_hook = 0;
677 term->frame_raise_lower_hook = 0;
678 term->set_vertical_scroll_bar_hook = 0;
679 term->condemn_scroll_bars_hook = 0;
680 term->redeem_scroll_bar_hook = 0;
681 term->judge_scroll_bars_hook = 0;
682 term->frame_up_to_date_hook = 0;
683
684 /* Initialize the mouse-highlight data. */
685 hlinfo = &term->display_info.tty->mouse_highlight;
686 hlinfo->mouse_face_beg_row = hlinfo->mouse_face_beg_col = -1;
687 hlinfo->mouse_face_end_row = hlinfo->mouse_face_end_col = -1;
688 hlinfo->mouse_face_face_id = DEFAULT_FACE_ID;
689 hlinfo->mouse_face_mouse_frame = NULL;
690 hlinfo->mouse_face_window = Qnil;
691 hlinfo->mouse_face_hidden = 0;
692
693 /* Initialize interrupt_handle. */
694 init_crit ();
695
696 /* Remember original console settings. */
697 keyboard_handle = GetStdHandle (STD_INPUT_HANDLE);
698 GetConsoleMode (keyboard_handle, &prev_console_mode);
699
700 prev_screen = GetStdHandle (STD_OUTPUT_HANDLE);
701
702 #ifdef USE_SEPARATE_SCREEN
703 cur_screen = CreateConsoleScreenBuffer (GENERIC_READ | GENERIC_WRITE,
704 0, NULL,
705 CONSOLE_TEXTMODE_BUFFER,
706 NULL);
707
708 if (cur_screen == INVALID_HANDLE_VALUE)
709 {
710 printf ("CreateConsoleScreenBuffer failed in ResetTerm\n");
711 printf ("LastError = 0x%lx\n", GetLastError ());
712 fflush (stdout);
713 exit (0);
714 }
715 #else
716 cur_screen = prev_screen;
717 GetConsoleCursorInfo (prev_screen, &prev_console_cursor);
718 #endif
719
720 /* Respect setting of LINES and COLUMNS environment variables. */
721 {
722 char * lines = getenv ("LINES");
723 char * columns = getenv ("COLUMNS");
724
725 if (lines != NULL && columns != NULL)
726 {
727 SMALL_RECT new_win_dims;
728 COORD new_size;
729
730 new_size.X = atoi (columns);
731 new_size.Y = atoi (lines);
732
733 GetConsoleScreenBufferInfo (cur_screen, &info);
734
735 /* Shrink the window first, so the buffer dimensions can be
736 reduced if necessary. */
737 new_win_dims.Top = 0;
738 new_win_dims.Left = 0;
739 new_win_dims.Bottom = min (new_size.Y, info.dwSize.Y) - 1;
740 new_win_dims.Right = min (new_size.X, info.dwSize.X) - 1;
741 SetConsoleWindowInfo (cur_screen, TRUE, &new_win_dims);
742
743 SetConsoleScreenBufferSize (cur_screen, new_size);
744
745 /* Set the window size to match the buffer dimension. */
746 new_win_dims.Top = 0;
747 new_win_dims.Left = 0;
748 new_win_dims.Bottom = new_size.Y - 1;
749 new_win_dims.Right = new_size.X - 1;
750 SetConsoleWindowInfo (cur_screen, TRUE, &new_win_dims);
751 }
752 }
753
754 GetConsoleScreenBufferInfo (cur_screen, &info);
755
756 char_attr_normal = info.wAttributes;
757
758 /* Determine if the info returned by GetConsoleScreenBufferInfo
759 is realistic. Old MS Telnet servers used to only fill out
760 the dwSize portion, even modern one fill the whole struct with
761 garbage when using non-MS telnet clients. */
762 if ((w32_use_full_screen_buffer
763 && (info.dwSize.Y < 20 || info.dwSize.Y > 100
764 || info.dwSize.X < 40 || info.dwSize.X > 200))
765 || (!w32_use_full_screen_buffer
766 && (info.srWindow.Bottom - info.srWindow.Top < 20
767 || info.srWindow.Bottom - info.srWindow.Top > 100
768 || info.srWindow.Right - info.srWindow.Left < 40
769 || info.srWindow.Right - info.srWindow.Left > 100)))
770 {
771 FRAME_LINES (SELECTED_FRAME ()) = 25;
772 SET_FRAME_COLS (SELECTED_FRAME (), 80);
773 }
774
775 else if (w32_use_full_screen_buffer)
776 {
777 FRAME_LINES (SELECTED_FRAME ()) = info.dwSize.Y; /* lines per page */
778 SET_FRAME_COLS (SELECTED_FRAME (), info.dwSize.X); /* characters per line */
779 }
780 else
781 {
782 /* Lines per page. Use buffer coords instead of buffer size. */
783 FRAME_LINES (SELECTED_FRAME ()) = 1 + info.srWindow.Bottom -
784 info.srWindow.Top;
785 /* Characters per line. Use buffer coords instead of buffer size. */
786 SET_FRAME_COLS (SELECTED_FRAME (), 1 + info.srWindow.Right -
787 info.srWindow.Left);
788 }
789
790 if (os_subtype == OS_NT)
791 w32_console_unicode_input = 1;
792 else
793 w32_console_unicode_input = 0;
794
795 /* Setup w32_display_info structure for this frame. */
796
797 w32_initialize_display_info (build_string ("Console"));
798
799 }
800
801
802 DEFUN ("set-screen-color", Fset_screen_color, Sset_screen_color, 2, 2, 0,
803 doc: /* Set screen foreground and background colors.
804
805 Arguments should be indices between 0 and 15, see w32console.el. */)
806 (Lisp_Object foreground, Lisp_Object background)
807 {
808 char_attr_normal = XFASTINT (foreground) + (XFASTINT (background) << 4);
809
810 Frecenter (Qnil);
811 return Qt;
812 }
813
814 DEFUN ("get-screen-color", Fget_screen_color, Sget_screen_color, 0, 0, 0,
815 doc: /* Get color indices of the current screen foreground and background.
816
817 The colors are returned as a list of 2 indices (FOREGROUND BACKGROUND).
818 See w32console.el and `tty-defined-color-alist' for mapping of indices
819 to colors. */)
820 (void)
821 {
822 return Fcons (make_number (char_attr_normal & 0x000f),
823 Fcons (make_number ((char_attr_normal >> 4) & 0x000f), Qnil));
824 }
825
826 DEFUN ("set-cursor-size", Fset_cursor_size, Sset_cursor_size, 1, 1, 0,
827 doc: /* Set cursor size. */)
828 (Lisp_Object size)
829 {
830 CONSOLE_CURSOR_INFO cci;
831 cci.dwSize = XFASTINT (size);
832 cci.bVisible = TRUE;
833 (void) SetConsoleCursorInfo (cur_screen, &cci);
834
835 return Qt;
836 }
837
838 void
839 syms_of_ntterm (void)
840 {
841 DEFVAR_BOOL ("w32-use-full-screen-buffer",
842 w32_use_full_screen_buffer,
843 doc: /* Non-nil means make terminal frames use the full screen buffer dimensions.
844 This is desirable when running Emacs over telnet.
845 A value of nil means use the current console window dimensions; this
846 may be preferable when working directly at the console with a large
847 scroll-back buffer. */);
848 w32_use_full_screen_buffer = 0;
849
850 defsubr (&Sset_screen_color);
851 defsubr (&Sget_screen_color);
852 defsubr (&Sset_cursor_size);
853 defsubr (&Sset_message_beep);
854 }