Mercurial > emacs
annotate src/w32console.c @ 74764:146cf6a867b3
*** empty log message ***
author | Nick Roberts <nickrob@snap.net.nz> |
---|---|
date | Wed, 20 Dec 2006 05:16:04 +0000 |
parents | cb66cca12fa5 |
children | e90d04cd455a 138ce2701550 |
rev | line source |
---|---|
16883
d1d4d81f9ece
Change all uses of win95, winnt, and win32
Geoff Voelker <voelker@cs.washington.edu>
parents:
16593
diff
changeset
|
1 /* Terminal hooks for GNU Emacs on the Microsoft W32 API. |
64770
a0d1312ede66
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64111
diff
changeset
|
2 Copyright (C) 1992, 1999, 2002, 2003, 2004, |
68651
3bd95f4f2941
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64770
diff
changeset
|
3 2005, 2006 Free Software Foundation, Inc. |
9907 | 4 |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13424
diff
changeset
|
5 This file is part of GNU Emacs. |
9907 | 6 |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13424
diff
changeset
|
7 GNU Emacs is free software; you can redistribute it and/or modify |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13424
diff
changeset
|
8 it under the terms of the GNU General Public License as published by |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13424
diff
changeset
|
9 the Free Software Foundation; either version 2, or (at your option) |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13424
diff
changeset
|
10 any later version. |
9907 | 11 |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13424
diff
changeset
|
12 GNU Emacs is distributed in the hope that it will be useful, |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13424
diff
changeset
|
13 but WITHOUT ANY WARRANTY; without even the implied warranty of |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13424
diff
changeset
|
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13424
diff
changeset
|
15 GNU General Public License for more details. |
9907 | 16 |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13424
diff
changeset
|
17 You should have received a copy of the GNU General Public License |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13424
diff
changeset
|
18 along with GNU Emacs; see the file COPYING. If not, write to |
64084 | 19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
20 Boston, MA 02110-1301, USA. | |
9907 | 21 |
22 Tim Fleehart (apollo@online.com) 1-17-92 | |
23 Geoff Voelker (voelker@cs.washington.edu) 9-12-93 | |
24 */ | |
25 | |
26 | |
12183
47685fb0fbd1
Include config.h before stdio.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11942
diff
changeset
|
27 #include <config.h> |
47685fb0fbd1
Include config.h before stdio.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11942
diff
changeset
|
28 |
9907 | 29 #include <stdlib.h> |
30 #include <stdio.h> | |
31 #include <windows.h> | |
27518
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
32 #include <string.h> |
9907 | 33 |
34 #include "lisp.h" | |
18507
be4c110cda51
Include charset.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16883
diff
changeset
|
35 #include "charset.h" |
27395
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
36 #include "coding.h" |
9907 | 37 #include "disptab.h" |
38 #include "termhooks.h" | |
32668
3bdd8b545352
Do not undef HAVE_WINDOW_SYSTEM before
Jason Rumney <jasonr@gnu.org>
parents:
31109
diff
changeset
|
39 #include "dispextern.h" |
3bdd8b545352
Do not undef HAVE_WINDOW_SYSTEM before
Jason Rumney <jasonr@gnu.org>
parents:
31109
diff
changeset
|
40 /* Disable features in frame.h that require a Window System. */ |
27892
1857b9695885
Only disable window system features for dispextern.h
Jason Rumney <jasonr@gnu.org>
parents:
27518
diff
changeset
|
41 #undef HAVE_WINDOW_SYSTEM |
1857b9695885
Only disable window system features for dispextern.h
Jason Rumney <jasonr@gnu.org>
parents:
27518
diff
changeset
|
42 #include "frame.h" |
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
16588
diff
changeset
|
43 #include "w32inevt.h" |
9907 | 44 |
11389 | 45 /* from window.c */ |
9907 | 46 extern Lisp_Object Frecenter (); |
47 | |
48 /* from keyboard.c */ | |
49 extern int detect_input_pending (); | |
50 | |
51 /* from sysdep.c */ | |
52 extern int read_input_pending (); | |
53 | |
27395
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
54 extern struct frame * updating_frame; |
9907 | 55 extern int meta_key; |
56 | |
55670
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
57 static void w32con_move_cursor (int row, int col); |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
58 static void w32con_clear_to_end (void); |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
59 static void w32con_clear_frame (void); |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
60 static void w32con_clear_end_of_line (int); |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
61 static void w32con_ins_del_lines (int vpos, int n); |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
62 static void w32con_insert_glyphs (struct glyph *start, int len); |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
63 static void w32con_write_glyphs (struct glyph *string, int len); |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
64 static void w32con_delete_glyphs (int n); |
16588
481b7874a1e9
Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16262
diff
changeset
|
65 void w32_sys_ring_bell (void); |
55670
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
66 static void w32con_reset_terminal_modes (void); |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
67 static void w32con_set_terminal_modes (void); |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
68 static void w32con_set_terminal_window (int size); |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
69 static void w32con_update_begin (struct frame * f); |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
70 static void w32con_update_end (struct frame * f); |
27518
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
71 static WORD w32_face_attributes (struct frame *f, int face_id); |
9907 | 72 |
27518
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
73 static COORD cursor_coords; |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
74 static HANDLE prev_screen, cur_screen; |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
75 static WORD char_attr_normal; |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
76 static DWORD prev_console_mode; |
9907 | 77 |
19706
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
78 #ifndef USE_SEPARATE_SCREEN |
27518
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
79 static CONSOLE_CURSOR_INFO prev_console_cursor; |
19706
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
80 #endif |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
81 |
24938
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
82 /* Determine whether to make frame dimensions match the screen buffer, |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
83 or the current window size. The former is desirable when running |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
84 over telnet, while the latter is more useful when working directly at |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
85 the console with a large scroll-back buffer. */ |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
86 int w32_use_full_screen_buffer; |
27518
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
87 HANDLE keyboard_handle; |
24938
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
88 |
9907 | 89 |
90 /* Setting this as the ctrl handler prevents emacs from being killed when | |
12336
617f39b43557
(ctrl_c_handler): Ignore CTRL_BREAK_EVENT signals.
Richard M. Stallman <rms@gnu.org>
parents:
12183
diff
changeset
|
91 someone hits ^C in a 'suspended' session (child shell). |
617f39b43557
(ctrl_c_handler): Ignore CTRL_BREAK_EVENT signals.
Richard M. Stallman <rms@gnu.org>
parents:
12183
diff
changeset
|
92 Also ignore Ctrl-Break signals. */ |
617f39b43557
(ctrl_c_handler): Ignore CTRL_BREAK_EVENT signals.
Richard M. Stallman <rms@gnu.org>
parents:
12183
diff
changeset
|
93 |
9907 | 94 BOOL |
95 ctrl_c_handler (unsigned long type) | |
96 { | |
19706
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
97 /* Only ignore "interrupt" events when running interactively. */ |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
98 return (!noninteractive |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
99 && (type == CTRL_C_EVENT || type == CTRL_BREAK_EVENT)); |
9907 | 100 } |
101 | |
102 /* If we're updating a frame, use it as the current frame | |
103 Otherwise, use the selected frame. */ | |
27395
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
104 #define PICK_FRAME() (updating_frame ? updating_frame : SELECTED_FRAME ()) |
9907 | 105 |
106 /* Move the cursor to (row, col). */ | |
55644 | 107 static void |
55670
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
108 w32con_move_cursor (int row, int col) |
9907 | 109 { |
110 cursor_coords.X = col; | |
111 cursor_coords.Y = row; | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
112 |
27395
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
113 if (updating_frame == (struct frame *) NULL) |
9907 | 114 { |
115 SetConsoleCursorPosition (cur_screen, cursor_coords); | |
116 } | |
117 } | |
118 | |
119 /* Clear from cursor to end of screen. */ | |
55644 | 120 static void |
55670
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
121 w32con_clear_to_end (void) |
9907 | 122 { |
27395
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
123 struct frame * f = PICK_FRAME (); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
124 |
55670
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
125 w32con_clear_end_of_line (FRAME_COLS (f) - 1); |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
126 w32con_ins_del_lines (cursor_coords.Y, FRAME_LINES (f) - cursor_coords.Y - 1); |
9907 | 127 } |
128 | |
129 /* Clear the frame. */ | |
55670
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
130 static void |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
131 w32con_clear_frame (void) |
9907 | 132 { |
27395
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
133 struct frame * f = PICK_FRAME (); |
9907 | 134 COORD dest; |
31109 | 135 int n; |
136 DWORD r; | |
24755
3bb855a40bf6
(clear_frame): Remember that the window width might
Andrew Innes <andrewi@gnu.org>
parents:
23572
diff
changeset
|
137 CONSOLE_SCREEN_BUFFER_INFO info; |
3bb855a40bf6
(clear_frame): Remember that the window width might
Andrew Innes <andrewi@gnu.org>
parents:
23572
diff
changeset
|
138 |
3bb855a40bf6
(clear_frame): Remember that the window width might
Andrew Innes <andrewi@gnu.org>
parents:
23572
diff
changeset
|
139 GetConsoleScreenBufferInfo (GetStdHandle (STD_OUTPUT_HANDLE), &info); |
14244
493cff4d5960
(clear_frame): Use FillConsoleOutput* calls instead of
Geoff Voelker <voelker@cs.washington.edu>
parents:
14186
diff
changeset
|
140 |
24755
3bb855a40bf6
(clear_frame): Remember that the window width might
Andrew Innes <andrewi@gnu.org>
parents:
23572
diff
changeset
|
141 /* Remember that the screen buffer might be wider than the window. */ |
51206
22a5614b558f
Make (few) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
50247
diff
changeset
|
142 n = FRAME_LINES (f) * info.dwSize.X; |
14244
493cff4d5960
(clear_frame): Use FillConsoleOutput* calls instead of
Geoff Voelker <voelker@cs.washington.edu>
parents:
14186
diff
changeset
|
143 dest.X = dest.Y = 0; |
493cff4d5960
(clear_frame): Use FillConsoleOutput* calls instead of
Geoff Voelker <voelker@cs.washington.edu>
parents:
14186
diff
changeset
|
144 |
27518
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
145 FillConsoleOutputAttribute (cur_screen, char_attr_normal, n, dest, &r); |
14244
493cff4d5960
(clear_frame): Use FillConsoleOutput* calls instead of
Geoff Voelker <voelker@cs.washington.edu>
parents:
14186
diff
changeset
|
146 FillConsoleOutputCharacter (cur_screen, ' ', n, dest, &r); |
493cff4d5960
(clear_frame): Use FillConsoleOutput* calls instead of
Geoff Voelker <voelker@cs.washington.edu>
parents:
14186
diff
changeset
|
147 |
55670
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
148 w32con_move_cursor (0, 0); |
9907 | 149 } |
150 | |
151 | |
27395
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
152 static struct glyph glyph_base[256]; |
9907 | 153 static BOOL ceol_initialized = FALSE; |
154 | |
155 /* Clear from Cursor to end (what's "standout marker"?). */ | |
55670
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
156 static void |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
157 w32con_clear_end_of_line (int end) |
9907 | 158 { |
159 if (!ceol_initialized) | |
160 { | |
161 int i; | |
162 for (i = 0; i < 256; i++) | |
163 { | |
27395
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
164 memcpy (&glyph_base[i], &space_glyph, sizeof (struct glyph)); |
9907 | 165 } |
166 ceol_initialized = TRUE; | |
167 } | |
55670
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
168 w32con_write_glyphs (glyph_base, end - cursor_coords.X); /* fencepost ? */ |
9907 | 169 } |
170 | |
171 /* Insert n lines at vpos. if n is negative delete -n lines. */ | |
55670
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
172 static void |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
173 w32con_ins_del_lines (int vpos, int n) |
9907 | 174 { |
40079
e62d3694acdc
(reassert_line_highlight, change_line_highlight): Functions removed.
Miles Bader <miles@gnu.org>
parents:
39682
diff
changeset
|
175 int i, nb; |
9907 | 176 SMALL_RECT scroll; |
177 COORD dest; | |
178 CHAR_INFO fill; | |
27395
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
179 struct frame * f = PICK_FRAME (); |
9907 | 180 |
181 if (n < 0) | |
182 { | |
183 scroll.Top = vpos - n; | |
51206
22a5614b558f
Make (few) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
50247
diff
changeset
|
184 scroll.Bottom = FRAME_LINES (f); |
9907 | 185 dest.Y = vpos; |
186 } | |
187 else | |
188 { | |
189 scroll.Top = vpos; | |
51206
22a5614b558f
Make (few) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
50247
diff
changeset
|
190 scroll.Bottom = FRAME_LINES (f) - n; |
9907 | 191 dest.Y = vpos + n; |
192 } | |
193 scroll.Left = 0; | |
51206
22a5614b558f
Make (few) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
50247
diff
changeset
|
194 scroll.Right = FRAME_COLS (f); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
195 |
9907 | 196 dest.X = 0; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
197 |
9907 | 198 fill.Char.AsciiChar = 0x20; |
27518
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
199 fill.Attributes = char_attr_normal; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
200 |
9907 | 201 ScrollConsoleScreenBuffer (cur_screen, &scroll, NULL, dest, &fill); |
202 | |
16588
481b7874a1e9
Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16262
diff
changeset
|
203 /* Here we have to deal with a w32 console flake: If the scroll |
9907 | 204 region looks like abc and we scroll c to a and fill with d we get |
205 cbd... if we scroll block c one line at a time to a, we get cdd... | |
206 Emacs expects cdd consistently... So we have to deal with that | |
207 here... (this also occurs scrolling the same way in the other | |
208 direction. */ | |
209 | |
210 if (n > 0) | |
211 { | |
212 if (scroll.Bottom < dest.Y) | |
213 { | |
214 for (i = scroll.Bottom; i < dest.Y; i++) | |
215 { | |
55670
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
216 w32con_move_cursor (i, 0); |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
217 w32con_clear_end_of_line (FRAME_COLS (f)); |
9907 | 218 } |
219 } | |
220 } | |
221 else | |
222 { | |
223 nb = dest.Y + (scroll.Bottom - scroll.Top) + 1; | |
224 | |
225 if (nb < scroll.Top) | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
226 { |
9907 | 227 for (i = nb; i < scroll.Top; i++) |
228 { | |
55670
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
229 w32con_move_cursor (i, 0); |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
230 w32con_clear_end_of_line (FRAME_COLS (f)); |
9907 | 231 } |
232 } | |
233 } | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
234 |
9907 | 235 cursor_coords.X = 0; |
236 cursor_coords.Y = vpos; | |
237 } | |
238 | |
239 #undef LEFT | |
240 #undef RIGHT | |
241 #define LEFT 1 | |
242 #define RIGHT 0 | |
243 | |
55644 | 244 static void |
9907 | 245 scroll_line (int dist, int direction) |
246 { | |
247 /* The idea here is to implement a horizontal scroll in one line to | |
248 implement delete and half of insert. */ | |
249 SMALL_RECT scroll; | |
250 COORD dest; | |
251 CHAR_INFO fill; | |
27395
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
252 struct frame * f = PICK_FRAME (); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
253 |
9907 | 254 scroll.Top = cursor_coords.Y; |
255 scroll.Bottom = cursor_coords.Y; | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
256 |
9907 | 257 if (direction == LEFT) |
258 { | |
259 scroll.Left = cursor_coords.X + dist; | |
51206
22a5614b558f
Make (few) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
50247
diff
changeset
|
260 scroll.Right = FRAME_COLS (f) - 1; |
9907 | 261 } |
262 else | |
263 { | |
264 scroll.Left = cursor_coords.X; | |
51206
22a5614b558f
Make (few) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
50247
diff
changeset
|
265 scroll.Right = FRAME_COLS (f) - dist - 1; |
9907 | 266 } |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
267 |
9907 | 268 dest.X = cursor_coords.X; |
269 dest.Y = cursor_coords.Y; | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
270 |
9907 | 271 fill.Char.AsciiChar = 0x20; |
27518
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
272 fill.Attributes = char_attr_normal; |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
273 |
9907 | 274 ScrollConsoleScreenBuffer (cur_screen, &scroll, NULL, dest, &fill); |
275 } | |
276 | |
277 | |
278 /* If start is zero insert blanks instead of a string at start ?. */ | |
55670
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
279 static void |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
280 w32con_insert_glyphs (register struct glyph *start, register int len) |
9907 | 281 { |
282 scroll_line (len, RIGHT); | |
283 | |
284 /* Move len chars to the right starting at cursor_coords, fill with blanks */ | |
285 if (start) | |
286 { | |
287 /* Print the first len characters of start, cursor_coords.X adjusted | |
288 by write_glyphs. */ | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
289 |
55670
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
290 w32con_write_glyphs (start, len); |
9907 | 291 } |
292 else | |
293 { | |
55670
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
294 w32con_clear_end_of_line (cursor_coords.X + len); |
9907 | 295 } |
296 } | |
297 | |
58700
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
298 extern unsigned char *encode_terminal_code P_ ((struct glyph *, int, |
58703
65309f66a561
(encode_terminal_code): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
58700
diff
changeset
|
299 struct coding_system *)); |
58700
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
300 |
55670
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
301 static void |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
302 w32con_write_glyphs (register struct glyph *string, register int len) |
9907 | 303 { |
31109 | 304 int produced, consumed; |
305 DWORD r; | |
27395
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
306 struct frame * f = PICK_FRAME (); |
27518
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
307 WORD char_attr; |
58700
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
308 unsigned char *conversion_buffer; |
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
309 struct coding_system *coding; |
27518
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
310 |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
311 if (len <= 0) |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
312 return; |
27395
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
313 |
58700
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
314 /* If terminal_coding does any conversion, use it, otherwise use |
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
315 safe_terminal_coding. We can't use CODING_REQUIRE_ENCODING here |
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
316 because it always return 1 if the member src_multibyte is 1. */ |
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
317 coding = (terminal_coding.common_flags & CODING_REQUIRE_ENCODING_MASK |
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
318 ? &terminal_coding : &safe_terminal_coding); |
27395
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
319 /* The mode bit CODING_MODE_LAST_BLOCK should be set to 1 only at |
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
320 the tail. */ |
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
321 terminal_coding.mode &= ~CODING_MODE_LAST_BLOCK; |
14244
493cff4d5960
(clear_frame): Use FillConsoleOutput* calls instead of
Geoff Voelker <voelker@cs.washington.edu>
parents:
14186
diff
changeset
|
322 |
27395
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
323 while (len > 0) |
9907 | 324 { |
27395
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
325 /* Identify a run of glyphs with the same face. */ |
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
326 int face_id = string->face_id; |
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
327 int n; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
328 |
27395
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
329 for (n = 1; n < len; ++n) |
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
330 if (string[n].face_id != face_id) |
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
331 break; |
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
332 |
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
333 /* Turn appearance modes of the face of the run on. */ |
27518
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
334 char_attr = w32_face_attributes (f, face_id); |
9907 | 335 |
58700
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
336 if (n == len) |
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
337 /* This is the last run. */ |
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
338 coding->mode |= CODING_MODE_LAST_BLOCK; |
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
339 conversion_buffer = encode_terminal_code (string, n, coding); |
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
340 if (coding->produced > 0) |
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
341 { |
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
342 /* Set the attribute for these characters. */ |
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
343 if (!FillConsoleOutputAttribute (cur_screen, char_attr, |
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
344 coding->produced, cursor_coords, |
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
345 &r)) |
27395
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
346 { |
58700
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
347 printf ("Failed writing console attributes: %d\n", |
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
348 GetLastError ()); |
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
349 fflush (stdout); |
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
350 } |
27395
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
351 |
58700
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
352 /* Write the characters. */ |
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
353 if (!WriteConsoleOutputCharacter (cur_screen, conversion_buffer, |
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
354 coding->produced, cursor_coords, |
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
355 &r)) |
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
356 { |
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
357 printf ("Failed writing console characters: %d\n", |
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
358 GetLastError ()); |
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
359 fflush (stdout); |
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
360 } |
9907 | 361 |
58700
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
362 cursor_coords.X += coding->produced; |
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
363 w32con_move_cursor (cursor_coords.Y, cursor_coords.X); |
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
364 } |
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
365 len -= n; |
222a7e1090c3
(w32con_write_glyphs): Decide coding here.
Kenichi Handa <handa@m17n.org>
parents:
55670
diff
changeset
|
366 string += n; |
9907 | 367 } |
368 } | |
369 | |
27395
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
370 |
55670
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
371 static void |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
372 w32con_delete_glyphs (int n) |
9907 | 373 { |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
374 /* delete chars means scroll chars from cursor_coords.X + n to |
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
375 cursor_coords.X, anything beyond the edge of the screen should |
9907 | 376 come out empty... */ |
377 | |
378 scroll_line (n, LEFT); | |
379 } | |
380 | |
11389 | 381 static unsigned int sound_type = 0xFFFFFFFF; |
23563
18c5f58b70b5
(Fset_message_beep): Recognize 'silent.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22540
diff
changeset
|
382 #define MB_EMACS_SILENT (0xFFFFFFFF - 1) |
11389 | 383 |
9907 | 384 void |
16588
481b7874a1e9
Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16262
diff
changeset
|
385 w32_sys_ring_bell (void) |
9907 | 386 { |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
387 if (sound_type == 0xFFFFFFFF) |
23563
18c5f58b70b5
(Fset_message_beep): Recognize 'silent.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22540
diff
changeset
|
388 { |
11389 | 389 Beep (666, 100); |
23563
18c5f58b70b5
(Fset_message_beep): Recognize 'silent.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22540
diff
changeset
|
390 } |
18c5f58b70b5
(Fset_message_beep): Recognize 'silent.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22540
diff
changeset
|
391 else if (sound_type == MB_EMACS_SILENT) |
18c5f58b70b5
(Fset_message_beep): Recognize 'silent.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22540
diff
changeset
|
392 { |
18c5f58b70b5
(Fset_message_beep): Recognize 'silent.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22540
diff
changeset
|
393 /* Do nothing. */ |
18c5f58b70b5
(Fset_message_beep): Recognize 'silent.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22540
diff
changeset
|
394 } |
11389 | 395 else |
23563
18c5f58b70b5
(Fset_message_beep): Recognize 'silent.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22540
diff
changeset
|
396 MessageBeep (sound_type); |
9907 | 397 } |
398 | |
11389 | 399 DEFUN ("set-message-beep", Fset_message_beep, Sset_message_beep, 1, 1, 0, |
40962
f66d09d1bb2f
Change doc-string comments to `new style'. [w/`doc:' keyword]. Doc fixes.
Jason Rumney <jasonr@gnu.org>
parents:
40656
diff
changeset
|
400 doc: /* Set the sound generated when the bell is rung. |
f66d09d1bb2f
Change doc-string comments to `new style'. [w/`doc:' keyword]. Doc fixes.
Jason Rumney <jasonr@gnu.org>
parents:
40656
diff
changeset
|
401 SOUND is 'asterisk, 'exclamation, 'hand, 'question, 'ok, or 'silent |
f66d09d1bb2f
Change doc-string comments to `new style'. [w/`doc:' keyword]. Doc fixes.
Jason Rumney <jasonr@gnu.org>
parents:
40656
diff
changeset
|
402 to use the corresponding system sound for the bell. The 'silent sound |
f66d09d1bb2f
Change doc-string comments to `new style'. [w/`doc:' keyword]. Doc fixes.
Jason Rumney <jasonr@gnu.org>
parents:
40656
diff
changeset
|
403 prevents Emacs from making any sound at all. |
f66d09d1bb2f
Change doc-string comments to `new style'. [w/`doc:' keyword]. Doc fixes.
Jason Rumney <jasonr@gnu.org>
parents:
40656
diff
changeset
|
404 SOUND is nil to use the normal beep. */) |
11389 | 405 (sound) |
406 Lisp_Object sound; | |
9907 | 407 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40079
diff
changeset
|
408 CHECK_SYMBOL (sound); |
11389 | 409 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
410 if (NILP (sound)) |
11389 | 411 sound_type = 0xFFFFFFFF; |
412 else if (EQ (sound, intern ("asterisk"))) | |
413 sound_type = MB_ICONASTERISK; | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
414 else if (EQ (sound, intern ("exclamation"))) |
11389 | 415 sound_type = MB_ICONEXCLAMATION; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
416 else if (EQ (sound, intern ("hand"))) |
11389 | 417 sound_type = MB_ICONHAND; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
418 else if (EQ (sound, intern ("question"))) |
11389 | 419 sound_type = MB_ICONQUESTION; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
420 else if (EQ (sound, intern ("ok"))) |
11389 | 421 sound_type = MB_OK; |
23563
18c5f58b70b5
(Fset_message_beep): Recognize 'silent.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22540
diff
changeset
|
422 else if (EQ (sound, intern ("silent"))) |
18c5f58b70b5
(Fset_message_beep): Recognize 'silent.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22540
diff
changeset
|
423 sound_type = MB_EMACS_SILENT; |
11389 | 424 else |
425 sound_type = 0xFFFFFFFF; | |
426 | |
427 return sound; | |
9907 | 428 } |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
429 |
55670
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
430 static void |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
431 w32con_reset_terminal_modes (void) |
9907 | 432 { |
19706
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
433 #ifdef USE_SEPARATE_SCREEN |
9907 | 434 SetConsoleActiveScreenBuffer (prev_screen); |
19706
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
435 #else |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
436 SetConsoleCursorInfo (prev_screen, &prev_console_cursor); |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
437 #endif |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
438 SetConsoleMode (keyboard_handle, prev_console_mode); |
9907 | 439 } |
440 | |
55670
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
441 static void |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
442 w32con_set_terminal_modes (void) |
9907 | 443 { |
444 CONSOLE_CURSOR_INFO cci; | |
445 | |
19706
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
446 /* make cursor big and visible (100 on Win95 makes it disappear) */ |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
447 cci.dwSize = 99; |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
448 cci.bVisible = TRUE; |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
449 (void) SetConsoleCursorInfo (cur_screen, &cci); |
9907 | 450 |
19706
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
451 SetConsoleActiveScreenBuffer (cur_screen); |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
452 |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
453 SetConsoleMode (keyboard_handle, ENABLE_MOUSE_INPUT | ENABLE_WINDOW_INPUT); |
9907 | 454 |
19706
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
455 /* Initialize input mode: interrupt_input off, no flow control, allow |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
456 8 bit character input, standard quit char. */ |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
457 Fset_input_mode (Qnil, Qnil, make_number (2), Qnil); |
9907 | 458 } |
459 | |
460 /* hmmm... perhaps these let us bracket screen changes so that we can flush | |
461 clumps rather than one-character-at-a-time... | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
462 |
9907 | 463 we'll start with not moving the cursor while an update is in progress. */ |
55670
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
464 static void |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
465 w32con_update_begin (struct frame * f) |
9907 | 466 { |
467 } | |
468 | |
55670
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
469 static void |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
470 w32con_update_end (struct frame * f) |
9907 | 471 { |
472 SetConsoleCursorPosition (cur_screen, cursor_coords); | |
473 } | |
474 | |
55670
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
475 static void |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
476 w32con_set_terminal_window (int size) |
9907 | 477 { |
478 } | |
479 | |
27395
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
480 /*********************************************************************** |
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
481 Faces |
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
482 ***********************************************************************/ |
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
483 |
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
484 |
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
485 /* Turn appearances of face FACE_ID on tty frame F on. */ |
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
486 |
27518
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
487 static WORD |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
488 w32_face_attributes (f, face_id) |
27395
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
489 struct frame *f; |
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
490 int face_id; |
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
491 { |
27518
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
492 WORD char_attr; |
27395
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
493 struct face *face = FACE_FROM_ID (f, face_id); |
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
494 |
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
495 xassert (face != NULL); |
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
496 |
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
497 char_attr = char_attr_normal; |
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
498 |
27518
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
499 if (face->foreground != FACE_TTY_DEFAULT_FG_COLOR |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
500 && face->foreground != FACE_TTY_DEFAULT_COLOR) |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
501 char_attr = (char_attr & 0xfff0) + (face->foreground % 16); |
27395
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
502 |
27518
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
503 if (face->background != FACE_TTY_DEFAULT_BG_COLOR |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
504 && face->background != FACE_TTY_DEFAULT_COLOR) |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
505 char_attr = (char_attr & 0xff0f) + ((face->background % 16) << 4); |
27518
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
506 |
27395
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
507 |
32668
3bdd8b545352
Do not undef HAVE_WINDOW_SYSTEM before
Jason Rumney <jasonr@gnu.org>
parents:
31109
diff
changeset
|
508 /* NTEMACS_TODO: Faces defined during startup get both foreground |
3bdd8b545352
Do not undef HAVE_WINDOW_SYSTEM before
Jason Rumney <jasonr@gnu.org>
parents:
31109
diff
changeset
|
509 and background of 0. Need a better way around this - for now detect |
3bdd8b545352
Do not undef HAVE_WINDOW_SYSTEM before
Jason Rumney <jasonr@gnu.org>
parents:
31109
diff
changeset
|
510 the problem and invert one of the faces to make the text readable. */ |
27518
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
511 if (((char_attr & 0x00f0) >> 4) == (char_attr & 0x000f)) |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
512 char_attr ^= 0x0007; |
27395
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
513 |
40079
e62d3694acdc
(reassert_line_highlight, change_line_highlight): Functions removed.
Miles Bader <miles@gnu.org>
parents:
39682
diff
changeset
|
514 if (face->tty_reverse_p) |
27518
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
515 char_attr = (char_attr & 0xff00) + ((char_attr & 0x000f) << 4) |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
516 + ((char_attr & 0x00f0) >> 4); |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
517 |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
518 return char_attr; |
27395
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
519 } |
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
520 |
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
521 |
27518
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
522 /* Emulation of some X window features from xfns.c and xfaces.c. */ |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
523 |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
524 extern char unspecified_fg[], unspecified_bg[]; |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
525 |
27395
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
526 |
27518
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
527 /* Given a color index, return its standard name. */ |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
528 Lisp_Object |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
529 vga_stdcolor_name (int idx) |
27395
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
530 { |
27518
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
531 /* Standard VGA colors, in the order of their standard numbering |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
532 in the default VGA palette. */ |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
533 static char *vga_colors[16] = { |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
534 "black", "blue", "green", "cyan", "red", "magenta", "brown", |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
535 "lightgray", "darkgray", "lightblue", "lightgreen", "lightcyan", |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
536 "lightred", "lightmagenta", "yellow", "white" |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
537 }; |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
538 |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
539 extern Lisp_Object Qunspecified; |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
540 |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
541 if (idx >= 0 && idx < sizeof (vga_colors) / sizeof (vga_colors[0])) |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
542 return build_string (vga_colors[idx]); |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
543 else |
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
544 return Qunspecified; /* meaning the default */ |
27395
fe54558f20d8
(turn_on_face, turn_off_face): New functions.
Jason Rumney <jasonr@gnu.org>
parents:
24938
diff
changeset
|
545 } |
27518
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
546 |
9907 | 547 typedef int (*term_hook) (); |
548 | |
549 void | |
16883
d1d4d81f9ece
Change all uses of win95, winnt, and win32
Geoff Voelker <voelker@cs.washington.edu>
parents:
16593
diff
changeset
|
550 initialize_w32_display (void) |
9907 | 551 { |
552 CONSOLE_SCREEN_BUFFER_INFO info; | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
553 |
55670
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
554 cursor_to_hook = w32con_move_cursor; |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
555 raw_cursor_to_hook = w32con_move_cursor; |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
556 clear_to_end_hook = w32con_clear_to_end; |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
557 clear_frame_hook = w32con_clear_frame; |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
558 clear_end_of_line_hook = w32con_clear_end_of_line; |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
559 ins_del_lines_hook = w32con_ins_del_lines; |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
560 insert_glyphs_hook = w32con_insert_glyphs; |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
561 write_glyphs_hook = w32con_write_glyphs; |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
562 delete_glyphs_hook = w32con_delete_glyphs; |
21828
7e3f21132df4
(initialize_w32_displayed): Use new function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19706
diff
changeset
|
563 ring_bell_hook = w32_sys_ring_bell; |
55670
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
564 reset_terminal_modes_hook = w32con_reset_terminal_modes; |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
565 set_terminal_modes_hook = w32con_set_terminal_modes; |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
566 set_terminal_window_hook = w32con_set_terminal_window; |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
567 update_begin_hook = w32con_update_begin; |
d3274c878082
Prefix RIF functions with w32con_ to avoid namespace clash with term.c.
Jason Rumney <jasonr@gnu.org>
parents:
55644
diff
changeset
|
568 update_end_hook = w32con_update_end; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
569 |
16588
481b7874a1e9
Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16262
diff
changeset
|
570 read_socket_hook = w32_console_read_socket; |
21828
7e3f21132df4
(initialize_w32_displayed): Use new function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19706
diff
changeset
|
571 mouse_position_hook = w32_console_mouse_position; |
19706
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
572 |
22540
0e7c65caf1cb
(initialize_w32_display): Call init_crit to initialize
Andrew Innes <andrewi@gnu.org>
parents:
21828
diff
changeset
|
573 /* Initialize interrupt_handle. */ |
0e7c65caf1cb
(initialize_w32_display): Call init_crit to initialize
Andrew Innes <andrewi@gnu.org>
parents:
21828
diff
changeset
|
574 init_crit (); |
0e7c65caf1cb
(initialize_w32_display): Call init_crit to initialize
Andrew Innes <andrewi@gnu.org>
parents:
21828
diff
changeset
|
575 |
19706
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
576 /* Remember original console settings. */ |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
577 keyboard_handle = GetStdHandle (STD_INPUT_HANDLE); |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
578 GetConsoleMode (keyboard_handle, &prev_console_mode); |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
579 |
9907 | 580 prev_screen = GetStdHandle (STD_OUTPUT_HANDLE); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
581 |
19706
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
582 #ifdef USE_SEPARATE_SCREEN |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
583 cur_screen = CreateConsoleScreenBuffer (GENERIC_READ | GENERIC_WRITE, |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
584 0, NULL, |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
585 CONSOLE_TEXTMODE_BUFFER, |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
586 NULL); |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
587 |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
588 if (cur_screen == INVALID_HANDLE_VALUE) |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
589 { |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
590 printf ("CreateConsoleScreenBuffer failed in ResetTerm\n"); |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
591 printf ("LastError = 0x%lx\n", GetLastError ()); |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
592 fflush (stdout); |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
593 exit (0); |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
594 } |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
595 #else |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
596 cur_screen = prev_screen; |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
597 GetConsoleCursorInfo (prev_screen, &prev_console_cursor); |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
598 #endif |
e21b63afe61f
(DebPrint, reset_kbd, unset_kbd, take_console): Delete functions.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18507
diff
changeset
|
599 |
24938
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
600 /* Respect setting of LINES and COLUMNS environment variables. */ |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
601 { |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
602 char * lines = getenv("LINES"); |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
603 char * columns = getenv("COLUMNS"); |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
604 |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
605 if (lines != NULL && columns != NULL) |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
606 { |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
607 SMALL_RECT new_win_dims; |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
608 COORD new_size; |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
609 |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
610 new_size.X = atoi (columns); |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
611 new_size.Y = atoi (lines); |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
612 |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
613 GetConsoleScreenBufferInfo (cur_screen, &info); |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
614 |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
615 /* Shrink the window first, so the buffer dimensions can be |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
616 reduced if necessary. */ |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
617 new_win_dims.Top = 0; |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
618 new_win_dims.Left = 0; |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
619 new_win_dims.Bottom = min (new_size.Y, info.dwSize.Y) - 1; |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
620 new_win_dims.Right = min (new_size.X, info.dwSize.X) - 1; |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
621 SetConsoleWindowInfo (cur_screen, TRUE, &new_win_dims); |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
622 |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
623 SetConsoleScreenBufferSize (cur_screen, new_size); |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
624 |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
625 /* Set the window size to match the buffer dimension. */ |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
626 new_win_dims.Top = 0; |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
627 new_win_dims.Left = 0; |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
628 new_win_dims.Bottom = new_size.Y - 1; |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
629 new_win_dims.Right = new_size.X - 1; |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
630 SetConsoleWindowInfo (cur_screen, TRUE, &new_win_dims); |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
631 } |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
632 } |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
633 |
9907 | 634 GetConsoleScreenBufferInfo (cur_screen, &info); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
635 |
9907 | 636 meta_key = 1; |
27518
ff2e0205b5a0
(turn_on_face, turn_off_face): Removed.
Jason Rumney <jasonr@gnu.org>
parents:
27395
diff
changeset
|
637 char_attr_normal = info.wAttributes; |
23572
1fa5f9f5c92e
(initialize_w32_display): Use buffer coords
Geoff Voelker <voelker@cs.washington.edu>
parents:
23563
diff
changeset
|
638 |
64111
a948ecc89102
(initialize_w32_display): Detect when the console
Jason Rumney <jasonr@gnu.org>
parents:
64084
diff
changeset
|
639 /* Determine if the info returned by GetConsoleScreenBufferInfo |
a948ecc89102
(initialize_w32_display): Detect when the console
Jason Rumney <jasonr@gnu.org>
parents:
64084
diff
changeset
|
640 is realistic. Old MS Telnet servers used to only fill out |
a948ecc89102
(initialize_w32_display): Detect when the console
Jason Rumney <jasonr@gnu.org>
parents:
64084
diff
changeset
|
641 the dwSize portion, even modern one fill the whole struct with |
a948ecc89102
(initialize_w32_display): Detect when the console
Jason Rumney <jasonr@gnu.org>
parents:
64084
diff
changeset
|
642 garbage when using non-MS telnet clients. */ |
a948ecc89102
(initialize_w32_display): Detect when the console
Jason Rumney <jasonr@gnu.org>
parents:
64084
diff
changeset
|
643 if ((w32_use_full_screen_buffer |
a948ecc89102
(initialize_w32_display): Detect when the console
Jason Rumney <jasonr@gnu.org>
parents:
64084
diff
changeset
|
644 && (info.dwSize.Y < 20 || info.dwSize.Y > 100 |
a948ecc89102
(initialize_w32_display): Detect when the console
Jason Rumney <jasonr@gnu.org>
parents:
64084
diff
changeset
|
645 || info.dwSize.X < 40 || info.dwSize.X > 200)) |
a948ecc89102
(initialize_w32_display): Detect when the console
Jason Rumney <jasonr@gnu.org>
parents:
64084
diff
changeset
|
646 || (!w32_use_full_screen_buffer |
a948ecc89102
(initialize_w32_display): Detect when the console
Jason Rumney <jasonr@gnu.org>
parents:
64084
diff
changeset
|
647 && (info.srWindow.Bottom - info.srWindow.Top < 20 |
a948ecc89102
(initialize_w32_display): Detect when the console
Jason Rumney <jasonr@gnu.org>
parents:
64084
diff
changeset
|
648 || info.srWindow.Bottom - info.srWindow.Top > 100 |
a948ecc89102
(initialize_w32_display): Detect when the console
Jason Rumney <jasonr@gnu.org>
parents:
64084
diff
changeset
|
649 || info.srWindow.Right - info.srWindow.Left < 40 |
a948ecc89102
(initialize_w32_display): Detect when the console
Jason Rumney <jasonr@gnu.org>
parents:
64084
diff
changeset
|
650 || info.srWindow.Right - info.srWindow.Left > 100))) |
a948ecc89102
(initialize_w32_display): Detect when the console
Jason Rumney <jasonr@gnu.org>
parents:
64084
diff
changeset
|
651 { |
a948ecc89102
(initialize_w32_display): Detect when the console
Jason Rumney <jasonr@gnu.org>
parents:
64084
diff
changeset
|
652 FRAME_LINES (SELECTED_FRAME ()) = 25; |
a948ecc89102
(initialize_w32_display): Detect when the console
Jason Rumney <jasonr@gnu.org>
parents:
64084
diff
changeset
|
653 SET_FRAME_COLS (SELECTED_FRAME (), 80); |
a948ecc89102
(initialize_w32_display): Detect when the console
Jason Rumney <jasonr@gnu.org>
parents:
64084
diff
changeset
|
654 } |
a948ecc89102
(initialize_w32_display): Detect when the console
Jason Rumney <jasonr@gnu.org>
parents:
64084
diff
changeset
|
655 |
a948ecc89102
(initialize_w32_display): Detect when the console
Jason Rumney <jasonr@gnu.org>
parents:
64084
diff
changeset
|
656 else if (w32_use_full_screen_buffer) |
24938
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
657 { |
51206
22a5614b558f
Make (few) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
50247
diff
changeset
|
658 FRAME_LINES (SELECTED_FRAME ()) = info.dwSize.Y; /* lines per page */ |
22a5614b558f
Make (few) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
50247
diff
changeset
|
659 SET_FRAME_COLS (SELECTED_FRAME (), info.dwSize.X); /* characters per line */ |
24938
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
660 } |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
661 else |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
662 { |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
663 /* Lines per page. Use buffer coords instead of buffer size. */ |
51206
22a5614b558f
Make (few) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
50247
diff
changeset
|
664 FRAME_LINES (SELECTED_FRAME ()) = 1 + info.srWindow.Bottom - |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
665 info.srWindow.Top; |
24938
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
666 /* Characters per line. Use buffer coords instead of buffer size. */ |
51206
22a5614b558f
Make (few) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
50247
diff
changeset
|
667 SET_FRAME_COLS (SELECTED_FRAME (), 1 + info.srWindow.Right - |
24938
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
668 info.srWindow.Left); |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
669 } |
27892
1857b9695885
Only disable window system features for dispextern.h
Jason Rumney <jasonr@gnu.org>
parents:
27518
diff
changeset
|
670 |
1857b9695885
Only disable window system features for dispextern.h
Jason Rumney <jasonr@gnu.org>
parents:
27518
diff
changeset
|
671 /* Setup w32_display_info structure for this frame. */ |
1857b9695885
Only disable window system features for dispextern.h
Jason Rumney <jasonr@gnu.org>
parents:
27518
diff
changeset
|
672 |
1857b9695885
Only disable window system features for dispextern.h
Jason Rumney <jasonr@gnu.org>
parents:
27518
diff
changeset
|
673 w32_initialize_display_info (build_string ("Console")); |
1857b9695885
Only disable window system features for dispextern.h
Jason Rumney <jasonr@gnu.org>
parents:
27518
diff
changeset
|
674 |
9907 | 675 } |
676 | |
677 DEFUN ("set-screen-color", Fset_screen_color, Sset_screen_color, 2, 2, 0, | |
40962
f66d09d1bb2f
Change doc-string comments to `new style'. [w/`doc:' keyword]. Doc fixes.
Jason Rumney <jasonr@gnu.org>
parents:
40656
diff
changeset
|
678 doc: /* Set screen colors. */) |
9907 | 679 (foreground, background) |
680 Lisp_Object foreground; | |
681 Lisp_Object background; | |
682 { | |
683 char_attr_normal = XFASTINT (foreground) + (XFASTINT (background) << 4); | |
684 | |
685 Frecenter (Qnil); | |
686 return Qt; | |
687 } | |
688 | |
689 DEFUN ("set-cursor-size", Fset_cursor_size, Sset_cursor_size, 1, 1, 0, | |
40962
f66d09d1bb2f
Change doc-string comments to `new style'. [w/`doc:' keyword]. Doc fixes.
Jason Rumney <jasonr@gnu.org>
parents:
40656
diff
changeset
|
690 doc: /* Set cursor size. */) |
9907 | 691 (size) |
692 Lisp_Object size; | |
693 { | |
694 CONSOLE_CURSOR_INFO cci; | |
695 cci.dwSize = XFASTINT (size); | |
696 cci.bVisible = TRUE; | |
697 (void) SetConsoleCursorInfo (cur_screen, &cci); | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40962
diff
changeset
|
698 |
9907 | 699 return Qt; |
700 } | |
701 | |
11389 | 702 void |
9907 | 703 syms_of_ntterm () |
704 { | |
24938
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
705 DEFVAR_BOOL ("w32-use-full-screen-buffer", |
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
706 &w32_use_full_screen_buffer, |
40962
f66d09d1bb2f
Change doc-string comments to `new style'. [w/`doc:' keyword]. Doc fixes.
Jason Rumney <jasonr@gnu.org>
parents:
40656
diff
changeset
|
707 doc: /* Non-nil means make terminal frames use the full screen buffer dimensions. |
71534
cb66cca12fa5
(syms_of_ntterm) <w32-use-full-screen-buffer>: Doc fix - default value changed.
John Paul Wallington <jpw@pobox.com>
parents:
68651
diff
changeset
|
708 This is desirable when running Emacs over telnet. |
40962
f66d09d1bb2f
Change doc-string comments to `new style'. [w/`doc:' keyword]. Doc fixes.
Jason Rumney <jasonr@gnu.org>
parents:
40656
diff
changeset
|
709 A value of nil means use the current console window dimensions; this |
f66d09d1bb2f
Change doc-string comments to `new style'. [w/`doc:' keyword]. Doc fixes.
Jason Rumney <jasonr@gnu.org>
parents:
40656
diff
changeset
|
710 may be preferrable when working directly at the console with a large |
f66d09d1bb2f
Change doc-string comments to `new style'. [w/`doc:' keyword]. Doc fixes.
Jason Rumney <jasonr@gnu.org>
parents:
40656
diff
changeset
|
711 scroll-back buffer. */); |
64111
a948ecc89102
(initialize_w32_display): Detect when the console
Jason Rumney <jasonr@gnu.org>
parents:
64084
diff
changeset
|
712 w32_use_full_screen_buffer = 0; |
24938
a4c871b96d4b
(w32_use_full_screen_buffer): New variable.
Andrew Innes <andrewi@gnu.org>
parents:
24755
diff
changeset
|
713 |
9907 | 714 defsubr (&Sset_screen_color); |
715 defsubr (&Sset_cursor_size); | |
11389 | 716 defsubr (&Sset_message_beep); |
9907 | 717 } |
52401 | 718 |
719 /* arch-tag: a390a07f-f661-42bc-aeb4-e6d8bf860337 | |
720 (do not change this comment) */ |