Update copyright notices for 2013.
[emacs.git] / src / w32console.c
blobccc79754164420939444a34b04f6e04089ed3ea8
1 /* Terminal hooks for GNU Emacs on the Microsoft Windows API.
2 Copyright (C) 1992, 1999, 2001-2013 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 3 of the License, or
9 (at your option) any later version.
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. If not, see <http://www.gnu.org/licenses/>. */
20 Tim Fleehart (apollo@online.com) 1-17-92
21 Geoff Voelker (voelker@cs.washington.edu) 9-12-93
25 #include <config.h>
27 #include <stdio.h>
28 #include <windows.h>
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 "w32term.h"
40 #include "w32common.h" /* for os_subtype */
41 #include "w32inevt.h"
43 /* from window.c */
44 extern Lisp_Object Frecenter (Lisp_Object);
46 static void w32con_move_cursor (struct frame *f, int row, int col);
47 static void w32con_clear_to_end (struct frame *f);
48 static void w32con_clear_frame (struct frame *f);
49 static void w32con_clear_end_of_line (struct frame *f, int);
50 static void w32con_ins_del_lines (struct frame *f, int vpos, int n);
51 static void w32con_insert_glyphs (struct frame *f, struct glyph *start, int len);
52 static void w32con_write_glyphs (struct frame *f, struct glyph *string, int len);
53 static void w32con_delete_glyphs (struct frame *f, int n);
54 static void w32con_reset_terminal_modes (struct terminal *t);
55 static void w32con_set_terminal_modes (struct terminal *t);
56 static void w32con_set_terminal_window (struct frame *f, int size);
57 static void w32con_update_begin (struct frame * f);
58 static void w32con_update_end (struct frame * f);
59 static WORD w32_face_attributes (struct frame *f, int face_id);
61 static COORD cursor_coords;
62 static HANDLE prev_screen, cur_screen;
63 static WORD char_attr_normal;
64 static DWORD prev_console_mode;
66 #ifndef USE_SEPARATE_SCREEN
67 static CONSOLE_CURSOR_INFO prev_console_cursor;
68 #endif
70 HANDLE keyboard_handle;
71 int w32_console_unicode_input;
74 /* Setting this as the ctrl handler prevents emacs from being killed when
75 someone hits ^C in a 'suspended' session (child shell).
76 Also ignore Ctrl-Break signals. */
78 BOOL
79 ctrl_c_handler (unsigned long type)
81 /* Only ignore "interrupt" events when running interactively. */
82 return (!noninteractive
83 && (type == CTRL_C_EVENT || type == CTRL_BREAK_EVENT));
87 /* Move the cursor to (ROW, COL) on FRAME. */
88 static void
89 w32con_move_cursor (struct frame *f, int row, int col)
91 cursor_coords.X = col;
92 cursor_coords.Y = row;
94 /* TODO: for multi-tty support, cur_screen should be replaced with a
95 reference to the terminal for this frame. */
96 SetConsoleCursorPosition (cur_screen, cursor_coords);
99 /* Clear from cursor to end of screen. */
100 static void
101 w32con_clear_to_end (struct frame *f)
103 w32con_clear_end_of_line (f, FRAME_COLS (f) - 1);
104 w32con_ins_del_lines (f, cursor_coords.Y, FRAME_LINES (f) - cursor_coords.Y - 1);
107 /* Clear the frame. */
108 static void
109 w32con_clear_frame (struct frame *f)
111 COORD dest;
112 int n;
113 DWORD r;
114 CONSOLE_SCREEN_BUFFER_INFO info;
116 GetConsoleScreenBufferInfo (GetStdHandle (STD_OUTPUT_HANDLE), &info);
118 /* Remember that the screen buffer might be wider than the window. */
119 n = FRAME_LINES (f) * info.dwSize.X;
120 dest.X = dest.Y = 0;
122 FillConsoleOutputAttribute (cur_screen, char_attr_normal, n, dest, &r);
123 FillConsoleOutputCharacter (cur_screen, ' ', n, dest, &r);
125 w32con_move_cursor (f, 0, 0);
129 static struct glyph glyph_base[256];
130 static BOOL ceol_initialized = FALSE;
132 /* Clear from Cursor to end (what's "standout marker"?). */
133 static void
134 w32con_clear_end_of_line (struct frame *f, int end)
136 if (!ceol_initialized)
138 int i;
139 for (i = 0; i < 256; i++)
141 memcpy (&glyph_base[i], &space_glyph, sizeof (struct glyph));
143 ceol_initialized = TRUE;
145 w32con_write_glyphs (f, glyph_base, end - cursor_coords.X); /* fencepost ? */
148 /* Insert n lines at vpos. if n is negative delete -n lines. */
149 static void
150 w32con_ins_del_lines (struct frame *f, int vpos, int n)
152 int i, nb;
153 SMALL_RECT scroll;
154 SMALL_RECT clip;
155 COORD dest;
156 CHAR_INFO fill;
158 if (n < 0)
160 scroll.Top = vpos - n;
161 scroll.Bottom = FRAME_LINES (f);
162 dest.Y = vpos;
164 else
166 scroll.Top = vpos;
167 scroll.Bottom = FRAME_LINES (f) - n;
168 dest.Y = vpos + n;
170 clip.Top = clip.Left = scroll.Left = 0;
171 clip.Right = scroll.Right = FRAME_COLS (f);
172 clip.Bottom = FRAME_LINES (f);
174 dest.X = 0;
176 fill.Char.AsciiChar = 0x20;
177 fill.Attributes = char_attr_normal;
179 ScrollConsoleScreenBuffer (cur_screen, &scroll, &clip, dest, &fill);
181 /* Here we have to deal with a w32 console flake: If the scroll
182 region looks like abc and we scroll c to a and fill with d we get
183 cbd... if we scroll block c one line at a time to a, we get cdd...
184 Emacs expects cdd consistently... So we have to deal with that
185 here... (this also occurs scrolling the same way in the other
186 direction. */
188 if (n > 0)
190 if (scroll.Bottom < dest.Y)
192 for (i = scroll.Bottom; i < dest.Y; i++)
194 w32con_move_cursor (f, i, 0);
195 w32con_clear_end_of_line (f, FRAME_COLS (f));
199 else
201 nb = dest.Y + (scroll.Bottom - scroll.Top) + 1;
203 if (nb < scroll.Top)
205 for (i = nb; i < scroll.Top; i++)
207 w32con_move_cursor (f, i, 0);
208 w32con_clear_end_of_line (f, FRAME_COLS (f));
213 cursor_coords.X = 0;
214 cursor_coords.Y = vpos;
217 #undef LEFT
218 #undef RIGHT
219 #define LEFT 1
220 #define RIGHT 0
222 static void
223 scroll_line (struct frame *f, int dist, int direction)
225 /* The idea here is to implement a horizontal scroll in one line to
226 implement delete and half of insert. */
227 SMALL_RECT scroll, clip;
228 COORD dest;
229 CHAR_INFO fill;
231 clip.Top = scroll.Top = clip.Bottom = scroll.Bottom = cursor_coords.Y;
232 clip.Left = 0;
233 clip.Right = FRAME_COLS (f);
235 if (direction == LEFT)
237 scroll.Left = cursor_coords.X + dist;
238 scroll.Right = FRAME_COLS (f) - 1;
240 else
242 scroll.Left = cursor_coords.X;
243 scroll.Right = FRAME_COLS (f) - dist - 1;
246 dest.X = cursor_coords.X;
247 dest.Y = cursor_coords.Y;
249 fill.Char.AsciiChar = 0x20;
250 fill.Attributes = char_attr_normal;
252 ScrollConsoleScreenBuffer (cur_screen, &scroll, &clip, dest, &fill);
256 /* If start is zero insert blanks instead of a string at start ?. */
257 static void
258 w32con_insert_glyphs (struct frame *f, register struct glyph *start,
259 register int len)
261 scroll_line (f, len, RIGHT);
263 /* Move len chars to the right starting at cursor_coords, fill with blanks */
264 if (start)
266 /* Print the first len characters of start, cursor_coords.X adjusted
267 by write_glyphs. */
269 w32con_write_glyphs (f, start, len);
271 else
273 w32con_clear_end_of_line (f, cursor_coords.X + len);
277 static void
278 w32con_write_glyphs (struct frame *f, register struct glyph *string,
279 register int len)
281 DWORD r;
282 WORD char_attr;
283 unsigned char *conversion_buffer;
284 struct coding_system *coding;
286 if (len <= 0)
287 return;
289 /* If terminal_coding does any conversion, use it, otherwise use
290 safe_terminal_coding. We can't use CODING_REQUIRE_ENCODING here
291 because it always return 1 if the member src_multibyte is 1. */
292 coding = (FRAME_TERMINAL_CODING (f)->common_flags & CODING_REQUIRE_ENCODING_MASK
293 ? FRAME_TERMINAL_CODING (f) : &safe_terminal_coding);
294 /* The mode bit CODING_MODE_LAST_BLOCK should be set to 1 only at
295 the tail. */
296 coding->mode &= ~CODING_MODE_LAST_BLOCK;
298 while (len > 0)
300 /* Identify a run of glyphs with the same face. */
301 int face_id = string->face_id;
302 int n;
304 for (n = 1; n < len; ++n)
305 if (string[n].face_id != face_id)
306 break;
308 /* Turn appearance modes of the face of the run on. */
309 char_attr = w32_face_attributes (f, face_id);
311 if (n == len)
312 /* This is the last run. */
313 coding->mode |= CODING_MODE_LAST_BLOCK;
314 conversion_buffer = encode_terminal_code (string, n, coding);
315 if (coding->produced > 0)
317 /* Set the attribute for these characters. */
318 if (!FillConsoleOutputAttribute (cur_screen, char_attr,
319 coding->produced, cursor_coords,
320 &r))
322 printf ("Failed writing console attributes: %d\n",
323 GetLastError ());
324 fflush (stdout);
327 /* Write the characters. */
328 if (!WriteConsoleOutputCharacter (cur_screen, conversion_buffer,
329 coding->produced, cursor_coords,
330 &r))
332 printf ("Failed writing console characters: %d\n",
333 GetLastError ());
334 fflush (stdout);
337 cursor_coords.X += coding->produced;
338 w32con_move_cursor (f, cursor_coords.Y, cursor_coords.X);
340 len -= n;
341 string += n;
345 /* Used for mouse highlight. */
346 static void
347 w32con_write_glyphs_with_face (struct frame *f, register int x, register int y,
348 register struct glyph *string, register int len,
349 register int face_id)
351 unsigned char *conversion_buffer;
352 struct coding_system *coding;
354 if (len <= 0)
355 return;
357 /* If terminal_coding does any conversion, use it, otherwise use
358 safe_terminal_coding. We can't use CODING_REQUIRE_ENCODING here
359 because it always return 1 if the member src_multibyte is 1. */
360 coding = (FRAME_TERMINAL_CODING (f)->common_flags & CODING_REQUIRE_ENCODING_MASK
361 ? FRAME_TERMINAL_CODING (f) : &safe_terminal_coding);
362 /* We are going to write the entire block of glyphs in one go, as
363 they all have the same face. So this _is_ the last block. */
364 coding->mode |= CODING_MODE_LAST_BLOCK;
366 conversion_buffer = encode_terminal_code (string, len, coding);
367 if (coding->produced > 0)
369 DWORD filled, written;
370 /* Compute the character attributes corresponding to the face. */
371 DWORD char_attr = w32_face_attributes (f, face_id);
372 COORD start_coords;
374 start_coords.X = x;
375 start_coords.Y = y;
376 /* Set the attribute for these characters. */
377 if (!FillConsoleOutputAttribute (cur_screen, char_attr,
378 coding->produced, start_coords,
379 &filled))
380 DebPrint (("Failed writing console attributes: %d\n", GetLastError ()));
381 else
383 /* Write the characters. */
384 if (!WriteConsoleOutputCharacter (cur_screen, conversion_buffer,
385 filled, start_coords, &written))
386 DebPrint (("Failed writing console characters: %d\n",
387 GetLastError ()));
392 /* Implementation of draw_row_with_mouse_face for W32 console. */
393 void
394 tty_draw_row_with_mouse_face (struct window *w, struct glyph_row *row,
395 int start_hpos, int end_hpos,
396 enum draw_glyphs_face draw)
398 int nglyphs = end_hpos - start_hpos;
399 struct frame *f = XFRAME (WINDOW_FRAME (w));
400 struct tty_display_info *tty = FRAME_TTY (f);
401 int face_id = tty->mouse_highlight.mouse_face_face_id;
402 int pos_x, pos_y;
404 if (end_hpos >= row->used[TEXT_AREA])
405 nglyphs = row->used[TEXT_AREA] - start_hpos;
407 pos_y = row->y + WINDOW_TOP_EDGE_Y (w);
408 pos_x = row->used[LEFT_MARGIN_AREA] + start_hpos + WINDOW_LEFT_EDGE_X (w);
410 if (draw == DRAW_MOUSE_FACE)
411 w32con_write_glyphs_with_face (f, pos_x, pos_y,
412 row->glyphs[TEXT_AREA] + start_hpos,
413 nglyphs, face_id);
414 else if (draw == DRAW_NORMAL_TEXT)
416 COORD save_coords = cursor_coords;
418 w32con_move_cursor (f, pos_y, pos_x);
419 write_glyphs (f, row->glyphs[TEXT_AREA] + start_hpos, nglyphs);
420 w32con_move_cursor (f, save_coords.Y, save_coords.X);
424 static void
425 w32con_delete_glyphs (struct frame *f, int n)
427 /* delete chars means scroll chars from cursor_coords.X + n to
428 cursor_coords.X, anything beyond the edge of the screen should
429 come out empty... */
431 scroll_line (f, n, LEFT);
435 static void
436 w32con_reset_terminal_modes (struct terminal *t)
438 COORD dest;
439 CONSOLE_SCREEN_BUFFER_INFO info;
440 int n;
441 DWORD r;
443 /* Clear the complete screen buffer. This is required because Emacs
444 sets the cursor position to the top of the buffer, but there might
445 be other output below the bottom of the Emacs frame if the screen buffer
446 is larger than the window size. */
447 GetConsoleScreenBufferInfo (cur_screen, &info);
448 dest.X = 0;
449 dest.Y = 0;
450 n = info.dwSize.X * info.dwSize.Y;
452 FillConsoleOutputAttribute (cur_screen, char_attr_normal, n, dest, &r);
453 FillConsoleOutputCharacter (cur_screen, ' ', n, dest, &r);
454 /* Now that the screen is clear, put the cursor at the top. */
455 SetConsoleCursorPosition (cur_screen, dest);
457 #ifdef USE_SEPARATE_SCREEN
458 SetConsoleActiveScreenBuffer (prev_screen);
459 #else
460 SetConsoleCursorInfo (prev_screen, &prev_console_cursor);
461 #endif
463 SetConsoleMode (keyboard_handle, prev_console_mode);
466 static void
467 w32con_set_terminal_modes (struct terminal *t)
469 CONSOLE_CURSOR_INFO cci;
471 /* make cursor big and visible (100 on Windows 95 makes it disappear) */
472 cci.dwSize = 99;
473 cci.bVisible = TRUE;
474 (void) SetConsoleCursorInfo (cur_screen, &cci);
476 SetConsoleActiveScreenBuffer (cur_screen);
478 SetConsoleMode (keyboard_handle, ENABLE_MOUSE_INPUT | ENABLE_WINDOW_INPUT);
480 /* Initialize input mode: interrupt_input off, no flow control, allow
481 8 bit character input, standard quit char. */
482 Fset_input_mode (Qnil, Qnil, make_number (2), Qnil);
485 /* hmmm... perhaps these let us bracket screen changes so that we can flush
486 clumps rather than one-character-at-a-time...
488 we'll start with not moving the cursor while an update is in progress. */
489 static void
490 w32con_update_begin (struct frame * f)
494 static void
495 w32con_update_end (struct frame * f)
497 SetConsoleCursorPosition (cur_screen, cursor_coords);
500 static void
501 w32con_set_terminal_window (struct frame *f, int size)
505 /***********************************************************************
506 stubs from termcap.c
507 ***********************************************************************/
509 void
510 sys_tputs (char *str, int nlines, int (*outfun) (int))
514 char *
515 sys_tgetstr (char *cap, char **area)
517 return NULL;
521 /***********************************************************************
522 stubs from cm.c
523 ***********************************************************************/
525 struct tty_display_info *current_tty = NULL;
526 int cost = 0;
529 evalcost (int c)
531 return c;
535 cmputc (int c)
537 return c;
540 void
541 cmcheckmagic (struct tty_display_info *tty)
545 void
546 cmcostinit (struct tty_display_info *tty)
550 void
551 cmgoto (struct tty_display_info *tty, int row, int col)
555 void
556 Wcm_clear (struct tty_display_info *tty)
561 /***********************************************************************
562 Faces
563 ***********************************************************************/
566 /* Turn appearances of face FACE_ID on tty frame F on. */
568 static WORD
569 w32_face_attributes (struct frame *f, int face_id)
571 WORD char_attr;
572 struct face *face = FACE_FROM_ID (f, face_id);
574 eassert (face != NULL);
576 char_attr = char_attr_normal;
578 /* Reverse the default color if requested. If background and
579 foreground are specified, then they have been reversed already. */
580 if (face->tty_reverse_p)
581 char_attr = (char_attr & 0xff00) + ((char_attr & 0x000f) << 4)
582 + ((char_attr & 0x00f0) >> 4);
584 /* Before the terminal is properly initialized, all colors map to 0.
585 Don't try to resolve them. */
586 if (NILP (Vtty_defined_color_alist))
587 return char_attr;
589 /* Colors should be in the range 0...15 unless they are one of
590 FACE_TTY_DEFAULT_COLOR, FACE_TTY_DEFAULT_FG_COLOR or
591 FACE_TTY_DEFAULT_BG_COLOR. Other out of range colors are
592 invalid, so it is better to use the default color if they ever
593 get through to here. */
594 if (face->foreground >= 0 && face->foreground < 16)
595 char_attr = (char_attr & 0xfff0) + face->foreground;
597 if (face->background >= 0 && face->background < 16)
598 char_attr = (char_attr & 0xff0f) + (face->background << 4);
600 return char_attr;
603 void
604 initialize_w32_display (struct terminal *term)
606 CONSOLE_SCREEN_BUFFER_INFO info;
607 Mouse_HLInfo *hlinfo;
609 term->rif = 0; /* No window based redisplay on the console. */
610 term->cursor_to_hook = w32con_move_cursor;
611 term->raw_cursor_to_hook = w32con_move_cursor;
612 term->clear_to_end_hook = w32con_clear_to_end;
613 term->clear_frame_hook = w32con_clear_frame;
614 term->clear_end_of_line_hook = w32con_clear_end_of_line;
615 term->ins_del_lines_hook = w32con_ins_del_lines;
616 term->insert_glyphs_hook = w32con_insert_glyphs;
617 term->write_glyphs_hook = w32con_write_glyphs;
618 term->delete_glyphs_hook = w32con_delete_glyphs;
619 term->ring_bell_hook = w32_sys_ring_bell;
620 term->reset_terminal_modes_hook = w32con_reset_terminal_modes;
621 term->set_terminal_modes_hook = w32con_set_terminal_modes;
622 term->set_terminal_window_hook = w32con_set_terminal_window;
623 term->update_begin_hook = w32con_update_begin;
624 term->update_end_hook = w32con_update_end;
626 term->read_socket_hook = w32_console_read_socket;
627 term->mouse_position_hook = w32_console_mouse_position;
629 /* The following are not used on the console. */
630 term->frame_rehighlight_hook = 0;
631 term->frame_raise_lower_hook = 0;
632 term->set_vertical_scroll_bar_hook = 0;
633 term->condemn_scroll_bars_hook = 0;
634 term->redeem_scroll_bar_hook = 0;
635 term->judge_scroll_bars_hook = 0;
636 term->frame_up_to_date_hook = 0;
638 /* Initialize the mouse-highlight data. */
639 hlinfo = &term->display_info.tty->mouse_highlight;
640 hlinfo->mouse_face_beg_row = hlinfo->mouse_face_beg_col = -1;
641 hlinfo->mouse_face_end_row = hlinfo->mouse_face_end_col = -1;
642 hlinfo->mouse_face_face_id = DEFAULT_FACE_ID;
643 hlinfo->mouse_face_mouse_frame = NULL;
644 hlinfo->mouse_face_window = Qnil;
645 hlinfo->mouse_face_hidden = 0;
647 /* Initialize interrupt_handle. */
648 init_crit ();
650 /* Remember original console settings. */
651 keyboard_handle = GetStdHandle (STD_INPUT_HANDLE);
652 GetConsoleMode (keyboard_handle, &prev_console_mode);
654 prev_screen = GetStdHandle (STD_OUTPUT_HANDLE);
656 #ifdef USE_SEPARATE_SCREEN
657 cur_screen = CreateConsoleScreenBuffer (GENERIC_READ | GENERIC_WRITE,
658 0, NULL,
659 CONSOLE_TEXTMODE_BUFFER,
660 NULL);
662 if (cur_screen == INVALID_HANDLE_VALUE)
664 printf ("CreateConsoleScreenBuffer failed in ResetTerm\n");
665 printf ("LastError = 0x%lx\n", GetLastError ());
666 fflush (stdout);
667 exit (0);
669 #else
670 cur_screen = prev_screen;
671 GetConsoleCursorInfo (prev_screen, &prev_console_cursor);
672 #endif
674 /* Respect setting of LINES and COLUMNS environment variables. */
676 char * lines = getenv ("LINES");
677 char * columns = getenv ("COLUMNS");
679 if (lines != NULL && columns != NULL)
681 SMALL_RECT new_win_dims;
682 COORD new_size;
684 new_size.X = atoi (columns);
685 new_size.Y = atoi (lines);
687 GetConsoleScreenBufferInfo (cur_screen, &info);
689 /* Shrink the window first, so the buffer dimensions can be
690 reduced if necessary. */
691 new_win_dims.Top = 0;
692 new_win_dims.Left = 0;
693 new_win_dims.Bottom = min (new_size.Y, info.dwSize.Y) - 1;
694 new_win_dims.Right = min (new_size.X, info.dwSize.X) - 1;
695 SetConsoleWindowInfo (cur_screen, TRUE, &new_win_dims);
697 SetConsoleScreenBufferSize (cur_screen, new_size);
699 /* Set the window size to match the buffer dimension. */
700 new_win_dims.Top = 0;
701 new_win_dims.Left = 0;
702 new_win_dims.Bottom = new_size.Y - 1;
703 new_win_dims.Right = new_size.X - 1;
704 SetConsoleWindowInfo (cur_screen, TRUE, &new_win_dims);
708 GetConsoleScreenBufferInfo (cur_screen, &info);
710 char_attr_normal = info.wAttributes;
712 /* Determine if the info returned by GetConsoleScreenBufferInfo
713 is realistic. Old MS Telnet servers used to only fill out
714 the dwSize portion, even modern one fill the whole struct with
715 garbage when using non-MS telnet clients. */
716 if ((w32_use_full_screen_buffer
717 && (info.dwSize.Y < 20 || info.dwSize.Y > 100
718 || info.dwSize.X < 40 || info.dwSize.X > 200))
719 || (!w32_use_full_screen_buffer
720 && (info.srWindow.Bottom - info.srWindow.Top < 20
721 || info.srWindow.Bottom - info.srWindow.Top > 100
722 || info.srWindow.Right - info.srWindow.Left < 40
723 || info.srWindow.Right - info.srWindow.Left > 100)))
725 FRAME_LINES (SELECTED_FRAME ()) = 25;
726 SET_FRAME_COLS (SELECTED_FRAME (), 80);
729 else if (w32_use_full_screen_buffer)
731 FRAME_LINES (SELECTED_FRAME ()) = info.dwSize.Y; /* lines per page */
732 SET_FRAME_COLS (SELECTED_FRAME (), info.dwSize.X); /* characters per line */
734 else
736 /* Lines per page. Use buffer coords instead of buffer size. */
737 FRAME_LINES (SELECTED_FRAME ()) = 1 + info.srWindow.Bottom -
738 info.srWindow.Top;
739 /* Characters per line. Use buffer coords instead of buffer size. */
740 SET_FRAME_COLS (SELECTED_FRAME (), 1 + info.srWindow.Right -
741 info.srWindow.Left);
744 if (os_subtype == OS_NT)
745 w32_console_unicode_input = 1;
746 else
747 w32_console_unicode_input = 0;
749 /* Setup w32_display_info structure for this frame. */
751 w32_initialize_display_info (build_string ("Console"));
756 DEFUN ("set-screen-color", Fset_screen_color, Sset_screen_color, 2, 2, 0,
757 doc: /* Set screen foreground and background colors.
759 Arguments should be indices between 0 and 15, see w32console.el. */)
760 (Lisp_Object foreground, Lisp_Object background)
762 char_attr_normal = XFASTINT (foreground) + (XFASTINT (background) << 4);
764 Frecenter (Qnil);
765 return Qt;
768 DEFUN ("get-screen-color", Fget_screen_color, Sget_screen_color, 0, 0, 0,
769 doc: /* Get color indices of the current screen foreground and background.
771 The colors are returned as a list of 2 indices (FOREGROUND BACKGROUND).
772 See w32console.el and `tty-defined-color-alist' for mapping of indices
773 to colors. */)
774 (void)
776 return Fcons (make_number (char_attr_normal & 0x000f),
777 Fcons (make_number ((char_attr_normal >> 4) & 0x000f), Qnil));
780 DEFUN ("set-cursor-size", Fset_cursor_size, Sset_cursor_size, 1, 1, 0,
781 doc: /* Set cursor size. */)
782 (Lisp_Object size)
784 CONSOLE_CURSOR_INFO cci;
785 cci.dwSize = XFASTINT (size);
786 cci.bVisible = TRUE;
787 (void) SetConsoleCursorInfo (cur_screen, &cci);
789 return Qt;
792 void
793 syms_of_ntterm (void)
795 DEFVAR_BOOL ("w32-use-full-screen-buffer",
796 w32_use_full_screen_buffer,
797 doc: /* Non-nil means make terminal frames use the full screen buffer dimensions.
798 This is desirable when running Emacs over telnet.
799 A value of nil means use the current console window dimensions; this
800 may be preferable when working directly at the console with a large
801 scroll-back buffer. */);
802 w32_use_full_screen_buffer = 0;
804 defsubr (&Sset_screen_color);
805 defsubr (&Sget_screen_color);
806 defsubr (&Sset_cursor_size);