annotate src/msdos.c @ 15089:3305f0390624

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