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