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