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