Mercurial > emacs
annotate src/msdos.c @ 16663:773436c9b680 libc-961211 libc-961212 libc-961213 libc-961214 libc-961215 libc-961216 libc-961217 libc-961218 libc-961219 libc-961220 libc-961221 libc-961222 libc-961223 libc-961224 libc-961225 libc-961226 libc-961227 libc-961228 libc-961229 libc-961230 libc-961231
* config.guess: Recognize machten.
From Eric W. Bates <ericx@vineyard.net>.
author | David J. MacKenzie <djm@gnu.org> |
---|---|
date | Wed, 11 Dec 1996 00:37:52 +0000 |
parents | 5c681a822a49 |
children | e4f0f7fe8304 |
rev | line source |
---|---|
7666
13a977e6777a
(dos_rawgetc): Doc fix. Make C-, S-, and M- modifiers
Richard M. Stallman <rms@gnu.org>
parents:
7523
diff
changeset
|
1 /* MS-DOS specific C utilities. |
14413
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
2 Copyright (C) 1993, 1994, 1995, 1996 Free Software Foundation, Inc. |
5503 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
10504 | 8 the Free Software Foundation; either version 2, or (at your option) |
5503 | 9 any later version. |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
14157
diff
changeset
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
14157
diff
changeset
|
19 Boston, MA 02111-1307, USA. */ |
5503 | 20 |
7666
13a977e6777a
(dos_rawgetc): Doc fix. Make C-, S-, and M- modifiers
Richard M. Stallman <rms@gnu.org>
parents:
7523
diff
changeset
|
21 /* Contributed by Morten Welinder */ |
13179 | 22 /* New display, keyboard, and mouse control by Kim F. Storm */ |
7666
13a977e6777a
(dos_rawgetc): Doc fix. Make C-, S-, and M- modifiers
Richard M. Stallman <rms@gnu.org>
parents:
7523
diff
changeset
|
23 |
5503 | 24 /* Note: some of the stuff here was taken from end of sysdep.c in demacs. */ |
25 | |
5980 | 26 #include <config.h> |
5503 | 27 |
28 #ifdef MSDOS | |
29 #include "lisp.h" | |
30 #include <stdio.h> | |
31 #include <stdlib.h> | |
32 #include <sys/param.h> | |
33 #include <sys/time.h> | |
34 #include <dos.h> | |
15125
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
35 #include <errno.h> |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
36 #include <sys/stat.h> /* for _fixpath */ |
14974
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
37 #if __DJGPP__ >= 2 |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
38 #include <fcntl.h> |
16598
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
39 #include <dpmi.h> /* for __dpmi_xxx stuff */ |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
40 #include <sys/farptr.h> /* for _farsetsel, _farnspokeb */ |
15125
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
41 #include <libc/dosio.h> /* for _USE_LFN */ |
14974
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
42 #endif |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
43 |
5503 | 44 #include "dosfns.h" |
45 #include "msdos.h" | |
46 #include "systime.h" | |
47 #include "termhooks.h" | |
9572 | 48 #include "dispextern.h" |
49 #include "termopts.h" | |
5503 | 50 #include "frame.h" |
9572 | 51 #include "window.h" |
16598
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
52 #include "buffer.h" |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
53 #include "commands.h" |
5503 | 54 #include <go32.h> |
55 #include <pc.h> | |
56 #include <ctype.h> | |
57 /* #include <process.h> */ | |
58 /* Damn that local process.h! Instead we can define P_WAIT ourselves. */ | |
59 #define P_WAIT 1 | |
60 | |
15125
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
61 #ifndef _USE_LFN |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
62 #define _USE_LFN 0 |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
63 #endif |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
64 |
14974
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
65 #if __DJGPP__ > 1 |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
66 |
14999 | 67 #include <signal.h> |
68 | |
14974
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
69 #ifndef SYSTEM_MALLOC |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
70 |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
71 #ifdef GNU_MALLOC |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
72 |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
73 /* If other `malloc' than ours is used, force our `sbrk' behave like |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
74 Unix programs expect (resize memory blocks to keep them contiguous). |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
75 If `sbrk' from `ralloc.c' is NOT used, also zero-out sbrk'ed memory, |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
76 because that's what `gmalloc' expects to get. */ |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
77 #include <crt0.h> |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
78 |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
79 #ifdef REL_ALLOC |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
80 int _crt0_startup_flags = _CRT0_FLAG_UNIX_SBRK; |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
81 #else /* not REL_ALLOC */ |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
82 int _crt0_startup_flags = (_CRT0_FLAG_UNIX_SBRK | _CRT0_FLAG_FILL_SBRK_MEMORY); |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
83 #endif /* not REL_ALLOC */ |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
84 #endif /* GNU_MALLOC */ |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
85 |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
86 #endif /* not SYSTEM_MALLOC */ |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
87 #endif /* __DJGPP__ > 1 */ |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
88 |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
89 static unsigned long |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
90 event_timestamp () |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
91 { |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
92 struct time t; |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
93 unsigned long s; |
13179 | 94 |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
95 gettime (&t); |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
96 s = t.ti_min; |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
97 s *= 60; |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
98 s += t.ti_sec; |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
99 s *= 1000; |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
100 s += t.ti_hund * 10; |
13179 | 101 |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
102 return s; |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
103 } |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
104 |
13179 | 105 |
106 /* ------------------------ Mouse control --------------------------- | |
107 * | |
108 * Coordinates are in screen positions and zero based. | |
109 * Mouse buttons are numbered from left to right and also zero based. | |
110 */ | |
5503 | 111 |
13179 | 112 int have_mouse; /* 0: no, 1: enabled, -1: disabled */ |
113 static int mouse_visible; | |
5503 | 114 |
13179 | 115 static int mouse_last_x; |
116 static int mouse_last_y; | |
5503 | 117 |
13179 | 118 static int mouse_button_translate[NUM_MOUSE_BUTTONS]; |
119 static int mouse_button_count; | |
5503 | 120 |
13179 | 121 void |
122 mouse_on () | |
123 { | |
124 union REGS regs; | |
5503 | 125 |
13179 | 126 if (have_mouse > 0 && !mouse_visible) |
127 { | |
128 if (termscript) | |
129 fprintf (termscript, "<M_ON>"); | |
130 regs.x.ax = 0x0001; | |
131 int86 (0x33, ®s, ®s); | |
132 mouse_visible = 1; | |
5503 | 133 } |
134 } | |
135 | |
13179 | 136 void |
137 mouse_off () | |
5503 | 138 { |
13179 | 139 union REGS regs; |
5503 | 140 |
13179 | 141 if (have_mouse > 0 && mouse_visible) |
5503 | 142 { |
13179 | 143 if (termscript) |
144 fprintf (termscript, "<M_OFF>"); | |
145 regs.x.ax = 0x0002; | |
146 int86 (0x33, ®s, ®s); | |
147 mouse_visible = 0; | |
5503 | 148 } |
149 } | |
150 | |
151 void | |
13179 | 152 mouse_moveto (x, y) |
153 int x, y; | |
5503 | 154 { |
13179 | 155 union REGS regs; |
156 | |
157 if (termscript) | |
158 fprintf (termscript, "<M_XY=%dx%d>", x, y); | |
159 regs.x.ax = 0x0004; | |
160 mouse_last_x = regs.x.cx = x * 8; | |
161 mouse_last_y = regs.x.dx = y * 8; | |
162 int86 (0x33, ®s, ®s); | |
5503 | 163 } |
164 | |
13179 | 165 static int |
166 mouse_pressed (b, xp, yp) | |
167 int b, *xp, *yp; | |
168 { | |
169 union REGS regs; | |
170 | |
171 if (b >= mouse_button_count) | |
172 return 0; | |
173 regs.x.ax = 0x0005; | |
174 regs.x.bx = mouse_button_translate[b]; | |
175 int86 (0x33, ®s, ®s); | |
176 if (regs.x.bx) | |
177 *xp = regs.x.cx / 8, *yp = regs.x.dx / 8; | |
178 return (regs.x.bx != 0); | |
179 } | |
180 | |
181 static int | |
182 mouse_released (b, xp, yp) | |
183 int b, *xp, *yp; | |
184 { | |
185 union REGS regs; | |
186 | |
187 if (b >= mouse_button_count) | |
188 return 0; | |
189 regs.x.ax = 0x0006; | |
190 regs.x.bx = mouse_button_translate[b]; | |
191 int86 (0x33, ®s, ®s); | |
192 if (regs.x.bx) | |
193 *xp = regs.x.cx / 8, *yp = regs.x.dx / 8; | |
194 return (regs.x.bx != 0); | |
195 } | |
196 | |
197 static void | |
198 mouse_get_xy (int *x, int *y) | |
5503 | 199 { |
200 union REGS regs; | |
201 | |
13179 | 202 regs.x.ax = 0x0003; |
203 int86 (0x33, ®s, ®s); | |
204 *x = regs.x.cx / 8; | |
205 *y = regs.x.dx / 8; | |
206 } | |
207 | |
208 void | |
209 mouse_get_pos (f, insist, bar_window, part, x, y, time) | |
210 FRAME_PTR *f; | |
211 int insist; | |
212 Lisp_Object *bar_window, *x, *y; | |
213 enum scroll_bar_part *part; | |
214 unsigned long *time; | |
215 { | |
216 int ix, iy; | |
217 union REGS regs; | |
218 | |
219 regs.x.ax = 0x0003; | |
220 int86 (0x33, ®s, ®s); | |
221 *f = selected_frame; | |
222 *bar_window = Qnil; | |
223 mouse_get_xy (&ix, &iy); | |
224 selected_frame->mouse_moved = 0; | |
225 *x = make_number (ix); | |
226 *y = make_number (iy); | |
227 *time = event_timestamp (); | |
228 } | |
229 | |
230 static void | |
231 mouse_check_moved () | |
232 { | |
233 int x, y; | |
234 | |
235 mouse_get_xy (&x, &y); | |
236 selected_frame->mouse_moved |= (x != mouse_last_x || y != mouse_last_y); | |
237 mouse_last_x = x; | |
238 mouse_last_y = y; | |
5503 | 239 } |
240 | |
13179 | 241 void |
242 mouse_init () | |
5503 | 243 { |
13179 | 244 union REGS regs; |
245 | |
246 if (termscript) | |
247 fprintf (termscript, "<M_INIT>"); | |
248 | |
249 regs.x.ax = 0x0021; | |
250 int86 (0x33, ®s, ®s); | |
251 | |
252 regs.x.ax = 0x0007; | |
253 regs.x.cx = 0; | |
254 regs.x.dx = 8 * (ScreenCols () - 1); | |
255 int86 (0x33, ®s, ®s); | |
256 | |
257 regs.x.ax = 0x0008; | |
258 regs.x.cx = 0; | |
259 regs.x.dx = 8 * (ScreenRows () - 1); | |
260 int86 (0x33, ®s, ®s); | |
261 | |
262 mouse_moveto (0, 0); | |
263 mouse_visible = 0; | |
264 } | |
13848
5f38596d591e
(have_menus_p): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
13744
diff
changeset
|
265 |
13179 | 266 /* ------------------------- Screen control ---------------------- |
267 * | |
268 */ | |
5503 | 269 |
13179 | 270 static int internal_terminal = 0; |
271 | |
272 #ifndef HAVE_X_WINDOWS | |
273 extern unsigned char ScreenAttrib; | |
274 static int screen_face; | |
275 static int highlight; | |
276 | |
277 static int screen_size_X; | |
278 static int screen_size_Y; | |
279 static int screen_size; | |
280 | |
281 static int current_pos_X; | |
282 static int current_pos_Y; | |
283 static int new_pos_X; | |
284 static int new_pos_Y; | |
285 | |
286 static void *startup_screen_buffer; | |
287 static int startup_screen_size_X; | |
288 static int startup_screen_size_Y; | |
289 static int startup_pos_X; | |
290 static int startup_pos_Y; | |
13717
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
291 static unsigned char startup_screen_attrib; |
13179 | 292 |
293 static int term_setup_done; | |
294 | |
295 /* Similar to the_only_frame. */ | |
13394
c4549fcdd5f3
(the_only_x_display): Type is now struct x_output.
Karl Heuer <kwzh@gnu.org>
parents:
13305
diff
changeset
|
296 struct x_output the_only_x_display; |
13179 | 297 |
298 /* This is never dereferenced. */ | |
299 Display *x_current_display; | |
5503 | 300 |
13179 | 301 static |
302 dos_direct_output (y, x, buf, len) | |
303 int y; | |
304 int x; | |
305 char *buf; | |
306 int len; | |
5503 | 307 { |
13179 | 308 int t = (int) ScreenPrimary + 2 * (x + y * screen_size_X); |
16598
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
309 |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
310 #if (__DJGPP__ < 2) |
13179 | 311 while (--len >= 0) { |
312 dosmemput (buf++, 1, t); | |
313 t += 2; | |
314 } | |
16598
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
315 #else |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
316 /* This is faster. */ |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
317 for (_farsetsel (_dos_ds); --len >= 0; t += 2, buf++) |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
318 _farnspokeb (t, *buf); |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
319 #endif |
5503 | 320 } |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
321 #endif |
5503 | 322 |
323 /* Flash the screen as a substitute for BEEPs. */ | |
324 | |
13179 | 325 #if (__DJGPP__ < 2) |
7273
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
326 static void |
7667
bae9c0fa1c2f
(do_visible_bell): Renamed from visible_bell to avoid
Richard M. Stallman <rms@gnu.org>
parents:
7666
diff
changeset
|
327 do_visible_bell (xorattr) |
5503 | 328 unsigned char xorattr; |
329 { | |
7273
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
330 asm volatile |
8183
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
331 (" movb $1,%%dl |
5503 | 332 visible_bell_0: |
8183
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
333 movl _ScreenPrimary,%%eax |
7273
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
334 call dosmemsetup |
8183
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
335 movl %%eax,%%ebx |
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
336 movl %1,%%ecx |
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
337 movb %0,%%al |
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
338 incl %%ebx |
5503 | 339 visible_bell_1: |
8183
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
340 xorb %%al,%%gs:(%%ebx) |
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
341 addl $2,%%ebx |
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
342 decl %%ecx |
7273
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
343 jne visible_bell_1 |
8183
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
344 decb %%dl |
7273
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
345 jne visible_bell_3 |
5503 | 346 visible_bell_2: |
8183
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
347 movzwl %%ax,%%eax |
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
348 movzwl %%ax,%%eax |
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
349 movzwl %%ax,%%eax |
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
350 movzwl %%ax,%%eax |
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
351 decw %%cx |
7273
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
352 jne visible_bell_2 |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
353 jmp visible_bell_0 |
8183
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
354 visible_bell_3:" |
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
355 : /* no output */ |
13179 | 356 : "m" (xorattr), "g" (screen_size) |
8183
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
357 : "%eax", "%ebx", /* "%gs",*/ "%ecx", "%edx"); |
5503 | 358 } |
359 | |
13179 | 360 static void |
361 ScreenVisualBell (void) | |
362 { | |
363 /* This creates an xor-mask that will swap the default fore- and | |
364 background colors. */ | |
365 do_visible_bell (((the_only_x_display.foreground_pixel | |
366 ^ the_only_x_display.background_pixel) | |
367 * 0x11) & 0x7f); | |
368 } | |
369 #endif | |
370 | |
371 #ifndef HAVE_X_WINDOWS | |
372 | |
15341
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
373 /* Enable bright background colors. */ |
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
374 static void |
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
375 bright_bg (void) |
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
376 { |
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
377 union REGS regs; |
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
378 |
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
379 regs.h.bl = 0; |
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
380 regs.x.ax = 0x1003; |
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
381 int86 (0x10, ®s, ®s); |
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
382 } |
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
383 |
14284
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
384 /* Set the screen dimensions so that it can show no less than |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
385 ROWS x COLS frame. */ |
14413
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
386 |
14284
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
387 void |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
388 dos_set_window_size (rows, cols) |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
389 int *rows, *cols; |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
390 { |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
391 char video_name[30]; |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
392 Lisp_Object video_mode; |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
393 int video_mode_value; |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
394 int have_vga = 0; |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
395 union REGS regs; |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
396 int current_rows = ScreenRows (), current_cols = ScreenCols (); |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
397 |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
398 if (*rows == current_rows && *cols == current_cols) |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
399 return; |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
400 |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
401 /* Do we have a VGA? */ |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
402 regs.x.ax = 0x1a00; |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
403 int86 (0x10, ®s, ®s); |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
404 if (regs.h.al == 0x1a && regs.h.bl > 5 && regs.h.bl < 13) |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
405 have_vga = 1; |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
406 |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
407 mouse_off (); |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
408 |
14413
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
409 /* If the user specified a special video mode for these dimensions, |
14284
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
410 use that mode. */ |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
411 sprintf (video_name, "screen-dimensions-%dx%d", *rows, *cols); |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
412 video_mode = XSYMBOL (Fintern_soft (build_string (video_name), |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
413 Qnil))-> value; |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
414 |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
415 if (INTEGERP (video_mode) |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
416 && (video_mode_value = XINT (video_mode)) > 0) |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
417 { |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
418 regs.x.ax = video_mode_value; |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
419 int86 (0x10, ®s, ®s); |
14413
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
420 |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
421 if (have_mouse) |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
422 { |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
423 /* Must hardware-reset the mouse, or else it won't update |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
424 its notion of screen dimensions for some non-standard |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
425 video modes. This is *painfully* slow... */ |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
426 regs.x.ax = 0; |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
427 int86 (0x33, ®s, ®s); |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
428 } |
14284
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
429 } |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
430 |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
431 /* Find one of the dimensions supported by standard EGA/VGA |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
432 which gives us at least the required dimensions. */ |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
433 |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
434 #if __DJGPP__ > 1 |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
435 |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
436 else |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
437 { |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
438 static struct { |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
439 int rows; |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
440 int need_vga; |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
441 } std_dimension[] = { |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
442 {25, 0}, |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
443 {28, 1}, |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
444 {35, 0}, |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
445 {40, 1}, |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
446 {43, 0}, |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
447 {50, 1} |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
448 }; |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
449 int i = 0; |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
450 |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
451 while (i < sizeof (std_dimension) / sizeof (std_dimension[0])) |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
452 { |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
453 if (std_dimension[i].need_vga <= have_vga |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
454 && std_dimension[i].rows >= *rows) |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
455 { |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
456 if (std_dimension[i].rows != current_rows |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
457 || *cols != current_cols) |
14413
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
458 _set_screen_lines (std_dimension[i].rows); |
14284
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
459 break; |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
460 } |
14413
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
461 i++; |
14284
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
462 } |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
463 } |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
464 |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
465 #else /* not __DJGPP__ > 1 */ |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
466 |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
467 else if (*rows <= 25) |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
468 { |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
469 if (current_rows != 25 || current_cols != 80) |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
470 { |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
471 regs.x.ax = 3; |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
472 int86 (0x10, ®s, ®s); |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
473 regs.x.ax = 0x1101; |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
474 regs.h.bl = 0; |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
475 int86 (0x10, ®s, ®s); |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
476 regs.x.ax = 0x1200; |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
477 regs.h.bl = 32; |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
478 int86 (0x10, ®s, ®s); |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
479 regs.x.ax = 3; |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
480 int86 (0x10, ®s, ®s); |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
481 } |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
482 } |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
483 else if (*rows <= 50) |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
484 if (have_vga && (current_rows != 50 || current_cols != 80) |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
485 || *rows <= 43 && (current_rows != 43 || current_cols != 80)) |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
486 { |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
487 regs.x.ax = 3; |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
488 int86 (0x10, ®s, ®s); |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
489 regs.x.ax = 0x1112; |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
490 regs.h.bl = 0; |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
491 int86 (0x10, ®s, ®s); |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
492 regs.x.ax = 0x1200; |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
493 regs.h.bl = 32; |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
494 int86 (0x10, ®s, ®s); |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
495 regs.x.ax = 0x0100; |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
496 regs.x.cx = 7; |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
497 int86 (0x10, ®s, ®s); |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
498 } |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
499 #endif /* not __DJGPP__ > 1 */ |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
500 |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
501 if (have_mouse) |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
502 { |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
503 mouse_init (); |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
504 mouse_on (); |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
505 } |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
506 |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
507 /* Tell the caller what dimensions have been REALLY set. */ |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
508 *rows = ScreenRows (); |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
509 *cols = ScreenCols (); |
15341
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
510 |
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
511 /* Enable bright background colors. */ |
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
512 bright_bg (); |
14284
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
513 } |
0eaecdc13142
(dos_set_window_size): New function; switches the screen
Karl Heuer <kwzh@gnu.org>
parents:
14279
diff
changeset
|
514 |
14413
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
515 /* If we write a character in the position where the mouse is, |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
516 the mouse cursor may need to be refreshed. */ |
7744
da18793f532d
(output_string): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7667
diff
changeset
|
517 |
da18793f532d
(output_string): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7667
diff
changeset
|
518 static void |
13179 | 519 mouse_off_maybe () |
7744
da18793f532d
(output_string): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7667
diff
changeset
|
520 { |
13179 | 521 int x, y; |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
522 |
13179 | 523 if (!mouse_visible) |
524 return; | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
525 |
13179 | 526 mouse_get_xy (&x, &y); |
527 if (y != new_pos_Y || x < new_pos_X) | |
528 return; | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
529 |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
530 mouse_off (); |
9572 | 531 } |
532 | |
533 static | |
534 IT_ring_bell () | |
535 { | |
536 if (visible_bell) | |
537 { | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
538 mouse_off (); |
13179 | 539 ScreenVisualBell (); |
9572 | 540 } |
541 else | |
13305
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
542 { |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
543 union REGS inregs, outregs; |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
544 inregs.h.ah = 2; |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
545 inregs.h.dl = 7; |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
546 intdos (&inregs, &outregs); |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
547 } |
9572 | 548 } |
549 | |
550 static void | |
551 IT_set_face (int face) | |
552 { | |
553 struct face *fp; | |
554 extern struct face *intern_face (/* FRAME_PTR, struct face * */); | |
555 | |
556 if (face == 1 || (face == 0 && highlight)) | |
557 fp = FRAME_MODE_LINE_FACE (foo); | |
558 else if (face <= 0 || face >= FRAME_N_COMPUTED_FACES (foo)) | |
559 fp = FRAME_DEFAULT_FACE (foo); | |
560 else | |
561 fp = intern_face (selected_frame, FRAME_COMPUTED_FACES (foo)[face]); | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
562 if (termscript) |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
563 fprintf (termscript, "<FACE:%d:%d>", FACE_FOREGROUND (fp), FACE_BACKGROUND (fp)); |
13179 | 564 screen_face = face; |
565 ScreenAttrib = (FACE_BACKGROUND (fp) << 4) | FACE_FOREGROUND (fp); | |
9572 | 566 } |
567 | |
568 static | |
569 IT_write_glyphs (GLYPH *str, int len) | |
570 { | |
571 int newface; | |
13179 | 572 int ch, l = len; |
573 unsigned char *buf, *bp; | |
574 | |
575 if (len == 0) return; | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
576 |
13179 | 577 buf = bp = alloca (len * 2); |
578 | |
579 while (--l >= 0) | |
9572 | 580 { |
581 newface = FAST_GLYPH_FACE (*str); | |
13179 | 582 if (newface != screen_face) |
583 IT_set_face (newface); | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
584 ch = FAST_GLYPH_CHAR (*str); |
13179 | 585 *bp++ = (unsigned char)ch; |
586 *bp++ = ScreenAttrib; | |
587 | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
588 if (termscript) |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
589 fputc (ch, termscript); |
13179 | 590 str++; |
9572 | 591 } |
13179 | 592 |
593 mouse_off_maybe (); | |
594 dosmemput (buf, 2 * len, | |
595 (int)ScreenPrimary + 2 * (new_pos_X + screen_size_X * new_pos_Y)); | |
596 new_pos_X += len; | |
9572 | 597 } |
598 | |
599 static | |
600 IT_clear_end_of_line (first_unused) | |
601 { | |
13179 | 602 char *spaces, *sp; |
603 int i, j; | |
604 | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
605 IT_set_face (0); |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
606 if (termscript) |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
607 fprintf (termscript, "<CLR:EOL>"); |
13179 | 608 i = (j = screen_size_X - new_pos_X) * 2; |
609 spaces = sp = alloca (i); | |
610 | |
611 while (--j >= 0) | |
612 { | |
613 *sp++ = ' '; | |
614 *sp++ = ScreenAttrib; | |
615 } | |
616 | |
617 mouse_off_maybe (); | |
618 dosmemput (spaces, i, | |
619 (int)ScreenPrimary + 2 * (new_pos_X + screen_size_X * new_pos_Y)); | |
620 } | |
621 | |
622 static | |
623 IT_clear_screen (void) | |
624 { | |
625 if (termscript) | |
626 fprintf (termscript, "<CLR:SCR>"); | |
627 IT_set_face (0); | |
628 mouse_off (); | |
629 ScreenClear (); | |
630 new_pos_X = new_pos_Y = 0; | |
631 } | |
632 | |
633 static | |
634 IT_clear_to_end (void) | |
635 { | |
636 if (termscript) | |
637 fprintf (termscript, "<CLR:EOS>"); | |
638 | |
639 while (new_pos_Y < screen_size_Y) { | |
640 new_pos_X = 0; | |
641 IT_clear_end_of_line (0); | |
642 new_pos_Y++; | |
643 } | |
9572 | 644 } |
645 | |
646 static | |
647 IT_cursor_to (int y, int x) | |
648 { | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
649 if (termscript) |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
650 fprintf (termscript, "\n<XY=%dx%d>", x, y); |
13179 | 651 new_pos_X = x; |
652 new_pos_Y = y; | |
9572 | 653 } |
654 | |
16598
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
655 static int cursor_cleared; |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
656 |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
657 static |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
658 IT_display_cursor (int on) |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
659 { |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
660 if (on && cursor_cleared) |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
661 { |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
662 ScreenSetCursor (current_pos_Y, current_pos_X); |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
663 cursor_cleared = 0; |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
664 } |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
665 else if (!on && !cursor_cleared) |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
666 { |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
667 ScreenSetCursor (-1, -1); |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
668 cursor_cleared = 1; |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
669 } |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
670 } |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
671 |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
672 /* Emacs calls cursor-movement functions a lot when it updates the |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
673 display (probably a legacy of old terminals where you cannot |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
674 update a screen line without first moving the cursor there). |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
675 However, cursor movement is expensive on MSDOS (it calls a slow |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
676 BIOS function and requires 2 mode switches), while actual screen |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
677 updates access the video memory directly and don't depend on |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
678 cursor position. To avoid slowing down the redisplay, we cheat: |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
679 all functions that move the cursor only set internal variables |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
680 which record the cursor position, whereas the cursor is only |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
681 moved to its final position whenever screen update is complete. |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
682 |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
683 `IT_cmgoto' is called from the keyboard reading loop and when the |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
684 frame update is complete. This means that we are ready for user |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
685 input, so we update the cursor position to show where the point is, |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
686 and also make the mouse pointer visible. |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
687 |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
688 Special treatment is required when the cursor is in the echo area, |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
689 to put the cursor at the end of the text displayed there. */ |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
690 |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
691 static |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
692 IT_cmgoto (f) |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
693 FRAME_PTR f; |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
694 { |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
695 /* Only set the cursor to where it should be if the display is |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
696 already in sync with the window contents. */ |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
697 int update_cursor_pos = MODIFF == unchanged_modified; |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
698 |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
699 /* If we are in the echo area, put the cursor at the end of text. */ |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
700 if (!update_cursor_pos |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
701 && XFASTINT (XWINDOW (FRAME_MINIBUF_WINDOW (f))->top) <= new_pos_Y) |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
702 { |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
703 new_pos_X = FRAME_DESIRED_GLYPHS (f)->used[new_pos_Y]; |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
704 update_cursor_pos = 1; |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
705 } |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
706 |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
707 if (update_cursor_pos |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
708 && (current_pos_X != new_pos_X || current_pos_Y != new_pos_Y)) |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
709 { |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
710 ScreenSetCursor (current_pos_Y = new_pos_Y, current_pos_X = new_pos_X); |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
711 if (termscript) |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
712 fprintf (termscript, "\n<CURSOR:%dx%d>", current_pos_X, current_pos_Y); |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
713 } |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
714 |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
715 /* Maybe cursor is invisible, so make it visible. */ |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
716 IT_display_cursor (1); |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
717 |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
718 /* Mouse pointer should be always visible if we are waiting for |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
719 keyboard input. */ |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
720 if (!mouse_visible) |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
721 mouse_on (); |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
722 } |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
723 |
13179 | 724 static |
9572 | 725 IT_reassert_line_highlight (new, vpos) |
726 int new, vpos; | |
727 { | |
728 highlight = new; | |
729 IT_set_face (0); /* To possibly clear the highlighting. */ | |
730 } | |
731 | |
732 static | |
733 IT_change_line_highlight (new_highlight, vpos, first_unused_hpos) | |
734 { | |
735 highlight = new_highlight; | |
736 IT_set_face (0); /* To possibly clear the highlighting. */ | |
737 IT_cursor_to (vpos, 0); | |
738 IT_clear_end_of_line (first_unused_hpos); | |
739 } | |
740 | |
741 static | |
742 IT_update_begin () | |
743 { | |
744 highlight = 0; | |
745 IT_set_face (0); /* To possibly clear the highlighting. */ | |
13179 | 746 screen_face = -1; |
747 } | |
748 | |
749 static | |
750 IT_update_end () | |
751 { | |
9572 | 752 } |
753 | |
15387
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
754 /* This was more or less copied from xterm.c |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
755 |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
756 Nowadays, the corresponding function under X is `x_set_menu_bar_lines_1' |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
757 on xfns.c */ |
14413
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
758 |
9572 | 759 static void |
760 IT_set_menu_bar_lines (window, n) | |
14413
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
761 Lisp_Object window; |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
762 int n; |
9572 | 763 { |
764 struct window *w = XWINDOW (window); | |
765 | |
13646
7714b87119a3
(IT_set_menu_bar_lines): Clear last_modified field.
Richard M. Stallman <rms@gnu.org>
parents:
13642
diff
changeset
|
766 XSETFASTINT (w->last_modified, 0); |
16210
4c03f0e575d7
(IT_set_menu_bar_lines): Clear last_overlay_modified field.
Richard M. Stallman <rms@gnu.org>
parents:
15627
diff
changeset
|
767 XSETFASTINT (w->last_overlay_modified, 0); |
9572 | 768 XSETFASTINT (w->top, XFASTINT (w->top) + n); |
769 XSETFASTINT (w->height, XFASTINT (w->height) - n); | |
770 | |
771 /* Handle just the top child in a vertical split. */ | |
772 if (!NILP (w->vchild)) | |
773 IT_set_menu_bar_lines (w->vchild, n); | |
774 | |
775 /* Adjust all children in a horizontal split. */ | |
776 for (window = w->hchild; !NILP (window); window = w->next) | |
777 { | |
778 w = XWINDOW (window); | |
779 IT_set_menu_bar_lines (window, n); | |
780 } | |
781 } | |
782 | |
15387
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
783 /* This was copied from xfns.c */ |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
784 |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
785 void |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
786 x_set_menu_bar_lines (f, value, oldval) |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
787 struct frame *f; |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
788 Lisp_Object value, oldval; |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
789 { |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
790 int nlines; |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
791 int olines = FRAME_MENU_BAR_LINES (f); |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
792 |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
793 /* Right now, menu bars don't work properly in minibuf-only frames; |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
794 most of the commands try to apply themselves to the minibuffer |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
795 frame itslef, and get an error because you can't switch buffers |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
796 in or split the minibuffer window. */ |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
797 if (FRAME_MINIBUF_ONLY_P (f)) |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
798 return; |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
799 |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
800 if (INTEGERP (value)) |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
801 nlines = XINT (value); |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
802 else |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
803 nlines = 0; |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
804 |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
805 FRAME_MENU_BAR_LINES (f) = nlines; |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
806 IT_set_menu_bar_lines (f->root_window, nlines - olines); |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
807 } |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
808 |
14413
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
809 /* IT_set_terminal_modes is called when emacs is started, |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
810 resumed, and whenever the screen is redrawn! */ |
13179 | 811 |
812 static | |
813 IT_set_terminal_modes (void) | |
814 { | |
815 char *colors; | |
816 FRAME_PTR f; | |
817 struct face *fp; | |
818 | |
819 if (termscript) | |
820 fprintf (termscript, "\n<SET_TERM>"); | |
821 highlight = 0; | |
822 | |
823 screen_size_X = ScreenCols (); | |
824 screen_size_Y = ScreenRows (); | |
825 screen_size = screen_size_X * screen_size_Y; | |
826 | |
827 new_pos_X = new_pos_Y = 0; | |
828 current_pos_X = current_pos_Y = -1; | |
829 | |
830 if (term_setup_done) | |
831 return; | |
832 term_setup_done = 1; | |
833 | |
834 startup_screen_size_X = screen_size_X; | |
835 startup_screen_size_Y = screen_size_Y; | |
13717
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
836 startup_screen_attrib = ScreenAttrib; |
13179 | 837 |
838 ScreenGetCursor (&startup_pos_Y, &startup_pos_X); | |
839 ScreenRetrieve (startup_screen_buffer = xmalloc (screen_size * 2)); | |
840 | |
841 if (termscript) | |
13717
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
842 fprintf (termscript, "<SCREEN SAVED (dimensions=%dx%d)>\n", |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
843 screen_size_X, screen_size_Y); |
15341
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
844 |
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
845 bright_bg (); |
13179 | 846 } |
847 | |
14413
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
848 /* IT_reset_terminal_modes is called when emacs is |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
849 suspended or killed. */ |
13179 | 850 |
851 static | |
852 IT_reset_terminal_modes (void) | |
853 { | |
13717
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
854 int display_row_start = (int) ScreenPrimary; |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
855 int saved_row_len = startup_screen_size_X * 2; |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
856 int update_row_len = ScreenCols () * 2; |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
857 int current_rows = ScreenRows (); |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
858 int to_next_row = update_row_len; |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
859 unsigned char *saved_row = startup_screen_buffer; |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
860 int cursor_pos_X = ScreenCols () - 1; |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
861 int cursor_pos_Y = ScreenRows () - 1; |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
862 |
13179 | 863 if (termscript) |
13274 | 864 fprintf (termscript, "\n<RESET_TERM>"); |
13179 | 865 |
866 highlight = 0; | |
867 | |
868 if (!term_setup_done) | |
869 return; | |
870 | |
13717
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
871 mouse_off (); |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
872 |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
873 /* We have a situation here. |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
874 We cannot just do ScreenUpdate(startup_screen_buffer) because |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
875 the luser could have changed screen dimensions inside Emacs |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
876 and failed (or didn't want) to restore them before killing |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
877 Emacs. ScreenUpdate() uses the *current* screen dimensions and |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
878 thus will happily use memory outside what was allocated for |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
879 `startup_screen_buffer'. |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
880 Thus we only restore as much as the current screen dimensions |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
881 can hold, and clear the rest (if the saved screen is smaller than |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
882 the current) with the color attribute saved at startup. The cursor |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
883 is also restored within the visible dimensions. */ |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
884 |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
885 ScreenAttrib = startup_screen_attrib; |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
886 ScreenClear (); |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
887 |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
888 if (update_row_len > saved_row_len) |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
889 update_row_len = saved_row_len; |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
890 if (current_rows > startup_screen_size_Y) |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
891 current_rows = startup_screen_size_Y; |
13179 | 892 |
893 if (termscript) | |
13717
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
894 fprintf (termscript, "<SCREEN RESTORED (dimensions=%dx%d)>\n", |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
895 update_row_len / 2, current_rows); |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
896 |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
897 while (current_rows--) |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
898 { |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
899 dosmemput (saved_row, update_row_len, display_row_start); |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
900 saved_row += saved_row_len; |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
901 display_row_start += to_next_row; |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
902 } |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
903 if (startup_pos_X < cursor_pos_X) |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
904 cursor_pos_X = startup_pos_X; |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
905 if (startup_pos_Y < cursor_pos_Y) |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
906 cursor_pos_Y = startup_pos_Y; |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
907 |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
908 ScreenSetCursor (cursor_pos_Y, cursor_pos_X); |
d7bb4093a950
(IT_set_terminal_modes): Save screen color attribute
Karl Heuer <kwzh@gnu.org>
parents:
13714
diff
changeset
|
909 xfree (startup_screen_buffer); |
13179 | 910 |
911 term_setup_done = 0; | |
912 } | |
913 | |
914 static | |
915 IT_set_terminal_window (void) | |
916 { | |
917 } | |
918 | |
9572 | 919 void |
15387
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
920 IT_set_frame_parameters (f, alist) |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
921 FRAME_PTR f; |
9572 | 922 Lisp_Object alist; |
923 { | |
924 Lisp_Object tail; | |
925 int redraw; | |
926 extern unsigned long load_color (); | |
927 | |
928 redraw = 0; | |
929 for (tail = alist; CONSP (tail); tail = Fcdr (tail)) | |
930 { | |
931 Lisp_Object elt, prop, val; | |
932 | |
933 elt = Fcar (tail); | |
934 prop = Fcar (elt); | |
935 val = Fcdr (elt); | |
936 CHECK_SYMBOL (prop, 1); | |
937 | |
938 if (EQ (prop, intern ("foreground-color"))) | |
939 { | |
940 unsigned long new_color = load_color (f, val); | |
941 if (new_color != ~0) | |
942 { | |
943 FRAME_FOREGROUND_PIXEL (f) = new_color; | |
944 redraw = 1; | |
15341
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
945 if (termscript) |
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
946 fprintf (termscript, "<FGCOLOR %d>\n", new_color); |
9572 | 947 } |
948 } | |
949 else if (EQ (prop, intern ("background-color"))) | |
950 { | |
951 unsigned long new_color = load_color (f, val); | |
952 if (new_color != ~0) | |
953 { | |
15341
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
954 FRAME_BACKGROUND_PIXEL (f) = new_color; |
9572 | 955 redraw = 1; |
15341
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
956 if (termscript) |
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
957 fprintf (termscript, "<BGCOLOR %d>\n", new_color); |
9572 | 958 } |
959 } | |
960 else if (EQ (prop, intern ("menu-bar-lines"))) | |
15387
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
961 x_set_menu_bar_lines (f, val, 0); |
9572 | 962 } |
963 | |
964 if (redraw) | |
965 { | |
966 recompute_basic_faces (f); | |
15387
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
967 if (f == selected_frame) |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
968 redraw_frame (f); |
9572 | 969 } |
970 } | |
971 | |
13179 | 972 #endif /* !HAVE_X_WINDOWS */ |
9572 | 973 |
974 | |
14413
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
975 /* Do we need the internal terminal? */ |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
976 |
5503 | 977 void |
978 internal_terminal_init () | |
979 { | |
980 char *term = getenv ("TERM"); | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
981 char *colors; |
13179 | 982 |
9572 | 983 #ifdef HAVE_X_WINDOWS |
984 if (!inhibit_window_system) | |
985 return; | |
986 #endif | |
987 | |
5503 | 988 internal_terminal |
989 = (!noninteractive) && term && !strcmp (term, "internal"); | |
9572 | 990 |
13179 | 991 if (getenv ("EMACSTEST")) |
13274 | 992 termscript = fopen (getenv ("EMACSTEST"), "wt"); |
13179 | 993 |
9572 | 994 #ifndef HAVE_X_WINDOWS |
13179 | 995 if (!internal_terminal || inhibit_window_system) |
9572 | 996 { |
15387
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
997 selected_frame->output_method = output_termcap; |
13179 | 998 return; |
999 } | |
9572 | 1000 |
13179 | 1001 Vwindow_system = intern ("pc"); |
1002 Vwindow_system_version = make_number (1); | |
1003 | |
1004 bzero (&the_only_x_display, sizeof the_only_x_display); | |
1005 the_only_x_display.background_pixel = 7; /* White */ | |
1006 the_only_x_display.foreground_pixel = 0; /* Black */ | |
15341
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
1007 bright_bg (); |
13274 | 1008 colors = getenv ("EMACSCOLORS"); |
13179 | 1009 if (colors && strlen (colors) >= 2) |
1010 { | |
15341
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
1011 /* The colors use 4 bits each (we enable bright background). */ |
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
1012 if (isdigit (colors[0])) |
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
1013 colors[0] -= '0'; |
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
1014 else if (isxdigit (colors[0])) |
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
1015 colors[0] -= (isupper (colors[0]) ? 'A' : 'a') - 10; |
14974
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
1016 if (colors[0] >= 0 && colors[0] < 16) |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
1017 the_only_x_display.foreground_pixel = colors[0]; |
15341
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
1018 if (isdigit (colors[1])) |
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
1019 colors[1] -= '0'; |
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
1020 else if (isxdigit (colors[1])) |
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
1021 colors[1] -= (isupper (colors[1]) ? 'A' : 'a') - 10; |
8a0f5a5937e5
(bright_bg): New function, enables bright background colors.
Richard M. Stallman <rms@gnu.org>
parents:
15222
diff
changeset
|
1022 if (colors[1] >= 0 && colors[1] < 16) |
14974
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
1023 the_only_x_display.background_pixel = colors[1]; |
13179 | 1024 } |
1025 the_only_x_display.line_height = 1; | |
13625
397f07418271
(internal_terminal_init): Initialize the_only_x_display.font.
Richard M. Stallman <rms@gnu.org>
parents:
13624
diff
changeset
|
1026 the_only_x_display.font = (XFontStruct *)1; /* must *not* be zero */ |
9572 | 1027 |
15387
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
1028 init_frame_faces (selected_frame); |
13179 | 1029 |
1030 ring_bell_hook = IT_ring_bell; | |
1031 write_glyphs_hook = IT_write_glyphs; | |
1032 cursor_to_hook = raw_cursor_to_hook = IT_cursor_to; | |
1033 clear_to_end_hook = IT_clear_to_end; | |
1034 clear_end_of_line_hook = IT_clear_end_of_line; | |
1035 clear_frame_hook = IT_clear_screen; | |
1036 change_line_highlight_hook = IT_change_line_highlight; | |
1037 update_begin_hook = IT_update_begin; | |
1038 update_end_hook = IT_update_end; | |
1039 reassert_line_highlight_hook = IT_reassert_line_highlight; | |
16598
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
1040 frame_up_to_date_hook = IT_cmgoto; /* position cursor when update is done */ |
13179 | 1041 |
1042 /* These hooks are called by term.c without being checked. */ | |
1043 set_terminal_modes_hook = IT_set_terminal_modes; | |
1044 reset_terminal_modes_hook = IT_reset_terminal_modes; | |
1045 set_terminal_window_hook = IT_set_terminal_window; | |
9572 | 1046 #endif |
5503 | 1047 } |
13179 | 1048 |
1049 dos_get_saved_screen (screen, rows, cols) | |
1050 char **screen; | |
1051 int *rows; | |
1052 int *cols; | |
1053 { | |
1054 #ifndef HAVE_X_WINDOWS | |
1055 *screen = startup_screen_buffer; | |
1056 *cols = startup_screen_size_X; | |
1057 *rows = startup_screen_size_Y; | |
1058 return 1; | |
1059 #else | |
1060 return 0; | |
1061 #endif | |
1062 } | |
15387
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
1063 |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
1064 #ifndef HAVE_X_WINDOWS |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
1065 |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
1066 /* We are not X, but we can emulate it well enough for our needs... */ |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
1067 void |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
1068 check_x (void) |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
1069 { |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
1070 if (! FRAME_MSDOS_P (selected_frame)) |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
1071 error ("Not running under a windows system"); |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
1072 } |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
1073 |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
1074 #endif |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
1075 |
13274 | 1076 |
13179 | 1077 /* ----------------------- Keyboard control ---------------------- |
1078 * | |
1079 * Keymaps reflect the following keyboard layout: | |
1080 * | |
1081 * 0 1 2 3 4 5 6 7 8 9 10 11 12 BS | |
1082 * TAB 15 16 17 18 19 20 21 22 23 24 25 26 (41) | |
1083 * CLOK 30 31 32 33 34 35 36 37 38 39 40 (41) RET | |
1084 * SH () 45 46 47 48 49 50 51 52 53 54 SHIFT | |
1085 * SPACE | |
1086 */ | |
1087 | |
1088 static int extended_kbd; /* 101 (102) keyboard present. */ | |
1089 | |
1090 struct dos_keyboard_map | |
1091 { | |
1092 char *unshifted; | |
1093 char *shifted; | |
1094 char *alt_gr; | |
1095 }; | |
1096 | |
13040
169d50e2ee4c
(gettimeofday, init_gettimeofday, daylight, gmtoffset): Undo previous change.
Paul Eggert <eggert@twinsun.com>
parents:
13020
diff
changeset
|
1097 |
13179 | 1098 static struct dos_keyboard_map us_keyboard = { |
1099 /* 0 1 2 3 4 5 */ | |
1100 /* 01234567890123456789012345678901234567890 12345678901234 */ | |
1101 "`1234567890-= qwertyuiop[] asdfghjkl;'\\ zxcvbnm,./ ", | |
1102 /* 0123456789012345678901234567890123456789 012345678901234 */ | |
1103 "~!@#$%^&*()_+ QWERTYUIOP{} ASDFGHJKL:\"| ZXCVBNM<>? ", | |
1104 0 /* no Alt-Gr key */ | |
1105 }; | |
1106 | |
1107 static struct dos_keyboard_map fr_keyboard = { | |
1108 /* 0 1 2 3 4 5 */ | |
1109 /* 012 3456789012345678901234567890123456789012345678901234 */ | |
1110 "ý&‚\",(-Š_€…)= azertyuiop^$ qsdfghjklm—* wxcvbnm;:! ", | |
1111 /* 0123456789012345678901234567890123456789012345678901234 */ | |
1112 " 1234567890ø+ AZERTYUIOPùœ QSDFGHJKLM%æ WXCVBN?./õ ", | |
1113 /* 01234567 89012345678901234567890123456789012345678901234 */ | |
1114 " ~#{[|`\\^@]} Ï " | |
1115 }; | |
1116 | |
1117 static struct dos_keyboard_map dk_keyboard = { | |
1118 /* 0 1 2 3 4 5 */ | |
1119 /* 0123456789012345678901234567890123456789012345678901234 */ | |
1120 "«1234567890+| qwertyuiop†~ asdfghjkl‘›' zxcvbnm,.- ", | |
1121 /* 01 23456789012345678901234567890123456789012345678901234 */ | |
1122 "õ!\"#$%&/()=?` QWERTYUIOP^ ASDFGHJKL’* ZXCVBNM;:_ ", | |
1123 /* 0123456789012345678901234567890123456789012345678901234 */ | |
1124 " @œ$ {[]} | " | |
1125 }; | |
1126 | |
1127 static struct keyboard_layout_list | |
1128 { | |
1129 int country_code; | |
1130 struct dos_keyboard_map *keyboard_map; | |
13274 | 1131 } keyboard_layout_list[] = |
1132 { | |
1133 1, &us_keyboard, | |
1134 33, &fr_keyboard, | |
1135 45, &dk_keyboard | |
13179 | 1136 }; |
1137 | |
1138 static struct dos_keyboard_map *keyboard; | |
1139 static int keyboard_map_all; | |
7523
8994727ff976
(gettimeofday): New function substituting the library
Richard M. Stallman <rms@gnu.org>
parents:
7507
diff
changeset
|
1140 |
8994727ff976
(gettimeofday): New function substituting the library
Richard M. Stallman <rms@gnu.org>
parents:
7507
diff
changeset
|
1141 int |
13179 | 1142 dos_set_keyboard (code, always) |
1143 int code; | |
1144 int always; | |
7523
8994727ff976
(gettimeofday): New function substituting the library
Richard M. Stallman <rms@gnu.org>
parents:
7507
diff
changeset
|
1145 { |
13179 | 1146 int i; |
13624
47484dd9a970
(dos_set_keyboard): If CODE is not recognized,
Richard M. Stallman <rms@gnu.org>
parents:
13520
diff
changeset
|
1147 |
47484dd9a970
(dos_set_keyboard): If CODE is not recognized,
Richard M. Stallman <rms@gnu.org>
parents:
13520
diff
changeset
|
1148 /* Initialize to US settings, for countries that don't have their own. */ |
47484dd9a970
(dos_set_keyboard): If CODE is not recognized,
Richard M. Stallman <rms@gnu.org>
parents:
13520
diff
changeset
|
1149 keyboard = keyboard_layout_list[0].keyboard_map; |
47484dd9a970
(dos_set_keyboard): If CODE is not recognized,
Richard M. Stallman <rms@gnu.org>
parents:
13520
diff
changeset
|
1150 keyboard_map_all = always; |
47484dd9a970
(dos_set_keyboard): If CODE is not recognized,
Richard M. Stallman <rms@gnu.org>
parents:
13520
diff
changeset
|
1151 dos_keyboard_layout = 1; |
47484dd9a970
(dos_set_keyboard): If CODE is not recognized,
Richard M. Stallman <rms@gnu.org>
parents:
13520
diff
changeset
|
1152 |
13179 | 1153 for (i = 0; i < (sizeof (keyboard_layout_list)/sizeof (struct keyboard_layout_list)); i++) |
1154 if (code == keyboard_layout_list[i].country_code) | |
1155 { | |
1156 keyboard = keyboard_layout_list[i].keyboard_map; | |
1157 keyboard_map_all = always; | |
1158 dos_keyboard_layout = code; | |
1159 return 1; | |
1160 } | |
7523
8994727ff976
(gettimeofday): New function substituting the library
Richard M. Stallman <rms@gnu.org>
parents:
7507
diff
changeset
|
1161 return 0; |
8994727ff976
(gettimeofday): New function substituting the library
Richard M. Stallman <rms@gnu.org>
parents:
7507
diff
changeset
|
1162 } |
13274 | 1163 |
13179 | 1164 #define Ignore 0x0000 |
1165 #define Normal 0x0000 /* normal key - alt changes scan-code */ | |
1166 #define FctKey 0x1000 /* func key if c == 0, else c */ | |
1167 #define Special 0x2000 /* func key even if c != 0 */ | |
1168 #define ModFct 0x3000 /* special if mod-keys, else 'c' */ | |
1169 #define Map 0x4000 /* alt scan-code, map to unshift/shift key */ | |
1170 #define KeyPad 0x5000 /* map to insert/kp-0 depending on c == 0xe0 */ | |
1171 #define Grey 0x6000 /* Grey keypad key */ | |
1172 | |
1173 #define Alt 0x0100 /* alt scan-code */ | |
1174 #define Ctrl 0x0200 /* ctrl scan-code */ | |
1175 #define Shift 0x0400 /* shift scan-code */ | |
1176 | |
1177 static struct | |
1178 { | |
1179 unsigned char char_code; /* normal code */ | |
1180 unsigned char meta_code; /* M- code */ | |
1181 unsigned char keypad_code; /* keypad code */ | |
1182 unsigned char editkey_code; /* edit key */ | |
1183 } keypad_translate_map[] = { | |
1184 '0', '0', 0xb0, /* kp-0 */ 0x63, /* insert */ | |
1185 '1', '1', 0xb1, /* kp-1 */ 0x57, /* end */ | |
1186 '2', '2', 0xb2, /* kp-2 */ 0x54, /* down */ | |
1187 '3', '3', 0xb3, /* kp-3 */ 0x56, /* next */ | |
1188 '4', '4', 0xb4, /* kp-4 */ 0x51, /* left */ | |
1189 '5', '5', 0xb5, /* kp-5 */ 0xb5, /* kp-5 */ | |
1190 '6', '6', 0xb6, /* kp-6 */ 0x53, /* right */ | |
1191 '7', '7', 0xb7, /* kp-7 */ 0x50, /* home */ | |
1192 '8', '8', 0xb8, /* kp-8 */ 0x52, /* up */ | |
1193 '9', '9', 0xb9, /* kp-9 */ 0x55, /* prior */ | |
1194 '.', '-', 0xae, /* kp-decimal */ 0xff /* delete */ | |
1195 }; | |
1196 | |
1197 static struct | |
1198 { | |
1199 unsigned char char_code; /* normal code */ | |
1200 unsigned char keypad_code; /* keypad code */ | |
1201 } grey_key_translate_map[] = { | |
1202 '/', 0xaf, /* kp-decimal */ | |
1203 '*', 0xaa, /* kp-multiply */ | |
1204 '-', 0xad, /* kp-subtract */ | |
1205 '+', 0xab, /* kp-add */ | |
1206 '\r', 0x8d /* kp-enter */ | |
1207 }; | |
1208 | |
1209 static unsigned short | |
1210 ibmpc_translate_map[] = | |
13040
169d50e2ee4c
(gettimeofday, init_gettimeofday, daylight, gmtoffset): Undo previous change.
Paul Eggert <eggert@twinsun.com>
parents:
13020
diff
changeset
|
1211 { |
13179 | 1212 /* --------------- 00 to 0f --------------- */ |
1213 Normal | 0xff, /* Ctrl Break + Alt-NNN */ | |
1214 Alt | ModFct | 0x1b, /* Escape */ | |
1215 Normal | 1, /* '1' */ | |
1216 Normal | 2, /* '2' */ | |
1217 Normal | 3, /* '3' */ | |
1218 Normal | 4, /* '4' */ | |
1219 Normal | 5, /* '5' */ | |
1220 Normal | 6, /* '6' */ | |
1221 Normal | 7, /* '7' */ | |
1222 Normal | 8, /* '8' */ | |
1223 Normal | 9, /* '9' */ | |
1224 Normal | 10, /* '0' */ | |
1225 Normal | 11, /* '-' */ | |
1226 Normal | 12, /* '=' */ | |
1227 Special | 0x08, /* Backspace */ | |
1228 ModFct | 0x74, /* Tab/Backtab */ | |
1229 | |
1230 /* --------------- 10 to 1f --------------- */ | |
1231 Map | 15, /* 'q' */ | |
1232 Map | 16, /* 'w' */ | |
1233 Map | 17, /* 'e' */ | |
1234 Map | 18, /* 'r' */ | |
1235 Map | 19, /* 't' */ | |
1236 Map | 20, /* 'y' */ | |
1237 Map | 21, /* 'u' */ | |
1238 Map | 22, /* 'i' */ | |
1239 Map | 23, /* 'o' */ | |
1240 Map | 24, /* 'p' */ | |
1241 Map | 25, /* '[' */ | |
1242 Map | 26, /* ']' */ | |
1243 ModFct | 0x0d, /* Return */ | |
1244 Ignore, /* Ctrl */ | |
1245 Map | 30, /* 'a' */ | |
1246 Map | 31, /* 's' */ | |
1247 | |
1248 /* --------------- 20 to 2f --------------- */ | |
1249 Map | 32, /* 'd' */ | |
1250 Map | 33, /* 'f' */ | |
1251 Map | 34, /* 'g' */ | |
1252 Map | 35, /* 'h' */ | |
1253 Map | 36, /* 'j' */ | |
1254 Map | 37, /* 'k' */ | |
1255 Map | 38, /* 'l' */ | |
1256 Map | 39, /* ';' */ | |
1257 Map | 40, /* '\'' */ | |
1258 Map | 0, /* '`' */ | |
1259 Ignore, /* Left shift */ | |
1260 Map | 41, /* '\\' */ | |
1261 Map | 45, /* 'z' */ | |
1262 Map | 46, /* 'x' */ | |
1263 Map | 47, /* 'c' */ | |
1264 Map | 48, /* 'v' */ | |
1265 | |
1266 /* --------------- 30 to 3f --------------- */ | |
1267 Map | 49, /* 'b' */ | |
1268 Map | 50, /* 'n' */ | |
1269 Map | 51, /* 'm' */ | |
1270 Map | 52, /* ',' */ | |
1271 Map | 53, /* '.' */ | |
1272 Map | 54, /* '/' */ | |
1273 Ignore, /* Right shift */ | |
1274 Grey | 1, /* Grey * */ | |
1275 Ignore, /* Alt */ | |
1276 Normal | ' ', /* ' ' */ | |
1277 Ignore, /* Caps Lock */ | |
1278 FctKey | 0xbe, /* F1 */ | |
1279 FctKey | 0xbf, /* F2 */ | |
1280 FctKey | 0xc0, /* F3 */ | |
1281 FctKey | 0xc1, /* F4 */ | |
1282 FctKey | 0xc2, /* F5 */ | |
1283 | |
1284 /* --------------- 40 to 4f --------------- */ | |
1285 FctKey | 0xc3, /* F6 */ | |
1286 FctKey | 0xc4, /* F7 */ | |
1287 FctKey | 0xc5, /* F8 */ | |
1288 FctKey | 0xc6, /* F9 */ | |
1289 FctKey | 0xc7, /* F10 */ | |
1290 Ignore, /* Num Lock */ | |
1291 Ignore, /* Scroll Lock */ | |
1292 KeyPad | 7, /* Home */ | |
1293 KeyPad | 8, /* Up */ | |
1294 KeyPad | 9, /* Page Up */ | |
1295 Grey | 2, /* Grey - */ | |
1296 KeyPad | 4, /* Left */ | |
1297 KeyPad | 5, /* Keypad 5 */ | |
1298 KeyPad | 6, /* Right */ | |
1299 Grey | 3, /* Grey + */ | |
1300 KeyPad | 1, /* End */ | |
1301 | |
1302 /* --------------- 50 to 5f --------------- */ | |
1303 KeyPad | 2, /* Down */ | |
1304 KeyPad | 3, /* Page Down */ | |
1305 KeyPad | 0, /* Insert */ | |
1306 KeyPad | 10, /* Delete */ | |
1307 Shift | FctKey | 0xbe, /* (Shift) F1 */ | |
1308 Shift | FctKey | 0xbf, /* (Shift) F2 */ | |
1309 Shift | FctKey | 0xc0, /* (Shift) F3 */ | |
1310 Shift | FctKey | 0xc1, /* (Shift) F4 */ | |
1311 Shift | FctKey | 0xc2, /* (Shift) F5 */ | |
1312 Shift | FctKey | 0xc3, /* (Shift) F6 */ | |
1313 Shift | FctKey | 0xc4, /* (Shift) F7 */ | |
1314 Shift | FctKey | 0xc5, /* (Shift) F8 */ | |
1315 Shift | FctKey | 0xc6, /* (Shift) F9 */ | |
1316 Shift | FctKey | 0xc7, /* (Shift) F10 */ | |
1317 Ctrl | FctKey | 0xbe, /* (Ctrl) F1 */ | |
1318 Ctrl | FctKey | 0xbf, /* (Ctrl) F2 */ | |
13040
169d50e2ee4c
(gettimeofday, init_gettimeofday, daylight, gmtoffset): Undo previous change.
Paul Eggert <eggert@twinsun.com>
parents:
13020
diff
changeset
|
1319 |
13179 | 1320 /* --------------- 60 to 6f --------------- */ |
1321 Ctrl | FctKey | 0xc0, /* (Ctrl) F3 */ | |
1322 Ctrl | FctKey | 0xc1, /* (Ctrl) F4 */ | |
1323 Ctrl | FctKey | 0xc2, /* (Ctrl) F5 */ | |
1324 Ctrl | FctKey | 0xc3, /* (Ctrl) F6 */ | |
1325 Ctrl | FctKey | 0xc4, /* (Ctrl) F7 */ | |
1326 Ctrl | FctKey | 0xc5, /* (Ctrl) F8 */ | |
1327 Ctrl | FctKey | 0xc6, /* (Ctrl) F9 */ | |
1328 Ctrl | FctKey | 0xc7, /* (Ctrl) F10 */ | |
1329 Alt | FctKey | 0xbe, /* (Alt) F1 */ | |
1330 Alt | FctKey | 0xbf, /* (Alt) F2 */ | |
1331 Alt | FctKey | 0xc0, /* (Alt) F3 */ | |
1332 Alt | FctKey | 0xc1, /* (Alt) F4 */ | |
1333 Alt | FctKey | 0xc2, /* (Alt) F5 */ | |
1334 Alt | FctKey | 0xc3, /* (Alt) F6 */ | |
1335 Alt | FctKey | 0xc4, /* (Alt) F7 */ | |
1336 Alt | FctKey | 0xc5, /* (Alt) F8 */ | |
1337 | |
1338 /* --------------- 70 to 7f --------------- */ | |
1339 Alt | FctKey | 0xc6, /* (Alt) F9 */ | |
1340 Alt | FctKey | 0xc7, /* (Alt) F10 */ | |
1341 Ctrl | FctKey | 0x6d, /* (Ctrl) Sys Rq */ | |
1342 Ctrl | KeyPad | 4, /* (Ctrl) Left */ | |
1343 Ctrl | KeyPad | 6, /* (Ctrl) Right */ | |
1344 Ctrl | KeyPad | 1, /* (Ctrl) End */ | |
1345 Ctrl | KeyPad | 3, /* (Ctrl) Page Down */ | |
1346 Ctrl | KeyPad | 7, /* (Ctrl) Home */ | |
1347 Alt | Map | 1, /* '1' */ | |
1348 Alt | Map | 2, /* '2' */ | |
1349 Alt | Map | 3, /* '3' */ | |
1350 Alt | Map | 4, /* '4' */ | |
1351 Alt | Map | 5, /* '5' */ | |
1352 Alt | Map | 6, /* '6' */ | |
1353 Alt | Map | 7, /* '7' */ | |
1354 Alt | Map | 8, /* '8' */ | |
1355 | |
1356 /* --------------- 80 to 8f --------------- */ | |
1357 Alt | Map | 9, /* '9' */ | |
1358 Alt | Map | 10, /* '0' */ | |
1359 Alt | Map | 11, /* '-' */ | |
1360 Alt | Map | 12, /* '=' */ | |
1361 Ctrl | KeyPad | 9, /* (Ctrl) Page Up */ | |
1362 FctKey | 0xc8, /* F11 */ | |
1363 FctKey | 0xc9, /* F12 */ | |
1364 Shift | FctKey | 0xc8, /* (Shift) F11 */ | |
1365 Shift | FctKey | 0xc9, /* (Shift) F12 */ | |
1366 Ctrl | FctKey | 0xc8, /* (Ctrl) F11 */ | |
1367 Ctrl | FctKey | 0xc9, /* (Ctrl) F12 */ | |
1368 Alt | FctKey | 0xc8, /* (Alt) F11 */ | |
1369 Alt | FctKey | 0xc9, /* (Alt) F12 */ | |
1370 Ctrl | KeyPad | 8, /* (Ctrl) Up */ | |
1371 Ctrl | Grey | 2, /* (Ctrl) Grey - */ | |
1372 Ctrl | KeyPad | 5, /* (Ctrl) Keypad 5 */ | |
1373 | |
1374 /* --------------- 90 to 9f --------------- */ | |
1375 Ctrl | Grey | 3, /* (Ctrl) Grey + */ | |
1376 Ctrl | KeyPad | 2, /* (Ctrl) Down */ | |
1377 Ctrl | KeyPad | 0, /* (Ctrl) Insert */ | |
1378 Ctrl | KeyPad | 10, /* (Ctrl) Delete */ | |
1379 Ctrl | FctKey | 0x09, /* (Ctrl) Tab */ | |
1380 Ctrl | Grey | 0, /* (Ctrl) Grey / */ | |
1381 Ctrl | Grey | 1, /* (Ctrl) Grey * */ | |
1382 Alt | FctKey | 0x50, /* (Alt) Home */ | |
1383 Alt | FctKey | 0x52, /* (Alt) Up */ | |
1384 Alt | FctKey | 0x55, /* (Alt) Page Up */ | |
1385 Ignore, /* NO KEY */ | |
1386 Alt | FctKey | 0x51, /* (Alt) Left */ | |
1387 Ignore, /* NO KEY */ | |
1388 Alt | FctKey | 0x53, /* (Alt) Right */ | |
1389 Ignore, /* NO KEY */ | |
1390 Alt | FctKey | 0x57, /* (Alt) End */ | |
1391 | |
1392 /* --------------- a0 to af --------------- */ | |
1393 Alt | KeyPad | 2, /* (Alt) Down */ | |
1394 Alt | KeyPad | 3, /* (Alt) Page Down */ | |
1395 Alt | KeyPad | 0, /* (Alt) Insert */ | |
1396 Alt | KeyPad | 10, /* (Alt) Delete */ | |
1397 Alt | Grey | 0, /* (Alt) Grey / */ | |
1398 Alt | FctKey | 0x09, /* (Alt) Tab */ | |
1399 Alt | Grey | 4 /* (Alt) Keypad Enter */ | |
1400 }; | |
13274 | 1401 |
13179 | 1402 /* These bit-positions corresponds to values returned by BIOS */ |
1403 #define SHIFT_P 0x0003 /* two bits! */ | |
1404 #define CTRL_P 0x0004 | |
1405 #define ALT_P 0x0008 | |
1406 #define SCRLOCK_P 0x0010 | |
1407 #define NUMLOCK_P 0x0020 | |
1408 #define CAPSLOCK_P 0x0040 | |
1409 #define ALT_GR_P 0x0800 | |
1410 #define SUPER_P 0x4000 /* pseudo */ | |
1411 #define HYPER_P 0x8000 /* pseudo */ | |
1412 | |
1413 static int | |
1414 dos_get_modifiers (keymask) | |
1415 int *keymask; | |
5503 | 1416 { |
13179 | 1417 union REGS regs; |
1418 int mask; | |
1419 int modifiers = 0; | |
1420 | |
1421 /* Calculate modifier bits */ | |
1422 regs.h.ah = extended_kbd ? 0x12 : 0x02; | |
1423 int86 (0x16, ®s, ®s); | |
1424 | |
1425 if (!extended_kbd) | |
1426 { | |
1427 mask = regs.h.al & (SHIFT_P | CTRL_P | ALT_P | | |
1428 SCRLOCK_P | NUMLOCK_P | CAPSLOCK_P); | |
1429 } | |
1430 else | |
1431 { | |
1432 mask = regs.h.al & (SHIFT_P | | |
1433 SCRLOCK_P | NUMLOCK_P | CAPSLOCK_P); | |
1434 | |
1435 /* Do not break international keyboard support. */ | |
1436 /* When Keyb.Com is loaded, the right Alt key is */ | |
1437 /* used for accessing characters like { and } */ | |
1438 if (regs.h.ah & 2) /* Left ALT pressed ? */ | |
1439 mask |= ALT_P; | |
1440 | |
1441 if ((regs.h.ah & 8) != 0) /* Right ALT pressed ? */ | |
1442 { | |
1443 mask |= ALT_GR_P; | |
1444 if (dos_hyper_key == 1) | |
1445 { | |
1446 mask |= HYPER_P; | |
1447 modifiers |= hyper_modifier; | |
1448 } | |
1449 else if (dos_super_key == 1) | |
1450 { | |
1451 mask |= SUPER_P; | |
1452 modifiers |= super_modifier; | |
1453 } | |
1454 } | |
1455 | |
15125
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
1456 if (regs.h.ah & 1) /* Left CTRL pressed ? */ |
13179 | 1457 mask |= CTRL_P; |
1458 | |
1459 if (regs.h.ah & 4) /* Right CTRL pressed ? */ | |
1460 { | |
1461 if (dos_hyper_key == 2) | |
1462 { | |
1463 mask |= HYPER_P; | |
1464 modifiers |= hyper_modifier; | |
1465 } | |
1466 else if (dos_super_key == 2) | |
1467 { | |
1468 mask |= SUPER_P; | |
1469 modifiers |= super_modifier; | |
1470 } | |
1471 else | |
1472 mask |= CTRL_P; | |
1473 } | |
1474 } | |
1475 | |
1476 if (mask & SHIFT_P) | |
1477 modifiers |= shift_modifier; | |
1478 if (mask & CTRL_P) | |
1479 modifiers |= ctrl_modifier; | |
1480 if (mask & ALT_P) | |
1481 modifiers |= meta_modifier; | |
1482 | |
1483 if (keymask) | |
1484 *keymask = mask; | |
1485 return modifiers; | |
5503 | 1486 } |
1487 | |
13305
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1488 #define NUM_RECENT_DOSKEYS (100) |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1489 int recent_doskeys_index; /* Index for storing next element into recent_doskeys */ |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1490 int total_doskeys; /* Total number of elements stored into recent_doskeys */ |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1491 Lisp_Object recent_doskeys; /* A vector, holding the last 100 keystrokes */ |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1492 |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1493 DEFUN ("recent-doskeys", Frecent_doskeys, Srecent_doskeys, 0, 0, 0, |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1494 "Return vector of last 100 keyboard input values seen in dos_rawgetc.\n\ |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1495 Each input key receives two values in this vector: first the ASCII code,\n\ |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1496 and then the scan code.") |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1497 () |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1498 { |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1499 Lisp_Object *keys = XVECTOR (recent_doskeys)->contents; |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1500 Lisp_Object val; |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1501 |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1502 if (total_doskeys < NUM_RECENT_DOSKEYS) |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1503 return Fvector (total_doskeys, keys); |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1504 else |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1505 { |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1506 val = Fvector (NUM_RECENT_DOSKEYS, keys); |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1507 bcopy (keys + recent_doskeys_index, |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1508 XVECTOR (val)->contents, |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1509 (NUM_RECENT_DOSKEYS - recent_doskeys_index) * sizeof (Lisp_Object)); |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1510 bcopy (keys, |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1511 XVECTOR (val)->contents + NUM_RECENT_DOSKEYS - recent_doskeys_index, |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1512 recent_doskeys_index * sizeof (Lisp_Object)); |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1513 return val; |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1514 } |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1515 } |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1516 |
13179 | 1517 /* Get a char from keyboard. Function keys are put into the event queue. */ |
14413
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
1518 |
13179 | 1519 static int |
1520 dos_rawgetc () | |
5503 | 1521 { |
13179 | 1522 struct input_event event; |
1523 union REGS regs; | |
1524 | |
1525 #ifndef HAVE_X_WINDOWS | |
16598
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
1526 /* Maybe put the cursor where it should be. */ |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
1527 IT_cmgoto (selected_frame); |
13179 | 1528 #endif |
16598
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
1529 |
13179 | 1530 /* The following condition is equivalent to `kbhit ()', except that |
1531 it uses the bios to do its job. This pleases DESQview/X. */ | |
1532 while ((regs.h.ah = extended_kbd ? 0x11 : 0x01), | |
1533 int86 (0x16, ®s, ®s), | |
1534 (regs.x.flags & 0x40) == 0) | |
5503 | 1535 { |
13179 | 1536 union REGS regs; |
1537 register unsigned char c; | |
1538 int sc, code, mask, kp_mode; | |
1539 int modifiers; | |
1540 | |
1541 regs.h.ah = extended_kbd ? 0x10 : 0x00; | |
1542 int86 (0x16, ®s, ®s); | |
1543 c = regs.h.al; | |
1544 sc = regs.h.ah; | |
5503 | 1545 |
13305
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1546 total_doskeys += 2; |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1547 XVECTOR (recent_doskeys)->contents[recent_doskeys_index++] |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1548 = make_number (c); |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1549 if (recent_doskeys_index == NUM_RECENT_DOSKEYS) |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1550 recent_doskeys_index = 0; |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1551 XVECTOR (recent_doskeys)->contents[recent_doskeys_index++] |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1552 = make_number (sc); |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1553 if (recent_doskeys_index == NUM_RECENT_DOSKEYS) |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1554 recent_doskeys_index = 0; |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1555 |
13274 | 1556 modifiers = dos_get_modifiers (&mask); |
13179 | 1557 |
1558 #ifndef HAVE_X_WINDOWS | |
13274 | 1559 if (!NILP (Vdos_display_scancodes)) |
13179 | 1560 { |
14157
38606398dfa6
(dos_rawgetc): Make buf longer.
Richard M. Stallman <rms@gnu.org>
parents:
14036
diff
changeset
|
1561 char buf[11]; |
13179 | 1562 sprintf (buf, "%02x:%02x*%04x", |
1563 (unsigned) (sc&0xff), (unsigned) c, mask); | |
1564 dos_direct_output (screen_size_Y - 2, screen_size_X - 12, buf, 10); | |
1565 } | |
1566 #endif | |
5503 | 1567 |
13179 | 1568 if (sc == 0xe0) |
1569 { | |
1570 switch (c) | |
1571 { | |
1572 case 10: /* Ctrl Grey Enter */ | |
1573 code = Ctrl | Grey | 4; | |
1574 break; | |
1575 case 13: /* Grey Enter */ | |
1576 code = Grey | 4; | |
1577 break; | |
1578 case '/': /* Grey / */ | |
1579 code = Grey | 0; | |
1580 break; | |
1581 default: | |
1582 continue; | |
1583 }; | |
1584 c = 0; | |
1585 } | |
1586 else | |
1587 { | |
1588 if (sc >= (sizeof (ibmpc_translate_map) / sizeof (short))) | |
1589 continue; | |
1590 if ((code = ibmpc_translate_map[sc]) == Ignore) | |
1591 continue; | |
1592 } | |
1593 | |
1594 if (c == 0) | |
1595 { | |
1596 if (code & Alt) | |
1597 modifiers |= meta_modifier; | |
1598 if (code & Ctrl) | |
1599 modifiers |= ctrl_modifier; | |
1600 if (code & Shift) | |
1601 modifiers |= shift_modifier; | |
1602 } | |
1603 | |
1604 switch (code & 0xf000) | |
1605 { | |
1606 case ModFct: | |
1607 if (c && !(mask & (SHIFT_P | ALT_P | CTRL_P | HYPER_P | SUPER_P))) | |
1608 return c; | |
1609 c = 0; /* Special */ | |
1610 | |
1611 case FctKey: | |
1612 if (c != 0) | |
1613 return c; | |
1614 | |
1615 case Special: | |
1616 code |= 0xff00; | |
1617 break; | |
1618 | |
1619 case Normal: | |
1620 if (sc == 0) | |
1621 { | |
1622 if (c == 0) /* ctrl-break */ | |
1623 continue; | |
1624 return c; /* ALT-nnn */ | |
1625 } | |
1626 if (!keyboard_map_all) | |
1627 { | |
1628 if (c != ' ') | |
1629 return c; | |
1630 code = c; | |
1631 break; | |
1632 } | |
1633 | |
1634 case Map: | |
1635 if (c && !(mask & ALT_P) && !((mask & SHIFT_P) && (mask & CTRL_P))) | |
1636 if (!keyboard_map_all) | |
1637 return c; | |
5503 | 1638 |
13179 | 1639 code &= 0xff; |
1640 if (mask & ALT_P && code <= 10 && code > 0 && dos_keypad_mode & 0x200) | |
1641 mask |= SHIFT_P; /* ALT-1 => M-! etc. */ | |
1642 | |
1643 if (mask & SHIFT_P) | |
1644 { | |
13274 | 1645 code = keyboard->shifted[code]; |
13179 | 1646 mask -= SHIFT_P; |
1647 modifiers &= ~shift_modifier; | |
1648 } | |
1649 else | |
13274 | 1650 if ((mask & ALT_GR_P) && keyboard->alt_gr && keyboard->alt_gr[code] != ' ') |
1651 code = keyboard->alt_gr[code]; | |
13179 | 1652 else |
13274 | 1653 code = keyboard->unshifted[code]; |
13179 | 1654 break; |
1655 | |
1656 case KeyPad: | |
1657 code &= 0xff; | |
1658 if (c == 0xe0) /* edit key */ | |
1659 kp_mode = 3; | |
1660 else | |
1661 if ((mask & (NUMLOCK_P|CTRL_P|SHIFT_P|ALT_P)) == NUMLOCK_P) /* numlock on */ | |
1662 kp_mode = dos_keypad_mode & 0x03; | |
1663 else | |
1664 kp_mode = (dos_keypad_mode >> 4) & 0x03; | |
1665 | |
1666 switch (kp_mode) | |
1667 { | |
1668 case 0: | |
1669 if (code == 10 && dos_decimal_point) | |
1670 return dos_decimal_point; | |
13274 | 1671 return keypad_translate_map[code].char_code; |
5503 | 1672 |
13179 | 1673 case 1: |
13274 | 1674 code = 0xff00 | keypad_translate_map[code].keypad_code; |
13179 | 1675 break; |
5503 | 1676 |
13179 | 1677 case 2: |
13274 | 1678 code = keypad_translate_map[code].meta_code; |
13179 | 1679 modifiers = meta_modifier; |
1680 break; | |
1681 | |
1682 case 3: | |
13274 | 1683 code = 0xff00 | keypad_translate_map[code].editkey_code; |
13179 | 1684 break; |
1685 } | |
1686 break; | |
1687 | |
1688 case Grey: | |
1689 code &= 0xff; | |
1690 kp_mode = ((mask & (NUMLOCK_P|CTRL_P|SHIFT_P|ALT_P)) == NUMLOCK_P) ? 0x04 : 0x40; | |
1691 if (dos_keypad_mode & kp_mode) | |
13274 | 1692 code = 0xff00 | grey_key_translate_map[code].keypad_code; |
13179 | 1693 else |
13274 | 1694 code = grey_key_translate_map[code].char_code; |
13179 | 1695 break; |
1696 } | |
1697 | |
1698 make_event: | |
1699 if (code == 0) | |
1700 continue; | |
1701 | |
1702 if (code >= 0x100) | |
1703 event.kind = non_ascii_keystroke; | |
1704 else | |
1705 event.kind = ascii_keystroke; | |
1706 event.code = code; | |
1707 event.modifiers = modifiers; | |
1708 XSETFRAME (event.frame_or_window, selected_frame); | |
1709 event.timestamp = event_timestamp (); | |
1710 kbd_buffer_store_event (&event); | |
1711 } | |
5503 | 1712 |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1713 if (have_mouse > 0) |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1714 { |
13179 | 1715 int but, press, x, y, ok; |
5503 | 1716 |
13179 | 1717 /* Check for mouse movement *before* buttons. */ |
1718 mouse_check_moved (); | |
5503 | 1719 |
13179 | 1720 for (but = 0; but < NUM_MOUSE_BUTTONS; but++) |
1721 for (press = 0; press < 2; press++) | |
1722 { | |
14413
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
1723 int button_num = but; |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
1724 |
13179 | 1725 if (press) |
1726 ok = mouse_pressed (but, &x, &y); | |
1727 else | |
1728 ok = mouse_released (but, &x, &y); | |
1729 if (ok) | |
1730 { | |
14413
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
1731 /* Allow a simultaneous press/release of Mouse-1 and |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
1732 Mouse-2 to simulate Mouse-3 on two-button mice. */ |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
1733 if (mouse_button_count == 2 && but < 2) |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
1734 { |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
1735 int x2, y2; /* don't clobber original coordinates */ |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
1736 |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
1737 /* If only one button is pressed, wait 100 msec and |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
1738 check again. This way, Speedy Gonzales isn't |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
1739 punished, while the slow get their chance. */ |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
1740 if (press && mouse_pressed (1-but, &x2, &y2) |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
1741 || !press && mouse_released (1-but, &x2, &y2)) |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
1742 button_num = 2; |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
1743 else |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
1744 { |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
1745 delay (100); |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
1746 if (press && mouse_pressed (1-but, &x2, &y2) |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
1747 || !press && mouse_released (1-but, &x2, &y2)) |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
1748 button_num = 2; |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
1749 } |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
1750 } |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
1751 |
13179 | 1752 event.kind = mouse_click; |
14413
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
1753 event.code = button_num; |
13179 | 1754 event.modifiers = dos_get_modifiers (0) |
1755 | (press ? down_modifier : up_modifier); | |
1756 event.x = x; | |
1757 event.y = y; | |
1758 XSETFRAME (event.frame_or_window, selected_frame); | |
1759 event.timestamp = event_timestamp (); | |
1760 kbd_buffer_store_event (&event); | |
1761 } | |
1762 } | |
1763 } | |
5503 | 1764 |
13179 | 1765 return -1; |
9572 | 1766 } |
1767 | |
13179 | 1768 static int prev_get_char = -1; |
5503 | 1769 |
13179 | 1770 /* Return 1 if a key is ready to be read without suspending execution. */ |
14413
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
1771 |
13179 | 1772 dos_keysns () |
5503 | 1773 { |
13179 | 1774 if (prev_get_char != -1) |
1775 return 1; | |
1776 else | |
1777 return ((prev_get_char = dos_rawgetc ()) != -1); | |
5503 | 1778 } |
1779 | |
13179 | 1780 /* Read a key. Return -1 if no key is ready. */ |
14413
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
1781 |
13179 | 1782 dos_keyread () |
5503 | 1783 { |
13179 | 1784 if (prev_get_char != -1) |
8246
d48c2b01fba5
(mouse_init1): Use alternate mouse detection for old mouse drivers.
Richard M. Stallman <rms@gnu.org>
parents:
8194
diff
changeset
|
1785 { |
13179 | 1786 int c = prev_get_char; |
1787 prev_get_char = -1; | |
1788 return c; | |
8246
d48c2b01fba5
(mouse_init1): Use alternate mouse detection for old mouse drivers.
Richard M. Stallman <rms@gnu.org>
parents:
8194
diff
changeset
|
1789 } |
13179 | 1790 else |
1791 return dos_rawgetc (); | |
1792 } | |
13305
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
1793 |
9572 | 1794 #ifndef HAVE_X_WINDOWS |
7273
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1795 /* See xterm.c for more info. */ |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1796 void |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1797 pixel_to_glyph_coords (f, pix_x, pix_y, x, y, bounds, noclip) |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1798 FRAME_PTR f; |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1799 register int pix_x, pix_y; |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1800 register int *x, *y; |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1801 void /* XRectangle */ *bounds; |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1802 int noclip; |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1803 { |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1804 if (bounds) abort (); |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1805 |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1806 /* Ignore clipping. */ |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1807 |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1808 *x = pix_x; |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1809 *y = pix_y; |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1810 } |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1811 |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1812 void |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1813 glyph_to_pixel_coords (f, x, y, pix_x, pix_y) |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1814 FRAME_PTR f; |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1815 register int x, y; |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1816 register int *pix_x, *pix_y; |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1817 { |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1818 *pix_x = x; |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1819 *pix_y = y; |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1820 } |
9572 | 1821 |
1822 /* Simulation of X's menus. Nothing too fancy here -- just make it work | |
1823 for now. | |
1824 | |
1825 Actually, I don't know the meaning of all the parameters of the functions | |
1826 here -- I only know how they are called by xmenu.c. I could of course | |
1827 grab the nearest Xlib manual (down the hall, second-to-last door on the | |
1828 left), but I don't think it's worth the effort. */ | |
1829 | |
1830 static XMenu * | |
1831 IT_menu_create () | |
1832 { | |
1833 XMenu *menu; | |
1834 | |
1835 menu = (XMenu *) xmalloc (sizeof (XMenu)); | |
1836 menu->allocated = menu->count = menu->panecount = menu->width = 0; | |
1837 return menu; | |
1838 } | |
1839 | |
1840 /* Allocate some (more) memory for MENU ensuring that there is room for one | |
1841 for item. */ | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1842 |
9572 | 1843 static void |
1844 IT_menu_make_room (XMenu *menu) | |
1845 { | |
1846 if (menu->allocated == 0) | |
1847 { | |
1848 int count = menu->allocated = 10; | |
1849 menu->text = (char **) xmalloc (count * sizeof (char *)); | |
1850 menu->submenu = (XMenu **) xmalloc (count * sizeof (XMenu *)); | |
1851 menu->panenumber = (int *) xmalloc (count * sizeof (int)); | |
1852 } | |
1853 else if (menu->allocated == menu->count) | |
1854 { | |
1855 int count = menu->allocated = menu->allocated + 10; | |
1856 menu->text | |
1857 = (char **) xrealloc (menu->text, count * sizeof (char *)); | |
1858 menu->submenu | |
1859 = (XMenu **) xrealloc (menu->submenu, count * sizeof (XMenu *)); | |
1860 menu->panenumber | |
1861 = (int *) xrealloc (menu->panenumber, count * sizeof (int)); | |
1862 } | |
1863 } | |
1864 | |
1865 /* Search the given menu structure for a given pane number. */ | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1866 |
9572 | 1867 static XMenu * |
1868 IT_menu_search_pane (XMenu *menu, int pane) | |
1869 { | |
1870 int i; | |
1871 XMenu *try; | |
1872 | |
1873 for (i = 0; i < menu->count; i++) | |
1874 if (menu->submenu[i]) | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1875 { |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1876 if (pane == menu->panenumber[i]) |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1877 return menu->submenu[i]; |
13179 | 1878 if ((try = IT_menu_search_pane (menu->submenu[i], pane))) |
9572 | 1879 return try; |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1880 } |
9572 | 1881 return (XMenu *) 0; |
1882 } | |
1883 | |
1884 /* Determine how much screen space a given menu needs. */ | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1885 |
9572 | 1886 static void |
1887 IT_menu_calc_size (XMenu *menu, int *width, int *height) | |
1888 { | |
1889 int i, h2, w2, maxsubwidth, maxheight; | |
1890 | |
1891 maxsubwidth = 0; | |
1892 maxheight = menu->count; | |
1893 for (i = 0; i < menu->count; i++) | |
1894 { | |
1895 if (menu->submenu[i]) | |
1896 { | |
1897 IT_menu_calc_size (menu->submenu[i], &w2, &h2); | |
1898 if (w2 > maxsubwidth) maxsubwidth = w2; | |
1899 if (i + h2 > maxheight) maxheight = i + h2; | |
1900 } | |
1901 } | |
1902 *width = menu->width + maxsubwidth; | |
1903 *height = maxheight; | |
1904 } | |
1905 | |
14413
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
1906 /* Display MENU at (X,Y) using FACES. */ |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1907 |
9572 | 1908 static void |
1909 IT_menu_display (XMenu *menu, int y, int x, int *faces) | |
1910 { | |
1911 int i, j, face, width; | |
1912 GLYPH *text, *p; | |
1913 char *q; | |
1914 int mx, my; | |
1915 int enabled, mousehere; | |
1916 int row, col; | |
1917 | |
1918 width = menu->width; | |
1919 text = (GLYPH *) xmalloc ((width + 2) * sizeof (GLYPH)); | |
1920 ScreenGetCursor (&row, &col); | |
1921 mouse_get_xy (&mx, &my); | |
13179 | 1922 IT_update_begin (); |
9572 | 1923 for (i = 0; i < menu->count; i++) |
1924 { | |
13179 | 1925 IT_cursor_to (y + i, x); |
9572 | 1926 enabled |
1927 = (!menu->submenu[i] && menu->panenumber[i]) || (menu->submenu[i]); | |
1928 mousehere = (y + i == my && x <= mx && mx < x + width + 2); | |
1929 face = faces[enabled + mousehere * 2]; | |
1930 p = text; | |
1931 *p++ = FAST_MAKE_GLYPH (' ', face); | |
1932 for (j = 0, q = menu->text[i]; *q; j++) | |
15627
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
1933 { |
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
1934 if (*q > 26) |
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
1935 *p++ = FAST_MAKE_GLYPH (*q++, face); |
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
1936 else /* make '^x' */ |
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
1937 { |
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
1938 *p++ = FAST_MAKE_GLYPH ('^', face); |
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
1939 j++; |
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
1940 *p++ = FAST_MAKE_GLYPH (*q++ + 64, face); |
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
1941 } |
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
1942 } |
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
1943 |
9572 | 1944 for (; j < width; j++) |
1945 *p++ = FAST_MAKE_GLYPH (' ', face); | |
1946 *p++ = FAST_MAKE_GLYPH (menu->submenu[i] ? 16 : ' ', face); | |
13179 | 1947 IT_write_glyphs (text, width + 2); |
9572 | 1948 } |
13179 | 1949 IT_update_end (); |
1950 IT_cursor_to (row, col); | |
9572 | 1951 xfree (text); |
1952 } | |
13848
5f38596d591e
(have_menus_p): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
13744
diff
changeset
|
1953 |
5f38596d591e
(have_menus_p): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
13744
diff
changeset
|
1954 /* --------------------------- X Menu emulation ---------------------- */ |
9572 | 1955 |
13848
5f38596d591e
(have_menus_p): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
13744
diff
changeset
|
1956 /* Report availability of menus. */ |
5f38596d591e
(have_menus_p): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
13744
diff
changeset
|
1957 |
5f38596d591e
(have_menus_p): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
13744
diff
changeset
|
1958 int |
5f38596d591e
(have_menus_p): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
13744
diff
changeset
|
1959 have_menus_p () |
5f38596d591e
(have_menus_p): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
13744
diff
changeset
|
1960 { |
5f38596d591e
(have_menus_p): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
13744
diff
changeset
|
1961 return 1; |
5f38596d591e
(have_menus_p): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
13744
diff
changeset
|
1962 } |
13179 | 1963 |
9572 | 1964 /* Create a brand new menu structure. */ |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1965 |
9572 | 1966 XMenu * |
10501
19c4a9ef23e5
(XMenuCreate, XMenuAddPane, XMenuAddSelection, XMenuLocate,
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1967 XMenuCreate (Display *foo1, Window foo2, char *foo3) |
9572 | 1968 { |
1969 return IT_menu_create (); | |
1970 } | |
1971 | |
1972 /* Create a new pane and place it on the outer-most level. It is not | |
1973 clear that it should be placed out there, but I don't know what else | |
1974 to do. */ | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1975 |
9572 | 1976 int |
10501
19c4a9ef23e5
(XMenuCreate, XMenuAddPane, XMenuAddSelection, XMenuLocate,
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1977 XMenuAddPane (Display *foo, XMenu *menu, char *txt, int enable) |
9572 | 1978 { |
1979 int len; | |
15627
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
1980 char *p; |
9572 | 1981 |
1982 if (!enable) | |
1983 abort (); | |
1984 | |
1985 IT_menu_make_room (menu); | |
1986 menu->submenu[menu->count] = IT_menu_create (); | |
1987 menu->text[menu->count] = txt; | |
1988 menu->panenumber[menu->count] = ++menu->panecount; | |
1989 menu->count++; | |
15627
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
1990 |
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
1991 /* Adjust length for possible control characters (which will |
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
1992 be written as ^x). */ |
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
1993 for (len = strlen (txt), p = txt; *p; p++) |
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
1994 if (*p < 27) |
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
1995 len++; |
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
1996 |
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
1997 if (len > menu->width) |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1998 menu->width = len; |
15627
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
1999 |
9572 | 2000 return menu->panecount; |
2001 } | |
2002 | |
2003 /* Create a new item in a menu pane. */ | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
2004 |
9572 | 2005 int |
10501
19c4a9ef23e5
(XMenuCreate, XMenuAddPane, XMenuAddSelection, XMenuLocate,
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2006 XMenuAddSelection (Display *bar, XMenu *menu, int pane, |
19c4a9ef23e5
(XMenuCreate, XMenuAddPane, XMenuAddSelection, XMenuLocate,
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2007 int foo, char *txt, int enable) |
9572 | 2008 { |
2009 int len; | |
15627
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
2010 char *p; |
9572 | 2011 |
2012 if (pane) | |
2013 if (!(menu = IT_menu_search_pane (menu, pane))) | |
2014 return XM_FAILURE; | |
2015 IT_menu_make_room (menu); | |
2016 menu->submenu[menu->count] = (XMenu *) 0; | |
2017 menu->text[menu->count] = txt; | |
2018 menu->panenumber[menu->count] = enable; | |
2019 menu->count++; | |
15627
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
2020 |
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
2021 /* Adjust length for possible control characters (which will |
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
2022 be written as ^x). */ |
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
2023 for (len = strlen (txt), p = txt; *p; p++) |
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
2024 if (*p < 27) |
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
2025 len++; |
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
2026 |
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
2027 if (len > menu->width) |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
2028 menu->width = len; |
15627
c5c4d478c78d
(IT_menu_display): Display control characters as ^X.
Karl Heuer <kwzh@gnu.org>
parents:
15618
diff
changeset
|
2029 |
9572 | 2030 return XM_SUCCESS; |
2031 } | |
2032 | |
2033 /* Decide where the menu would be placed if requested at (X,Y). */ | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
2034 |
10501
19c4a9ef23e5
(XMenuCreate, XMenuAddPane, XMenuAddSelection, XMenuLocate,
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2035 void |
19c4a9ef23e5
(XMenuCreate, XMenuAddPane, XMenuAddSelection, XMenuLocate,
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2036 XMenuLocate (Display *foo0, XMenu *menu, int foo1, int foo2, int x, int y, |
9572 | 2037 int *ulx, int *uly, int *width, int *height) |
2038 { | |
13714
45e71ea63d71
(XMenuActivate): Display the menu pane title.
Karl Heuer <kwzh@gnu.org>
parents:
13657
diff
changeset
|
2039 IT_menu_calc_size (menu, width, height); |
9572 | 2040 *ulx = x + 1; |
2041 *uly = y; | |
2042 *width += 2; | |
2043 } | |
2044 | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
2045 struct IT_menu_state |
9572 | 2046 { |
2047 void *screen_behind; | |
2048 XMenu *menu; | |
2049 int pane; | |
2050 int x, y; | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
2051 }; |
9572 | 2052 |
2053 | |
2054 /* Display menu, wait for user's response, and return that response. */ | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
2055 |
9572 | 2056 int |
10501
19c4a9ef23e5
(XMenuCreate, XMenuAddPane, XMenuAddSelection, XMenuLocate,
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2057 XMenuActivate (Display *foo, XMenu *menu, int *pane, int *selidx, |
9572 | 2058 int x0, int y0, unsigned ButtonMask, char **txt) |
2059 { | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
2060 struct IT_menu_state *state; |
9572 | 2061 int statecount; |
2062 int x, y, i, b; | |
2063 int screensize; | |
2064 int faces[4], selectface; | |
2065 int leave, result, onepane; | |
13860
659a54e026bb
(XMenuActivate): Make sure the menu title is always
Richard M. Stallman <rms@gnu.org>
parents:
13848
diff
changeset
|
2066 int title_faces[4]; /* face to display the menu title */ |
15387
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
2067 int buffers_num_deleted = 0; |
9572 | 2068 |
2069 /* Just in case we got here without a mouse present... */ | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
2070 if (have_mouse <= 0) |
9572 | 2071 return XM_IA_SELECT; |
2072 | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
2073 state = alloca (menu->panecount * sizeof (struct IT_menu_state)); |
13179 | 2074 screensize = screen_size * 2; |
9572 | 2075 faces[0] |
15387
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
2076 = compute_glyph_face (selected_frame, |
9572 | 2077 face_name_id_number |
15387
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
2078 (selected_frame, |
9572 | 2079 intern ("msdos-menu-passive-face")), |
2080 0); | |
2081 faces[1] | |
15387
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
2082 = compute_glyph_face (selected_frame, |
9572 | 2083 face_name_id_number |
15387
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
2084 (selected_frame, |
9572 | 2085 intern ("msdos-menu-active-face")), |
2086 0); | |
2087 selectface | |
15387
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
2088 = face_name_id_number (selected_frame, intern ("msdos-menu-select-face")); |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
2089 faces[2] = compute_glyph_face (selected_frame, selectface, faces[0]); |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
2090 faces[3] = compute_glyph_face (selected_frame, selectface, faces[1]); |
9572 | 2091 |
13860
659a54e026bb
(XMenuActivate): Make sure the menu title is always
Richard M. Stallman <rms@gnu.org>
parents:
13848
diff
changeset
|
2092 /* Make sure the menu title is always displayed with |
659a54e026bb
(XMenuActivate): Make sure the menu title is always
Richard M. Stallman <rms@gnu.org>
parents:
13848
diff
changeset
|
2093 `msdos-menu-active-face', no matter where the mouse pointer is. */ |
659a54e026bb
(XMenuActivate): Make sure the menu title is always
Richard M. Stallman <rms@gnu.org>
parents:
13848
diff
changeset
|
2094 for (i = 0; i < 4; i++) |
659a54e026bb
(XMenuActivate): Make sure the menu title is always
Richard M. Stallman <rms@gnu.org>
parents:
13848
diff
changeset
|
2095 title_faces[i] = faces[3]; |
659a54e026bb
(XMenuActivate): Make sure the menu title is always
Richard M. Stallman <rms@gnu.org>
parents:
13848
diff
changeset
|
2096 |
9572 | 2097 statecount = 1; |
15387
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
2098 |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
2099 /* Don't let the title for the "Buffers" popup menu include a |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
2100 digit (which is ugly). |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
2101 |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
2102 This is a terrible kludge, but I think the "Buffers" case is |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
2103 the only one where the title includes a number, so it doesn't |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
2104 seem to be necessary to make this more general. */ |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
2105 if (strncmp (menu->text[0], "Buffers 1", 9) == 0) |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
2106 { |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
2107 menu->text[0][7] = '\0'; |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
2108 buffers_num_deleted = 1; |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
2109 } |
9572 | 2110 state[0].menu = menu; |
2111 mouse_off (); | |
2112 ScreenRetrieve (state[0].screen_behind = xmalloc (screensize)); | |
13714
45e71ea63d71
(XMenuActivate): Display the menu pane title.
Karl Heuer <kwzh@gnu.org>
parents:
13657
diff
changeset
|
2113 |
16598
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
2114 /* Turn off the cursor. Otherwise it shows through the menu |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
2115 panes, which is ugly. */ |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
2116 IT_display_cursor (0); |
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
2117 |
13860
659a54e026bb
(XMenuActivate): Make sure the menu title is always
Richard M. Stallman <rms@gnu.org>
parents:
13848
diff
changeset
|
2118 IT_menu_display (menu, y0 - 1, x0 - 1, title_faces); /* display menu title */ |
15387
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
2119 if (buffers_num_deleted) |
9ac116f47f33
(check_x): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
15341
diff
changeset
|
2120 menu->text[0][7] = ' '; |
9572 | 2121 if ((onepane = menu->count == 1 && menu->submenu[0])) |
2122 { | |
2123 menu->width = menu->submenu[0]->width; | |
2124 state[0].menu = menu->submenu[0]; | |
2125 } | |
2126 else | |
2127 { | |
2128 state[0].menu = menu; | |
2129 } | |
2130 state[0].x = x0 - 1; | |
2131 state[0].y = y0; | |
2132 state[0].pane = onepane; | |
2133 | |
2134 mouse_last_x = -1; /* A hack that forces display. */ | |
2135 leave = 0; | |
2136 while (!leave) | |
2137 { | |
13179 | 2138 if (!mouse_visible) mouse_on (); |
9572 | 2139 mouse_check_moved (); |
12573
f8193b0f95ed
(mouse_get_pos, mouse_check_moved, XMenuActivate):
Karl Heuer <kwzh@gnu.org>
parents:
11124
diff
changeset
|
2140 if (selected_frame->mouse_moved) |
9572 | 2141 { |
12573
f8193b0f95ed
(mouse_get_pos, mouse_check_moved, XMenuActivate):
Karl Heuer <kwzh@gnu.org>
parents:
11124
diff
changeset
|
2142 selected_frame->mouse_moved = 0; |
9572 | 2143 result = XM_IA_SELECT; |
2144 mouse_get_xy (&x, &y); | |
2145 for (i = 0; i < statecount; i++) | |
2146 if (state[i].x <= x && x < state[i].x + state[i].menu->width + 2) | |
2147 { | |
2148 int dy = y - state[i].y; | |
2149 if (0 <= dy && dy < state[i].menu->count) | |
2150 { | |
2151 if (!state[i].menu->submenu[dy]) | |
2152 if (state[i].menu->panenumber[dy]) | |
2153 result = XM_SUCCESS; | |
2154 else | |
2155 result = XM_IA_SELECT; | |
2156 *pane = state[i].pane - 1; | |
2157 *selidx = dy; | |
14036 | 2158 /* We hit some part of a menu, so drop extra menus that |
9572 | 2159 have been opened. That does not include an open and |
2160 active submenu. */ | |
2161 if (i != statecount - 2 | |
2162 || state[i].menu->submenu[dy] != state[i+1].menu) | |
2163 while (i != statecount - 1) | |
2164 { | |
2165 statecount--; | |
2166 mouse_off (); | |
2167 ScreenUpdate (state[statecount].screen_behind); | |
2168 xfree (state[statecount].screen_behind); | |
2169 } | |
2170 if (i == statecount - 1 && state[i].menu->submenu[dy]) | |
2171 { | |
2172 IT_menu_display (state[i].menu, | |
2173 state[i].y, | |
2174 state[i].x, | |
2175 faces); | |
2176 state[statecount].menu = state[i].menu->submenu[dy]; | |
2177 state[statecount].pane = state[i].menu->panenumber[dy]; | |
2178 mouse_off (); | |
2179 ScreenRetrieve (state[statecount].screen_behind | |
2180 = xmalloc (screensize)); | |
2181 state[statecount].x | |
2182 = state[i].x + state[i].menu->width + 2; | |
2183 state[statecount].y = y; | |
2184 statecount++; | |
2185 } | |
2186 } | |
2187 } | |
2188 IT_menu_display (state[statecount - 1].menu, | |
2189 state[statecount - 1].y, | |
2190 state[statecount - 1].x, | |
2191 faces); | |
2192 } | |
2193 for (b = 0; b < mouse_button_count; b++) | |
2194 { | |
2195 (void) mouse_pressed (b, &x, &y); | |
2196 if (mouse_released (b, &x, &y)) | |
2197 leave = 1; | |
2198 } | |
2199 } | |
2200 | |
2201 mouse_off (); | |
2202 ScreenUpdate (state[0].screen_behind); | |
2203 while (statecount--) | |
2204 xfree (state[statecount].screen_behind); | |
16598
4b0b6719bbd2
[__DJGPP__ >= 2] (dos_direct_output): Faster method of
Karl Heuer <kwzh@gnu.org>
parents:
16524
diff
changeset
|
2205 IT_display_cursor (1); /* turn cursor back on */ |
9572 | 2206 return result; |
2207 } | |
2208 | |
2209 /* Dispose of a menu. */ | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
2210 |
10501
19c4a9ef23e5
(XMenuCreate, XMenuAddPane, XMenuAddSelection, XMenuLocate,
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2211 void |
19c4a9ef23e5
(XMenuCreate, XMenuAddPane, XMenuAddSelection, XMenuLocate,
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2212 XMenuDestroy (Display *foo, XMenu *menu) |
9572 | 2213 { |
2214 int i; | |
2215 if (menu->allocated) | |
2216 { | |
2217 for (i = 0; i < menu->count; i++) | |
2218 if (menu->submenu[i]) | |
10501
19c4a9ef23e5
(XMenuCreate, XMenuAddPane, XMenuAddSelection, XMenuLocate,
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2219 XMenuDestroy (foo, menu->submenu[i]); |
9572 | 2220 xfree (menu->text); |
2221 xfree (menu->submenu); | |
2222 xfree (menu->panenumber); | |
2223 } | |
2224 xfree (menu); | |
2225 } | |
2226 | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
2227 int |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
2228 x_pixel_width (struct frame *f) |
9572 | 2229 { |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
2230 return FRAME_WIDTH (f); |
9572 | 2231 } |
2232 | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
2233 int |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
2234 x_pixel_height (struct frame *f) |
9572 | 2235 { |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
2236 return FRAME_HEIGHT (f); |
9572 | 2237 } |
2238 #endif /* !HAVE_X_WINDOWS */ | |
13848
5f38596d591e
(have_menus_p): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
13744
diff
changeset
|
2239 |
13179 | 2240 /* ----------------------- DOS / UNIX conversion --------------------- */ |
2241 | |
15618
5da6a61ce827
(dostounix_filename): On caseless filesystems, downcase the filename.
Miles Bader <miles@gnu.org>
parents:
15588
diff
changeset
|
2242 void msdos_downcase_filename (unsigned char *); |
5da6a61ce827
(dostounix_filename): On caseless filesystems, downcase the filename.
Miles Bader <miles@gnu.org>
parents:
15588
diff
changeset
|
2243 |
13179 | 2244 /* Destructively turn backslashes into slashes. */ |
2245 | |
2246 void | |
2247 dostounix_filename (p) | |
2248 register char *p; | |
2249 { | |
15618
5da6a61ce827
(dostounix_filename): On caseless filesystems, downcase the filename.
Miles Bader <miles@gnu.org>
parents:
15588
diff
changeset
|
2250 msdos_downcase_filename (p); |
5da6a61ce827
(dostounix_filename): On caseless filesystems, downcase the filename.
Miles Bader <miles@gnu.org>
parents:
15588
diff
changeset
|
2251 |
13179 | 2252 while (*p) |
2253 { | |
2254 if (*p == '\\') | |
2255 *p = '/'; | |
2256 p++; | |
2257 } | |
2258 } | |
2259 | |
2260 /* Destructively turn slashes into backslashes. */ | |
2261 | |
2262 void | |
2263 unixtodos_filename (p) | |
2264 register char *p; | |
2265 { | |
15618
5da6a61ce827
(dostounix_filename): On caseless filesystems, downcase the filename.
Miles Bader <miles@gnu.org>
parents:
15588
diff
changeset
|
2266 if (p[1] == ':' && *p >= 'A' && *p <= 'Z') |
5da6a61ce827
(dostounix_filename): On caseless filesystems, downcase the filename.
Miles Bader <miles@gnu.org>
parents:
15588
diff
changeset
|
2267 { |
5da6a61ce827
(dostounix_filename): On caseless filesystems, downcase the filename.
Miles Bader <miles@gnu.org>
parents:
15588
diff
changeset
|
2268 *p += 'a' - 'A'; |
5da6a61ce827
(dostounix_filename): On caseless filesystems, downcase the filename.
Miles Bader <miles@gnu.org>
parents:
15588
diff
changeset
|
2269 p += 2; |
5da6a61ce827
(dostounix_filename): On caseless filesystems, downcase the filename.
Miles Bader <miles@gnu.org>
parents:
15588
diff
changeset
|
2270 } |
5da6a61ce827
(dostounix_filename): On caseless filesystems, downcase the filename.
Miles Bader <miles@gnu.org>
parents:
15588
diff
changeset
|
2271 |
13179 | 2272 while (*p) |
2273 { | |
2274 if (*p == '/') | |
2275 *p = '\\'; | |
2276 p++; | |
2277 } | |
2278 } | |
2279 | |
2280 /* Get the default directory for a given drive. 0=def, 1=A, 2=B, ... */ | |
2281 | |
2282 int | |
2283 getdefdir (drive, dst) | |
2284 int drive; | |
2285 char *dst; | |
2286 { | |
15125
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2287 char in_path[4], *p = in_path; |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2288 int e = errno; |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2289 |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2290 /* Generate "X:." (when drive is X) or "." (when drive is 0). */ |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2291 if (drive != 0) |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2292 { |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2293 *p++ = drive + 'A' - 1; |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2294 *p++ = ':'; |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2295 } |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2296 |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2297 *p++ = '.'; |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2298 *p = '\0'; |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2299 errno = 0; |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2300 _fixpath (in_path, dst); |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2301 if (errno) |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2302 return 0; |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2303 |
15219
a800d1a0f07e
(msdos_downcase_filename): New function to convert case in filenames.
Richard M. Stallman <rms@gnu.org>
parents:
15186
diff
changeset
|
2304 msdos_downcase_filename (dst); |
15125
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2305 |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2306 errno = e; |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2307 return 1; |
13179 | 2308 } |
2309 | |
2310 /* Remove all CR's that are followed by a LF. */ | |
2311 | |
2312 int | |
2313 crlf_to_lf (n, buf) | |
2314 register int n; | |
2315 register unsigned char *buf; | |
2316 { | |
2317 unsigned char *np = buf; | |
2318 unsigned char *startp = buf; | |
2319 unsigned char *endp = buf + n; | |
2320 unsigned char c; | |
2321 | |
2322 if (n == 0) | |
2323 return n; | |
2324 while (buf < endp - 1) | |
2325 { | |
2326 if (*buf == 0x0d) | |
2327 { | |
2328 if (*(++buf) != 0x0a) | |
2329 *np++ = 0x0d; | |
2330 } | |
2331 else | |
2332 *np++ = *buf++; | |
2333 } | |
2334 if (buf < endp) | |
2335 *np++ = *buf++; | |
2336 return np - startp; | |
2337 } | |
14999 | 2338 |
2339 #if defined(__DJGPP__) && __DJGPP__ == 2 && __DJGPP_MINOR__ == 0 | |
2340 | |
2341 /* In DJGPP v2.0, library `write' can call `malloc', which might | |
2342 cause relocation of the buffer whose address we get in ADDR. | |
2343 Here is a version of `write' that avoids calling `malloc', | |
2344 to serve us until such time as the library is fixed. | |
2345 Actually, what we define here is called `__write', because | |
2346 `write' is a stub that just jmp's to `__write' (to be | |
2347 POSIXLY-correct with respect to the global name-space). */ | |
2348 | |
2349 #include <io.h> /* for _write */ | |
2350 #include <libc/dosio.h> /* for __file_handle_modes[] */ | |
2351 | |
2352 static char xbuf[64 * 1024]; /* DOS cannot write more in one chunk */ | |
2353 | |
2354 #define XBUF_END (xbuf + sizeof (xbuf) - 1) | |
2355 | |
2356 int | |
2357 __write (int handle, const void *buffer, size_t count) | |
2358 { | |
2359 if (count == 0) | |
2360 return 0; | |
2361 | |
2362 if(__file_handle_modes[handle] & O_BINARY) | |
2363 return _write (handle, buffer, count); | |
2364 else | |
2365 { | |
2366 char *xbp = xbuf; | |
2367 const char *bp = buffer; | |
2368 int total_written = 0; | |
2369 int nmoved = 0, ncr = 0; | |
2370 | |
2371 while (count) | |
2372 { | |
2373 /* The next test makes sure there's space for at least 2 more | |
2374 characters in xbuf[], so both CR and LF can be put there. */ | |
2375 if (xbp < XBUF_END) | |
2376 { | |
2377 if (*bp == '\n') | |
2378 { | |
2379 ncr++; | |
2380 *xbp++ = '\r'; | |
2381 } | |
2382 *xbp++ = *bp++; | |
2383 nmoved++; | |
2384 count--; | |
2385 } | |
2386 if (xbp >= XBUF_END || !count) | |
2387 { | |
2388 size_t to_write = nmoved + ncr; | |
2389 int written = _write (handle, xbuf, to_write); | |
2390 | |
2391 if (written == -1) | |
2392 return -1; | |
2393 else | |
2394 total_written += nmoved; /* CRs aren't counted in ret value */ | |
2395 | |
2396 /* If some, but not all were written (disk full?), return | |
2397 an estimate of the total written bytes not counting CRs. */ | |
2398 if (written < to_write) | |
2399 return total_written - (to_write - written) * nmoved/to_write; | |
2400 | |
2401 nmoved = 0; | |
2402 ncr = 0; | |
2403 xbp = xbuf; | |
2404 } | |
2405 } | |
2406 return total_written; | |
2407 } | |
2408 } | |
2409 | |
16524
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2410 /* A low-level file-renaming function which works around Windows 95 bug. |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2411 This is pulled directly out of DJGPP v2.01 library sources, and only |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2412 used when you compile with DJGPP v2.0. */ |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2413 |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2414 #include <io.h> |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2415 |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2416 int _rename(const char *old, const char *new) |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2417 { |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2418 __dpmi_regs r; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2419 int olen = strlen(old) + 1; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2420 int i; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2421 int use_lfn = _USE_LFN; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2422 char tempfile[FILENAME_MAX]; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2423 const char *orig = old; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2424 int lfn_fd = -1; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2425 |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2426 r.x.dx = __tb_offset; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2427 r.x.di = __tb_offset + olen; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2428 r.x.ds = r.x.es = __tb_segment; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2429 |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2430 if (use_lfn) |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2431 { |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2432 /* Windows 95 bug: for some filenames, when you rename |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2433 file -> file~ (as in Emacs, to leave a backup), the |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2434 short 8+3 alias doesn't change, which effectively |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2435 makes OLD and NEW the same file. We must rename |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2436 through a temporary file to work around this. */ |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2437 |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2438 char *pbase = 0, *p; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2439 static char try_char[] = "abcdefghijklmnopqrstuvwxyz012345789"; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2440 int idx = sizeof(try_char) - 1; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2441 |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2442 /* Generate a temporary name. Can't use `tmpnam', since $TMPDIR |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2443 might point to another drive, which will fail the DOS call. */ |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2444 strcpy(tempfile, old); |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2445 for (p = tempfile; *p; p++) /* ensure temporary is on the same drive */ |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2446 if (*p == '/' || *p == '\\' || *p == ':') |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2447 pbase = p; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2448 if (pbase) |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2449 pbase++; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2450 else |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2451 pbase = tempfile; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2452 strcpy(pbase, "X$$djren$$.$$temp$$"); |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2453 |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2454 do |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2455 { |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2456 if (idx <= 0) |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2457 return -1; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2458 *pbase = try_char[--idx]; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2459 } while (_chmod(tempfile, 0) != -1); |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2460 |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2461 r.x.ax = 0x7156; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2462 _put_path2(tempfile, olen); |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2463 _put_path(old); |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2464 __dpmi_int(0x21, &r); |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2465 if (r.x.flags & 1) |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2466 { |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2467 errno = __doserr_to_errno(r.x.ax); |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2468 return -1; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2469 } |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2470 |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2471 /* Now create a file with the original name. This will |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2472 ensure that NEW will always have a 8+3 alias |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2473 different from that of OLD. (Seems to be required |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2474 when NameNumericTail in the Registry is set to 0.) */ |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2475 lfn_fd = _creat(old, 0); |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2476 |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2477 olen = strlen(tempfile) + 1; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2478 old = tempfile; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2479 r.x.di = __tb_offset + olen; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2480 } |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2481 |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2482 for (i=0; i<2; i++) |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2483 { |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2484 if(use_lfn) |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2485 r.x.ax = 0x7156; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2486 else |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2487 r.h.ah = 0x56; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2488 _put_path2(new, olen); |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2489 _put_path(old); |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2490 __dpmi_int(0x21, &r); |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2491 if(r.x.flags & 1) |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2492 { |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2493 if (r.x.ax == 5 && i == 0) /* access denied */ |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2494 remove(new); /* and try again */ |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2495 else |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2496 { |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2497 errno = __doserr_to_errno(r.x.ax); |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2498 |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2499 /* Restore to original name if we renamed it to temporary. */ |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2500 if (use_lfn) |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2501 { |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2502 if (lfn_fd != -1) |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2503 { |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2504 _close (lfn_fd); |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2505 remove (orig); |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2506 } |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2507 _put_path2(orig, olen); |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2508 _put_path(tempfile); |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2509 r.x.ax = 0x7156; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2510 __dpmi_int(0x21, &r); |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2511 } |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2512 return -1; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2513 } |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2514 } |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2515 else |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2516 break; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2517 } |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2518 |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2519 /* Success. Delete the file possibly created to work |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2520 around the Windows 95 bug. */ |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2521 if (lfn_fd != -1) |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2522 return (_close (lfn_fd) == 0) ? remove (orig) : -1; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2523 return 0; |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2524 } |
84440bd95727
[__DJGPP_MINOR__ == 0] (_rename): New function, a
Richard M. Stallman <rms@gnu.org>
parents:
16310
diff
changeset
|
2525 |
14999 | 2526 #endif /* __DJGPP__ == 2 && __DJGPP_MINOR__ == 0 */ |
2527 | |
15174
08937f70419e
(Fmsdos_long_file_names): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15125
diff
changeset
|
2528 DEFUN ("msdos-long-file-names", Fmsdos_long_file_names, Smsdos_long_file_names, |
08937f70419e
(Fmsdos_long_file_names): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15125
diff
changeset
|
2529 0, 0, 0, |
08937f70419e
(Fmsdos_long_file_names): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15125
diff
changeset
|
2530 "Return non-nil if long file names are supported on MSDOS.") |
08937f70419e
(Fmsdos_long_file_names): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15125
diff
changeset
|
2531 () |
08937f70419e
(Fmsdos_long_file_names): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15125
diff
changeset
|
2532 { |
08937f70419e
(Fmsdos_long_file_names): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15125
diff
changeset
|
2533 return (_USE_LFN ? Qt : Qnil); |
08937f70419e
(Fmsdos_long_file_names): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15125
diff
changeset
|
2534 } |
15219
a800d1a0f07e
(msdos_downcase_filename): New function to convert case in filenames.
Richard M. Stallman <rms@gnu.org>
parents:
15186
diff
changeset
|
2535 |
a800d1a0f07e
(msdos_downcase_filename): New function to convert case in filenames.
Richard M. Stallman <rms@gnu.org>
parents:
15186
diff
changeset
|
2536 /* Convert alphabetic characters in a filename to lower-case. */ |
a800d1a0f07e
(msdos_downcase_filename): New function to convert case in filenames.
Richard M. Stallman <rms@gnu.org>
parents:
15186
diff
changeset
|
2537 |
a800d1a0f07e
(msdos_downcase_filename): New function to convert case in filenames.
Richard M. Stallman <rms@gnu.org>
parents:
15186
diff
changeset
|
2538 void |
a800d1a0f07e
(msdos_downcase_filename): New function to convert case in filenames.
Richard M. Stallman <rms@gnu.org>
parents:
15186
diff
changeset
|
2539 msdos_downcase_filename (p) |
a800d1a0f07e
(msdos_downcase_filename): New function to convert case in filenames.
Richard M. Stallman <rms@gnu.org>
parents:
15186
diff
changeset
|
2540 register unsigned char *p; |
a800d1a0f07e
(msdos_downcase_filename): New function to convert case in filenames.
Richard M. Stallman <rms@gnu.org>
parents:
15186
diff
changeset
|
2541 { |
15588 | 2542 /* Always lower-case drive letters a-z, even if the filesystem |
2543 preserves case in filenames. | |
2544 This is so MSDOS filenames could be compared by string comparison | |
2545 functions that are case-sensitive. Even case-preserving filesystems | |
2546 do not distinguish case in drive letters. */ | |
2547 if (p[1] == ':' && *p >= 'A' && *p <= 'Z') | |
2548 { | |
2549 *p += 'a' - 'A'; | |
2550 p += 2; | |
2551 } | |
2552 | |
15219
a800d1a0f07e
(msdos_downcase_filename): New function to convert case in filenames.
Richard M. Stallman <rms@gnu.org>
parents:
15186
diff
changeset
|
2553 /* Under LFN we expect to get pathnames in their true case. */ |
a800d1a0f07e
(msdos_downcase_filename): New function to convert case in filenames.
Richard M. Stallman <rms@gnu.org>
parents:
15186
diff
changeset
|
2554 if (NILP (Fmsdos_long_file_names ())) |
a800d1a0f07e
(msdos_downcase_filename): New function to convert case in filenames.
Richard M. Stallman <rms@gnu.org>
parents:
15186
diff
changeset
|
2555 for ( ; *p; p++) |
a800d1a0f07e
(msdos_downcase_filename): New function to convert case in filenames.
Richard M. Stallman <rms@gnu.org>
parents:
15186
diff
changeset
|
2556 if (*p >= 'A' && *p <= 'Z') |
a800d1a0f07e
(msdos_downcase_filename): New function to convert case in filenames.
Richard M. Stallman <rms@gnu.org>
parents:
15186
diff
changeset
|
2557 *p += 'a' - 'A'; |
a800d1a0f07e
(msdos_downcase_filename): New function to convert case in filenames.
Richard M. Stallman <rms@gnu.org>
parents:
15186
diff
changeset
|
2558 } |
a800d1a0f07e
(msdos_downcase_filename): New function to convert case in filenames.
Richard M. Stallman <rms@gnu.org>
parents:
15186
diff
changeset
|
2559 |
a800d1a0f07e
(msdos_downcase_filename): New function to convert case in filenames.
Richard M. Stallman <rms@gnu.org>
parents:
15186
diff
changeset
|
2560 DEFUN ("msdos-downcase-filename", Fmsdos_downcase_filename, Smsdos_downcase_filename, |
a800d1a0f07e
(msdos_downcase_filename): New function to convert case in filenames.
Richard M. Stallman <rms@gnu.org>
parents:
15186
diff
changeset
|
2561 1, 1, 0, |
a800d1a0f07e
(msdos_downcase_filename): New function to convert case in filenames.
Richard M. Stallman <rms@gnu.org>
parents:
15186
diff
changeset
|
2562 "Convert alphabetic characters in FILENAME to lower case and return that.\n\ |
15222
cc264dd966cd
(Fmsdos_downcase_filename): Don't change the argument, return a copy.
Richard M. Stallman <rms@gnu.org>
parents:
15219
diff
changeset
|
2563 When long filenames are supported, doesn't change FILENAME.\n\ |
cc264dd966cd
(Fmsdos_downcase_filename): Don't change the argument, return a copy.
Richard M. Stallman <rms@gnu.org>
parents:
15219
diff
changeset
|
2564 If FILENAME is not a string, returns nil.\n\ |
cc264dd966cd
(Fmsdos_downcase_filename): Don't change the argument, return a copy.
Richard M. Stallman <rms@gnu.org>
parents:
15219
diff
changeset
|
2565 The argument object is never altered--the value is a copy.") |
15219
a800d1a0f07e
(msdos_downcase_filename): New function to convert case in filenames.
Richard M. Stallman <rms@gnu.org>
parents:
15186
diff
changeset
|
2566 (filename) |
a800d1a0f07e
(msdos_downcase_filename): New function to convert case in filenames.
Richard M. Stallman <rms@gnu.org>
parents:
15186
diff
changeset
|
2567 Lisp_Object filename; |
a800d1a0f07e
(msdos_downcase_filename): New function to convert case in filenames.
Richard M. Stallman <rms@gnu.org>
parents:
15186
diff
changeset
|
2568 { |
15222
cc264dd966cd
(Fmsdos_downcase_filename): Don't change the argument, return a copy.
Richard M. Stallman <rms@gnu.org>
parents:
15219
diff
changeset
|
2569 char *fname; |
cc264dd966cd
(Fmsdos_downcase_filename): Don't change the argument, return a copy.
Richard M. Stallman <rms@gnu.org>
parents:
15219
diff
changeset
|
2570 Lisp_Object tem; |
cc264dd966cd
(Fmsdos_downcase_filename): Don't change the argument, return a copy.
Richard M. Stallman <rms@gnu.org>
parents:
15219
diff
changeset
|
2571 |
cc264dd966cd
(Fmsdos_downcase_filename): Don't change the argument, return a copy.
Richard M. Stallman <rms@gnu.org>
parents:
15219
diff
changeset
|
2572 if (! STRINGP (filename)) |
cc264dd966cd
(Fmsdos_downcase_filename): Don't change the argument, return a copy.
Richard M. Stallman <rms@gnu.org>
parents:
15219
diff
changeset
|
2573 return Qnil; |
cc264dd966cd
(Fmsdos_downcase_filename): Don't change the argument, return a copy.
Richard M. Stallman <rms@gnu.org>
parents:
15219
diff
changeset
|
2574 |
cc264dd966cd
(Fmsdos_downcase_filename): Don't change the argument, return a copy.
Richard M. Stallman <rms@gnu.org>
parents:
15219
diff
changeset
|
2575 tem = Fcopy_sequence (filename); |
cc264dd966cd
(Fmsdos_downcase_filename): Don't change the argument, return a copy.
Richard M. Stallman <rms@gnu.org>
parents:
15219
diff
changeset
|
2576 msdos_downcase_filename (XSTRING (tem)->data); |
cc264dd966cd
(Fmsdos_downcase_filename): Don't change the argument, return a copy.
Richard M. Stallman <rms@gnu.org>
parents:
15219
diff
changeset
|
2577 return tem; |
15219
a800d1a0f07e
(msdos_downcase_filename): New function to convert case in filenames.
Richard M. Stallman <rms@gnu.org>
parents:
15186
diff
changeset
|
2578 } |
13179 | 2579 |
2580 /* The Emacs root directory as determined by init_environment. */ | |
2581 | |
2582 static char emacsroot[MAXPATHLEN]; | |
2583 | |
2584 char * | |
2585 rootrelativepath (rel) | |
2586 char *rel; | |
2587 { | |
2588 static char result[MAXPATHLEN + 10]; | |
2589 | |
2590 strcpy (result, emacsroot); | |
2591 strcat (result, "/"); | |
2592 strcat (result, rel); | |
2593 return result; | |
2594 } | |
2595 | |
2596 /* Define a lot of environment variables if not already defined. Don't | |
2597 remove anything unless you know what you're doing -- lots of code will | |
2598 break if one or more of these are missing. */ | |
2599 | |
2600 void | |
2601 init_environment (argc, argv, skip_args) | |
2602 int argc; | |
2603 char **argv; | |
2604 int skip_args; | |
2605 { | |
2606 char *s, *t, *root; | |
2607 int len; | |
2608 | |
2609 /* Find our root from argv[0]. Assuming argv[0] is, say, | |
2610 "c:/emacs/bin/emacs.exe" our root will be "c:/emacs". */ | |
2611 root = alloca (MAXPATHLEN + 20); | |
2612 _fixpath (argv[0], root); | |
15618
5da6a61ce827
(dostounix_filename): On caseless filesystems, downcase the filename.
Miles Bader <miles@gnu.org>
parents:
15588
diff
changeset
|
2613 msdos_downcase_filename (root); |
13179 | 2614 len = strlen (root); |
2615 while (len > 0 && root[len] != '/' && root[len] != ':') | |
2616 len--; | |
2617 root[len] = '\0'; | |
2618 if (len > 4 && strcmp (root + len - 4, "/bin") == 0) | |
2619 root[len - 4] = '\0'; | |
2620 else | |
2621 strcpy (root, "c:/emacs"); /* Only under debuggers, I think. */ | |
2622 len = strlen (root); | |
2623 strcpy (emacsroot, root); | |
2624 | |
2625 /* We default HOME to our root. */ | |
2626 setenv ("HOME", root, 0); | |
2627 | |
2628 /* We default EMACSPATH to root + "/bin". */ | |
2629 strcpy (root + len, "/bin"); | |
2630 setenv ("EMACSPATH", root, 0); | |
2631 | |
2632 /* I don't expect anybody to ever use other terminals so the internal | |
2633 terminal is the default. */ | |
2634 setenv ("TERM", "internal", 0); | |
2635 | |
2636 #ifdef HAVE_X_WINDOWS | |
2637 /* Emacs expects DISPLAY to be set. */ | |
2638 setenv ("DISPLAY", "unix:0.0", 0); | |
2639 #endif | |
2640 | |
2641 /* SHELL is a bit tricky -- COMSPEC is the closest we come, but we must | |
2642 downcase it and mirror the backslashes. */ | |
2643 s = getenv ("COMSPEC"); | |
2644 if (!s) s = "c:/command.com"; | |
2645 t = alloca (strlen (s) + 1); | |
2646 strcpy (t, s); | |
2647 dostounix_filename (t); | |
2648 setenv ("SHELL", t, 0); | |
2649 | |
2650 /* PATH is also downcased and backslashes mirrored. */ | |
2651 s = getenv ("PATH"); | |
2652 if (!s) s = ""; | |
2653 t = alloca (strlen (s) + 3); | |
2654 /* Current directory is always considered part of MsDos's path but it is | |
2655 not normally mentioned. Now it is. */ | |
2656 strcat (strcpy (t, ".;"), s); | |
2657 dostounix_filename (t); /* Not a single file name, but this should work. */ | |
2658 setenv ("PATH", t, 1); | |
2659 | |
2660 /* In some sense all dos users have root privileges, so... */ | |
2661 setenv ("USER", "root", 0); | |
2662 setenv ("NAME", getenv ("USER"), 0); | |
2663 | |
2664 /* Time zone determined from country code. To make this possible, the | |
2665 country code may not span more than one time zone. In other words, | |
2666 in the USA, you lose. */ | |
13274 | 2667 if (!getenv ("TZ")) |
13179 | 2668 switch (dos_country_code) |
2669 { | |
2670 case 31: /* Belgium */ | |
2671 case 32: /* The Netherlands */ | |
2672 case 33: /* France */ | |
2673 case 34: /* Spain */ | |
2674 case 36: /* Hungary */ | |
2675 case 38: /* Yugoslavia (or what's left of it?) */ | |
2676 case 39: /* Italy */ | |
2677 case 41: /* Switzerland */ | |
2678 case 42: /* Tjekia */ | |
2679 case 45: /* Denmark */ | |
2680 case 46: /* Sweden */ | |
2681 case 47: /* Norway */ | |
2682 case 48: /* Poland */ | |
2683 case 49: /* Germany */ | |
2684 /* Daylight saving from last Sunday in March to last Sunday in | |
2685 September, both at 2AM. */ | |
13394
c4549fcdd5f3
(the_only_x_display): Type is now struct x_output.
Karl Heuer <kwzh@gnu.org>
parents:
13305
diff
changeset
|
2686 setenv ("TZ", "MET-01METDST-02,M3.5.0/02:00,M9.5.0/02:00", 0); |
13179 | 2687 break; |
2688 case 44: /* United Kingdom */ | |
2689 case 351: /* Portugal */ | |
2690 case 354: /* Iceland */ | |
13394
c4549fcdd5f3
(the_only_x_display): Type is now struct x_output.
Karl Heuer <kwzh@gnu.org>
parents:
13305
diff
changeset
|
2691 setenv ("TZ", "GMT+00", 0); |
13179 | 2692 break; |
2693 case 81: /* Japan */ | |
2694 case 82: /* Korea */ | |
13394
c4549fcdd5f3
(the_only_x_display): Type is now struct x_output.
Karl Heuer <kwzh@gnu.org>
parents:
13305
diff
changeset
|
2695 setenv ("TZ", "JST-09", 0); |
13179 | 2696 break; |
2697 case 90: /* Turkey */ | |
2698 case 358: /* Finland */ | |
13394
c4549fcdd5f3
(the_only_x_display): Type is now struct x_output.
Karl Heuer <kwzh@gnu.org>
parents:
13305
diff
changeset
|
2699 setenv ("TZ", "EET-02", 0); |
c4549fcdd5f3
(the_only_x_display): Type is now struct x_output.
Karl Heuer <kwzh@gnu.org>
parents:
13305
diff
changeset
|
2700 break; |
13179 | 2701 case 972: /* Israel */ |
13394
c4549fcdd5f3
(the_only_x_display): Type is now struct x_output.
Karl Heuer <kwzh@gnu.org>
parents:
13305
diff
changeset
|
2702 /* This is an approximation. (For exact rules, use the |
c4549fcdd5f3
(the_only_x_display): Type is now struct x_output.
Karl Heuer <kwzh@gnu.org>
parents:
13305
diff
changeset
|
2703 `zoneinfo/israel' file which comes with DJGPP, but you need |
c4549fcdd5f3
(the_only_x_display): Type is now struct x_output.
Karl Heuer <kwzh@gnu.org>
parents:
13305
diff
changeset
|
2704 to install it in `/usr/share/zoneinfo/' directory first.) */ |
c4549fcdd5f3
(the_only_x_display): Type is now struct x_output.
Karl Heuer <kwzh@gnu.org>
parents:
13305
diff
changeset
|
2705 setenv ("TZ", "IST-02IDT-03,M4.1.6/00:00,M9.5.6/01:00", 0); |
13179 | 2706 break; |
2707 } | |
14974
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2708 tzset (); |
13179 | 2709 } |
2710 | |
2711 | |
2712 | |
2713 static int break_stat; /* BREAK check mode status. */ | |
2714 static int stdin_stat; /* stdin IOCTL status. */ | |
2715 | |
14974
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2716 #if __DJGPP__ < 2 |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2717 |
13179 | 2718 /* These must be global. */ |
2719 static _go32_dpmi_seginfo ctrl_break_vector; | |
2720 static _go32_dpmi_registers ctrl_break_regs; | |
2721 static int ctrlbreakinstalled = 0; | |
2722 | |
2723 /* Interrupt level detection of Ctrl-Break. Don't do anything fancy here! */ | |
2724 | |
2725 void | |
2726 ctrl_break_func (regs) | |
2727 _go32_dpmi_registers *regs; | |
2728 { | |
2729 Vquit_flag = Qt; | |
2730 } | |
2731 | |
2732 void | |
2733 install_ctrl_break_check () | |
2734 { | |
2735 if (!ctrlbreakinstalled) | |
2736 { | |
2737 /* Don't press Ctrl-Break if you don't have either DPMI or Emacs | |
2738 was compiler with Djgpp 1.11 maintenance level 5 or later! */ | |
2739 ctrlbreakinstalled = 1; | |
2740 ctrl_break_vector.pm_offset = (int) ctrl_break_func; | |
2741 _go32_dpmi_allocate_real_mode_callback_iret (&ctrl_break_vector, | |
2742 &ctrl_break_regs); | |
2743 _go32_dpmi_set_real_mode_interrupt_vector (0x1b, &ctrl_break_vector); | |
2744 } | |
2745 } | |
2746 | |
14974
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2747 #endif /* __DJGPP__ < 2 */ |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2748 |
14413
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
2749 /* Turn off Dos' Ctrl-C checking and inhibit interpretation of |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
2750 control chars by DOS. Determine the keyboard type. */ |
13179 | 2751 |
2752 int | |
2753 dos_ttraw () | |
2754 { | |
2755 union REGS inregs, outregs; | |
2756 static int first_time = 1; | |
2757 | |
2758 break_stat = getcbrk (); | |
2759 setcbrk (0); | |
14974
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2760 #if __DJGPP__ < 2 |
13179 | 2761 install_ctrl_break_check (); |
14974
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2762 #endif |
13179 | 2763 |
2764 if (first_time) | |
2765 { | |
2766 inregs.h.ah = 0xc0; | |
2767 int86 (0x15, &inregs, &outregs); | |
2768 extended_kbd = (!outregs.x.cflag) && (outregs.h.ah == 0); | |
2769 | |
2770 have_mouse = 0; | |
2771 | |
2772 if (internal_terminal | |
2773 #ifdef HAVE_X_WINDOWS | |
2774 && inhibit_window_system | |
2775 #endif | |
2776 ) | |
2777 { | |
2778 inregs.x.ax = 0x0021; | |
2779 int86 (0x33, &inregs, &outregs); | |
2780 have_mouse = (outregs.x.ax & 0xffff) == 0xffff; | |
2781 if (!have_mouse) | |
2782 { | |
2783 /* Reportedly, the above doesn't work for some mouse drivers. There | |
2784 is an additional detection method that should work, but might be | |
2785 a little slower. Use that as an alternative. */ | |
2786 inregs.x.ax = 0x0000; | |
2787 int86 (0x33, &inregs, &outregs); | |
2788 have_mouse = (outregs.x.ax & 0xffff) == 0xffff; | |
2789 } | |
2790 | |
2791 if (have_mouse) | |
2792 { | |
2793 have_mouse = 1; /* enable mouse */ | |
2794 mouse_visible = 0; | |
2795 | |
2796 if (outregs.x.bx == 3) | |
2797 { | |
2798 mouse_button_count = 3; | |
2799 mouse_button_translate[0] = 0; /* Left */ | |
2800 mouse_button_translate[1] = 2; /* Middle */ | |
2801 mouse_button_translate[2] = 1; /* Right */ | |
2802 } | |
2803 else | |
2804 { | |
2805 mouse_button_count = 2; | |
2806 mouse_button_translate[0] = 0; | |
2807 mouse_button_translate[1] = 1; | |
2808 } | |
2809 mouse_position_hook = &mouse_get_pos; | |
2810 mouse_init (); | |
2811 } | |
2812 } | |
14974
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2813 |
13179 | 2814 first_time = 0; |
14974
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2815 |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2816 #if __DJGPP__ >= 2 |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2817 |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2818 stdin_stat = setmode (fileno (stdin), O_BINARY); |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2819 return (stdin_stat != -1); |
13179 | 2820 } |
14974
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2821 else |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2822 return (setmode (fileno (stdin), O_BINARY) != -1); |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2823 |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2824 #else /* __DJGPP__ < 2 */ |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2825 |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2826 } |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2827 |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2828 /* I think it is wrong to overwrite `stdin_stat' every time |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2829 but the first one this function is called, but I don't |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2830 want to change the way it used to work in v1.x.--EZ */ |
13179 | 2831 |
2832 inregs.x.ax = 0x4400; /* Get IOCTL status. */ | |
2833 inregs.x.bx = 0x00; /* 0 = stdin. */ | |
2834 intdos (&inregs, &outregs); | |
2835 stdin_stat = outregs.h.dl; | |
2836 | |
2837 inregs.x.dx = stdin_stat | 0x0020; /* raw mode */ | |
2838 inregs.x.ax = 0x4401; /* Set IOCTL status */ | |
2839 intdos (&inregs, &outregs); | |
2840 return !outregs.x.cflag; | |
14974
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2841 |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2842 #endif /* __DJGPP__ < 2 */ |
13179 | 2843 } |
2844 | |
2845 /* Restore status of standard input and Ctrl-C checking. */ | |
14413
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
2846 |
13179 | 2847 int |
2848 dos_ttcooked () | |
2849 { | |
2850 union REGS inregs, outregs; | |
2851 | |
2852 setcbrk (break_stat); | |
2853 mouse_off (); | |
2854 | |
14974
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2855 #if __DJGPP__ >= 2 |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2856 |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2857 return (setmode (fileno (stdin), stdin_stat) != -1); |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2858 |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2859 #else /* not __DJGPP__ >= 2 */ |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2860 |
13179 | 2861 inregs.x.ax = 0x4401; /* Set IOCTL status. */ |
2862 inregs.x.bx = 0x00; /* 0 = stdin. */ | |
2863 inregs.x.dx = stdin_stat; | |
2864 intdos (&inregs, &outregs); | |
2865 return !outregs.x.cflag; | |
14974
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2866 |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
2867 #endif /* not __DJGPP__ >= 2 */ |
13179 | 2868 } |
2869 | |
2870 | |
2871 /* Run command as specified by ARGV in directory DIR. | |
13718
e1b33f87545f
(run_msdos_command): Support redirection of stderr.
Karl Heuer <kwzh@gnu.org>
parents:
13717
diff
changeset
|
2872 The command is run with input from TEMPIN, output to |
e1b33f87545f
(run_msdos_command): Support redirection of stderr.
Karl Heuer <kwzh@gnu.org>
parents:
13717
diff
changeset
|
2873 file TEMPOUT and stderr to TEMPERR. */ |
14413
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
2874 |
13179 | 2875 int |
13718
e1b33f87545f
(run_msdos_command): Support redirection of stderr.
Karl Heuer <kwzh@gnu.org>
parents:
13717
diff
changeset
|
2876 run_msdos_command (argv, dir, tempin, tempout, temperr) |
13179 | 2877 unsigned char **argv; |
2878 Lisp_Object dir; | |
13718
e1b33f87545f
(run_msdos_command): Support redirection of stderr.
Karl Heuer <kwzh@gnu.org>
parents:
13717
diff
changeset
|
2879 int tempin, tempout, temperr; |
13179 | 2880 { |
16310
c987c025d448
(run_msdos_command): When testing whether a shell
Richard M. Stallman <rms@gnu.org>
parents:
16210
diff
changeset
|
2881 char *saveargv1, *saveargv2, **envv, *lowcase_argv0, *pa, *pl; |
13179 | 2882 char oldwd[MAXPATHLEN + 1]; /* Fixed size is safe on MSDOS. */ |
2883 int msshell, result = -1; | |
2884 int in, out, inbak, outbak, errbak; | |
2885 int x, y; | |
2886 Lisp_Object cmd; | |
2887 | |
2888 /* Get current directory as MSDOS cwd is not per-process. */ | |
2889 getwd (oldwd); | |
2890 | |
16310
c987c025d448
(run_msdos_command): When testing whether a shell
Richard M. Stallman <rms@gnu.org>
parents:
16210
diff
changeset
|
2891 /* If argv[0] is the shell, it might come in any lettercase. |
c987c025d448
(run_msdos_command): When testing whether a shell
Richard M. Stallman <rms@gnu.org>
parents:
16210
diff
changeset
|
2892 Since `Fmember' is case-sensitive, we need to downcase |
c987c025d448
(run_msdos_command): When testing whether a shell
Richard M. Stallman <rms@gnu.org>
parents:
16210
diff
changeset
|
2893 argv[0], even if we are on case-preserving filesystems. */ |
c987c025d448
(run_msdos_command): When testing whether a shell
Richard M. Stallman <rms@gnu.org>
parents:
16210
diff
changeset
|
2894 lowcase_argv0 = alloca (strlen (argv[0]) + 1); |
c987c025d448
(run_msdos_command): When testing whether a shell
Richard M. Stallman <rms@gnu.org>
parents:
16210
diff
changeset
|
2895 for (pa = argv[0], pl = lowcase_argv0; *pa; pl++) |
c987c025d448
(run_msdos_command): When testing whether a shell
Richard M. Stallman <rms@gnu.org>
parents:
16210
diff
changeset
|
2896 { |
c987c025d448
(run_msdos_command): When testing whether a shell
Richard M. Stallman <rms@gnu.org>
parents:
16210
diff
changeset
|
2897 *pl = *pa++; |
c987c025d448
(run_msdos_command): When testing whether a shell
Richard M. Stallman <rms@gnu.org>
parents:
16210
diff
changeset
|
2898 if (*pl >= 'A' && *pl <= 'Z') |
c987c025d448
(run_msdos_command): When testing whether a shell
Richard M. Stallman <rms@gnu.org>
parents:
16210
diff
changeset
|
2899 *pl += 'a' - 'A'; |
c987c025d448
(run_msdos_command): When testing whether a shell
Richard M. Stallman <rms@gnu.org>
parents:
16210
diff
changeset
|
2900 } |
c987c025d448
(run_msdos_command): When testing whether a shell
Richard M. Stallman <rms@gnu.org>
parents:
16210
diff
changeset
|
2901 *pl = '\0'; |
c987c025d448
(run_msdos_command): When testing whether a shell
Richard M. Stallman <rms@gnu.org>
parents:
16210
diff
changeset
|
2902 |
c987c025d448
(run_msdos_command): When testing whether a shell
Richard M. Stallman <rms@gnu.org>
parents:
16210
diff
changeset
|
2903 cmd = Ffile_name_nondirectory (build_string (lowcase_argv0)); |
13179 | 2904 msshell = !NILP (Fmember (cmd, Fsymbol_value (intern ("msdos-shells")))) |
2905 && !strcmp ("-c", argv[1]); | |
2906 if (msshell) | |
2907 { | |
2908 saveargv1 = argv[1]; | |
2909 saveargv2 = argv[2]; | |
2910 argv[1] = "/c"; | |
2911 if (argv[2]) | |
2912 { | |
2913 char *p = alloca (strlen (argv[2]) + 1); | |
2914 | |
2915 strcpy (argv[2] = p, saveargv2); | |
2916 while (*p && isspace (*p)) | |
2917 p++; | |
2918 while (*p && !isspace (*p)) | |
2919 if (*p == '/') | |
2920 *p++ = '\\'; | |
2921 else | |
2922 p++; | |
2923 } | |
2924 } | |
2925 | |
2926 /* Build the environment array. */ | |
2927 { | |
2928 extern Lisp_Object Vprocess_environment; | |
2929 Lisp_Object tmp, lst; | |
2930 int i, len; | |
2931 | |
2932 lst = Vprocess_environment; | |
2933 len = XFASTINT (Flength (lst)); | |
2934 | |
2935 envv = alloca ((len + 1) * sizeof (char *)); | |
2936 for (i = 0; i < len; i++) | |
2937 { | |
2938 tmp = Fcar (lst); | |
2939 lst = Fcdr (lst); | |
2940 CHECK_STRING (tmp, 0); | |
2941 envv[i] = alloca (XSTRING (tmp)->size + 1); | |
2942 strcpy (envv[i], XSTRING (tmp)->data); | |
2943 } | |
2944 envv[len] = (char *) 0; | |
2945 } | |
2946 | |
2947 if (STRINGP (dir)) | |
2948 chdir (XSTRING (dir)->data); | |
2949 inbak = dup (0); | |
2950 outbak = dup (1); | |
2951 errbak = dup (2); | |
2952 if (inbak < 0 || outbak < 0 || errbak < 0) | |
2953 goto done; /* Allocation might fail due to lack of descriptors. */ | |
2954 | |
2955 if (have_mouse > 0) | |
2956 mouse_get_xy (&x, &y); | |
2957 | |
2958 dos_ttcooked (); /* do it here while 0 = stdin */ | |
2959 | |
2960 dup2 (tempin, 0); | |
2961 dup2 (tempout, 1); | |
13718
e1b33f87545f
(run_msdos_command): Support redirection of stderr.
Karl Heuer <kwzh@gnu.org>
parents:
13717
diff
changeset
|
2962 dup2 (temperr, 2); |
13179 | 2963 |
15125
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2964 #if __DJGPP__ > 1 |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2965 |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2966 if (msshell && !argv[3]) |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2967 { |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2968 /* MS-DOS native shells are too restrictive. For starters, they |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2969 cannot grok commands longer than 126 characters. In DJGPP v2 |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2970 and later, `system' is much smarter, so we'll call it instead. */ |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2971 |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2972 extern char **environ; |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2973 environ = envv; |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2974 |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2975 /* A shell gets a single argument--its full command |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2976 line--whose original was saved in `saveargv2'. */ |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2977 result = system (saveargv2); |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2978 } |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2979 else |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2980 |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2981 #endif /* __DJGPP__ > 1 */ |
4dc406e38d68
(dos_get_modifiers): Restore missing comment terminator.
Richard M. Stallman <rms@gnu.org>
parents:
15096
diff
changeset
|
2982 |
13179 | 2983 result = spawnve (P_WAIT, argv[0], argv, envv); |
2984 | |
2985 dup2 (inbak, 0); | |
2986 dup2 (outbak, 1); | |
2987 dup2 (errbak, 2); | |
2988 close (inbak); | |
2989 close (outbak); | |
2990 close (errbak); | |
2991 | |
13274 | 2992 dos_ttraw (); |
13179 | 2993 if (have_mouse > 0) |
2994 { | |
2995 mouse_init (); | |
2996 mouse_moveto (x, y); | |
2997 } | |
2998 | |
2999 done: | |
3000 chdir (oldwd); | |
3001 if (msshell) | |
3002 { | |
3003 argv[1] = saveargv1; | |
3004 argv[2] = saveargv2; | |
3005 } | |
3006 return result; | |
3007 } | |
3008 | |
3009 croak (badfunc) | |
3010 char *badfunc; | |
3011 { | |
3012 fprintf (stderr, "%s not yet implemented\r\n", badfunc); | |
3013 reset_sys_modes (); | |
3014 exit (1); | |
3015 } | |
13848
5f38596d591e
(have_menus_p): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
13744
diff
changeset
|
3016 |
14974
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
3017 #if __DJGPP__ < 2 |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
3018 |
13179 | 3019 /* ------------------------- Compatibility functions ------------------- |
3020 * gethostname | |
3021 * gettimeofday | |
3022 */ | |
3023 | |
14413
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
3024 /* Hostnames for a pc are not really funny, |
77ed54321a41
(dos_rawgetc): Allow simulation of `Mouse-3' by
Richard M. Stallman <rms@gnu.org>
parents:
14284
diff
changeset
|
3025 but they are used in change log so we emulate the best we can. */ |
13179 | 3026 |
3027 gethostname (p, size) | |
3028 char *p; | |
3029 int size; | |
3030 { | |
3031 char *q = egetenv ("HOSTNAME"); | |
3032 | |
3033 if (!q) q = "pc"; | |
3034 strcpy (p, q); | |
3035 return 0; | |
3036 } | |
3037 | |
13394
c4549fcdd5f3
(the_only_x_display): Type is now struct x_output.
Karl Heuer <kwzh@gnu.org>
parents:
13305
diff
changeset
|
3038 /* When time zones are set from Ms-Dos too many C-libraries are playing |
13179 | 3039 tricks with time values. We solve this by defining our own version |
3040 of `gettimeofday' bypassing GO32. Our version needs to be initialized | |
3041 once and after each call to `tzset' with TZ changed. That is | |
3042 accomplished by aliasing tzset to init_gettimeofday. */ | |
3043 | |
3044 static struct tm time_rec; | |
3045 | |
3046 int | |
3047 gettimeofday (struct timeval *tp, struct timezone *tzp) | |
3048 { | |
3049 if (tp) | |
3050 { | |
3051 struct time t; | |
3052 struct tm tm; | |
3053 | |
3054 gettime (&t); | |
3055 if (t.ti_hour < time_rec.tm_hour) /* midnight wrap */ | |
3056 { | |
3057 struct date d; | |
3058 getdate (&d); | |
3059 time_rec.tm_year = d.da_year - 1900; | |
3060 time_rec.tm_mon = d.da_mon - 1; | |
3061 time_rec.tm_mday = d.da_day; | |
3062 } | |
3063 | |
3064 time_rec.tm_hour = t.ti_hour; | |
3065 time_rec.tm_min = t.ti_min; | |
3066 time_rec.tm_sec = t.ti_sec; | |
3067 | |
3068 tm = time_rec; | |
3069 tm.tm_gmtoff = dos_timezone_offset; | |
3070 | |
3071 tp->tv_sec = mktime (&tm); /* may modify tm */ | |
3072 tp->tv_usec = t.ti_hund * (1000000 / 100); | |
3073 } | |
3074 /* Ignore tzp; it's obsolescent. */ | |
3075 return 0; | |
3076 } | |
3077 | |
14974
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
3078 #endif /* __DJGPP__ < 2 */ |
13179 | 3079 |
3080 /* | |
3081 * A list of unimplemented functions that we silently ignore. | |
3082 */ | |
3083 | |
14974
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
3084 #if __DJGPP__ < 2 |
13179 | 3085 unsigned alarm (s) unsigned s; {} |
3086 fork () { return 0; } | |
3087 int kill (x, y) int x, y; { return -1; } | |
3088 nice (p) int p; {} | |
3089 void volatile pause () {} | |
14974
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
3090 sigsetmask (x) int x; { return 0; } |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
3091 #endif |
b99490300747
[MSDOS]: If DJGPP version 2, include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14783
diff
changeset
|
3092 |
13179 | 3093 request_sigio () {} |
3094 setpgrp () {return 0; } | |
3095 setpriority (x,y,z) int x,y,z; { return 0; } | |
14262
ef10a42c21f4
(sigblock): New (dummy) function.
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
3096 sigblock (mask) int mask; { return 0; } |
13179 | 3097 unrequest_sigio () {} |
3098 | |
3099 #ifndef HAVE_SELECT | |
3100 #include "sysselect.h" | |
3101 | |
14279
085bc709c11d
(sys_select): Use time macros to prevent time values
Karl Heuer <kwzh@gnu.org>
parents:
14262
diff
changeset
|
3102 #ifndef EMACS_TIME_ZERO_OR_NEG_P |
085bc709c11d
(sys_select): Use time macros to prevent time values
Karl Heuer <kwzh@gnu.org>
parents:
14262
diff
changeset
|
3103 #define EMACS_TIME_ZERO_OR_NEG_P(time) \ |
085bc709c11d
(sys_select): Use time macros to prevent time values
Karl Heuer <kwzh@gnu.org>
parents:
14262
diff
changeset
|
3104 ((long)(time).tv_sec < 0 \ |
085bc709c11d
(sys_select): Use time macros to prevent time values
Karl Heuer <kwzh@gnu.org>
parents:
14262
diff
changeset
|
3105 || ((time).tv_sec == 0 \ |
085bc709c11d
(sys_select): Use time macros to prevent time values
Karl Heuer <kwzh@gnu.org>
parents:
14262
diff
changeset
|
3106 && (long)(time).tv_usec <= 0)) |
085bc709c11d
(sys_select): Use time macros to prevent time values
Karl Heuer <kwzh@gnu.org>
parents:
14262
diff
changeset
|
3107 #endif |
085bc709c11d
(sys_select): Use time macros to prevent time values
Karl Heuer <kwzh@gnu.org>
parents:
14262
diff
changeset
|
3108 |
085bc709c11d
(sys_select): Use time macros to prevent time values
Karl Heuer <kwzh@gnu.org>
parents:
14262
diff
changeset
|
3109 |
13179 | 3110 /* Only event queue is checked. */ |
14999 | 3111 /* We don't have to call timer_check here |
3112 because wait_reading_process_input takes care of that. */ | |
13179 | 3113 int |
3114 sys_select (nfds, rfds, wfds, efds, timeout) | |
3115 int nfds; | |
3116 SELECT_TYPE *rfds, *wfds, *efds; | |
3117 EMACS_TIME *timeout; | |
3118 { | |
3119 int check_input; | |
3120 struct time t; | |
3121 | |
3122 check_input = 0; | |
3123 if (rfds) | |
3124 { | |
3125 check_input = FD_ISSET (0, rfds); | |
3126 FD_ZERO (rfds); | |
3127 } | |
3128 if (wfds) | |
3129 FD_ZERO (wfds); | |
3130 if (efds) | |
3131 FD_ZERO (efds); | |
3132 | |
3133 if (nfds != 1) | |
3134 abort (); | |
3135 | |
3136 /* If we are looking only for the terminal, with no timeout, | |
3137 just read it and wait -- that's more efficient. */ | |
3138 if (!timeout) | |
3139 { | |
15033
9e174c2b4ba6
(check_timer): Removed; use gettime instead.
Richard M. Stallman <rms@gnu.org>
parents:
14999
diff
changeset
|
3140 while (!detect_input_pending ()) |
9e174c2b4ba6
(check_timer): Removed; use gettime instead.
Richard M. Stallman <rms@gnu.org>
parents:
14999
diff
changeset
|
3141 { |
9e174c2b4ba6
(check_timer): Removed; use gettime instead.
Richard M. Stallman <rms@gnu.org>
parents:
14999
diff
changeset
|
3142 #if __DJGPP__ >= 2 |
9e174c2b4ba6
(check_timer): Removed; use gettime instead.
Richard M. Stallman <rms@gnu.org>
parents:
14999
diff
changeset
|
3143 __dpmi_yield (); |
9e174c2b4ba6
(check_timer): Removed; use gettime instead.
Richard M. Stallman <rms@gnu.org>
parents:
14999
diff
changeset
|
3144 #endif |
9e174c2b4ba6
(check_timer): Removed; use gettime instead.
Richard M. Stallman <rms@gnu.org>
parents:
14999
diff
changeset
|
3145 } |
13179 | 3146 } |
3147 else | |
3148 { | |
14279
085bc709c11d
(sys_select): Use time macros to prevent time values
Karl Heuer <kwzh@gnu.org>
parents:
14262
diff
changeset
|
3149 EMACS_TIME clnow, cllast, cldiff; |
085bc709c11d
(sys_select): Use time macros to prevent time values
Karl Heuer <kwzh@gnu.org>
parents:
14262
diff
changeset
|
3150 |
15033
9e174c2b4ba6
(check_timer): Removed; use gettime instead.
Richard M. Stallman <rms@gnu.org>
parents:
14999
diff
changeset
|
3151 gettime (&t); |
14279
085bc709c11d
(sys_select): Use time macros to prevent time values
Karl Heuer <kwzh@gnu.org>
parents:
14262
diff
changeset
|
3152 EMACS_SET_SECS_USECS (cllast, t.ti_sec, t.ti_hund * 10000L); |
13179 | 3153 |
3154 while (!check_input || !detect_input_pending ()) | |
3155 { | |
15033
9e174c2b4ba6
(check_timer): Removed; use gettime instead.
Richard M. Stallman <rms@gnu.org>
parents:
14999
diff
changeset
|
3156 gettime (&t); |
14279
085bc709c11d
(sys_select): Use time macros to prevent time values
Karl Heuer <kwzh@gnu.org>
parents:
14262
diff
changeset
|
3157 EMACS_SET_SECS_USECS (clnow, t.ti_sec, t.ti_hund * 10000L); |
085bc709c11d
(sys_select): Use time macros to prevent time values
Karl Heuer <kwzh@gnu.org>
parents:
14262
diff
changeset
|
3158 EMACS_SUB_TIME (cldiff, clnow, cllast); |
085bc709c11d
(sys_select): Use time macros to prevent time values
Karl Heuer <kwzh@gnu.org>
parents:
14262
diff
changeset
|
3159 |
085bc709c11d
(sys_select): Use time macros to prevent time values
Karl Heuer <kwzh@gnu.org>
parents:
14262
diff
changeset
|
3160 /* When seconds wrap around, we assume that no more than |
15033
9e174c2b4ba6
(check_timer): Removed; use gettime instead.
Richard M. Stallman <rms@gnu.org>
parents:
14999
diff
changeset
|
3161 1 minute passed since last `gettime'. */ |
14279
085bc709c11d
(sys_select): Use time macros to prevent time values
Karl Heuer <kwzh@gnu.org>
parents:
14262
diff
changeset
|
3162 if (EMACS_TIME_NEG_P (cldiff)) |
085bc709c11d
(sys_select): Use time macros to prevent time values
Karl Heuer <kwzh@gnu.org>
parents:
14262
diff
changeset
|
3163 EMACS_SET_SECS (cldiff, EMACS_SECS (cldiff) + 60); |
085bc709c11d
(sys_select): Use time macros to prevent time values
Karl Heuer <kwzh@gnu.org>
parents:
14262
diff
changeset
|
3164 EMACS_SUB_TIME (*timeout, *timeout, cldiff); |
085bc709c11d
(sys_select): Use time macros to prevent time values
Karl Heuer <kwzh@gnu.org>
parents:
14262
diff
changeset
|
3165 |
085bc709c11d
(sys_select): Use time macros to prevent time values
Karl Heuer <kwzh@gnu.org>
parents:
14262
diff
changeset
|
3166 /* Stop when timeout value crosses zero. */ |
085bc709c11d
(sys_select): Use time macros to prevent time values
Karl Heuer <kwzh@gnu.org>
parents:
14262
diff
changeset
|
3167 if (EMACS_TIME_ZERO_OR_NEG_P (*timeout)) |
13179 | 3168 return 0; |
3169 cllast = clnow; | |
15033
9e174c2b4ba6
(check_timer): Removed; use gettime instead.
Richard M. Stallman <rms@gnu.org>
parents:
14999
diff
changeset
|
3170 #if __DJGPP__ >= 2 |
9e174c2b4ba6
(check_timer): Removed; use gettime instead.
Richard M. Stallman <rms@gnu.org>
parents:
14999
diff
changeset
|
3171 __dpmi_yield (); |
9e174c2b4ba6
(check_timer): Removed; use gettime instead.
Richard M. Stallman <rms@gnu.org>
parents:
14999
diff
changeset
|
3172 #endif |
13179 | 3173 } |
3174 } | |
3175 | |
3176 FD_SET (0, rfds); | |
3177 return 1; | |
3178 } | |
3179 #endif | |
3180 | |
3181 /* | |
14036 | 3182 * Define overlaid functions: |
13179 | 3183 * |
3184 * chdir -> sys_chdir | |
3185 * tzset -> init_gettimeofday | |
3186 * abort -> dos_abort | |
3187 */ | |
3188 | |
3189 #ifdef chdir | |
3190 #undef chdir | |
3191 extern int chdir (); | |
3192 | |
3193 int | |
3194 sys_chdir (path) | |
3195 const char* path; | |
3196 { | |
3197 int len = strlen (path); | |
3198 char *tmp = (char *)path; | |
3199 | |
3200 if (*tmp && tmp[1] == ':') | |
3201 { | |
3202 if (getdisk () != tolower (tmp[0]) - 'a') | |
3203 setdisk (tolower (tmp[0]) - 'a'); | |
3204 tmp += 2; /* strip drive: KFS 1995-07-06 */ | |
3205 len -= 2; | |
3206 } | |
3207 | |
3208 if (len > 1 && (tmp[len - 1] == '/')) | |
3209 { | |
3210 char *tmp1 = (char *) alloca (len + 1); | |
3211 strcpy (tmp1, tmp); | |
3212 tmp1[len - 1] = 0; | |
3213 tmp = tmp1; | |
3214 } | |
3215 return chdir (tmp); | |
3216 } | |
3217 #endif | |
3218 | |
3219 #ifdef tzset | |
3220 #undef tzset | |
3221 extern void tzset (void); | |
3222 | |
3223 void | |
3224 init_gettimeofday () | |
3225 { | |
3226 time_t ltm, gtm; | |
3227 struct tm *lstm; | |
3228 | |
3229 tzset (); | |
3230 ltm = gtm = time (NULL); | |
3231 ltm = mktime (lstm = localtime (<m)); | |
3232 gtm = mktime (gmtime (>m)); | |
3233 time_rec.tm_hour = 99; /* force gettimeofday to get date */ | |
3234 time_rec.tm_isdst = lstm->tm_isdst; | |
3235 dos_timezone_offset = time_rec.tm_gmtoff = (int)(gtm - ltm) / 60; | |
3236 } | |
3237 #endif | |
3238 | |
3239 #ifdef abort | |
3240 #undef abort | |
3241 void | |
3242 dos_abort (file, line) | |
3243 char *file; | |
3244 int line; | |
3245 { | |
3246 char buffer1[200], buffer2[400]; | |
3247 int i, j; | |
3248 | |
3249 sprintf (buffer1, "<EMACS FATAL ERROR IN %s LINE %d>", file, line); | |
3250 for (i = j = 0; buffer1[i]; i++) { | |
3251 buffer2[j++] = buffer1[i]; | |
3252 buffer2[j++] = 0x70; | |
3253 } | |
3254 dosmemput (buffer2, j, (int)ScreenPrimary); | |
3255 ScreenSetCursor (2, 0); | |
3256 abort (); | |
3257 } | |
13744
120c884de8a2
(check_timer): get rid of the DOS-specific menubar clock
Karl Heuer <kwzh@gnu.org>
parents:
13718
diff
changeset
|
3258 #else |
120c884de8a2
(check_timer): get rid of the DOS-specific menubar clock
Karl Heuer <kwzh@gnu.org>
parents:
13718
diff
changeset
|
3259 void |
120c884de8a2
(check_timer): get rid of the DOS-specific menubar clock
Karl Heuer <kwzh@gnu.org>
parents:
13718
diff
changeset
|
3260 abort () |
120c884de8a2
(check_timer): get rid of the DOS-specific menubar clock
Karl Heuer <kwzh@gnu.org>
parents:
13718
diff
changeset
|
3261 { |
120c884de8a2
(check_timer): get rid of the DOS-specific menubar clock
Karl Heuer <kwzh@gnu.org>
parents:
13718
diff
changeset
|
3262 dos_ttcooked (); |
120c884de8a2
(check_timer): get rid of the DOS-specific menubar clock
Karl Heuer <kwzh@gnu.org>
parents:
13718
diff
changeset
|
3263 ScreenSetCursor (10, 0); |
120c884de8a2
(check_timer): get rid of the DOS-specific menubar clock
Karl Heuer <kwzh@gnu.org>
parents:
13718
diff
changeset
|
3264 cputs ("\r\n\nEmacs aborted!\r\n"); |
14999 | 3265 #if __DJGPP__ > 1 |
3266 /* Generate traceback, so we could tell whodunit. */ | |
3267 signal (SIGINT, SIG_DFL); | |
3268 __asm__ __volatile__ ("movb $0x1b,%al;call ___djgpp_hw_exception"); | |
3269 #endif | |
13744
120c884de8a2
(check_timer): get rid of the DOS-specific menubar clock
Karl Heuer <kwzh@gnu.org>
parents:
13718
diff
changeset
|
3270 exit (2); |
120c884de8a2
(check_timer): get rid of the DOS-specific menubar clock
Karl Heuer <kwzh@gnu.org>
parents:
13718
diff
changeset
|
3271 } |
13179 | 3272 #endif |
3273 | |
13305
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
3274 syms_of_msdos () |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
3275 { |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
3276 recent_doskeys = Fmake_vector (make_number (NUM_RECENT_DOSKEYS), Qnil); |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
3277 staticpro (&recent_doskeys); |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
3278 |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
3279 defsubr (&Srecent_doskeys); |
15186
242bddc25e5a
(syms_of_msdos): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
15174
diff
changeset
|
3280 defsubr (&Smsdos_long_file_names); |
15219
a800d1a0f07e
(msdos_downcase_filename): New function to convert case in filenames.
Richard M. Stallman <rms@gnu.org>
parents:
15186
diff
changeset
|
3281 defsubr (&Smsdos_downcase_filename); |
13305
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
3282 } |
63a43c4b29b2
(IT_ring_bell): Use intdos, not write.
Richard M. Stallman <rms@gnu.org>
parents:
13274
diff
changeset
|
3283 |
5503 | 3284 #endif /* MSDOS */ |