(cvs-menu): Don't move point. Use popup-menu.
[emacs.git] / src / msdos.c
blob4a8026b4c790744549511d3802bae72034e52b72
1 /* MS-DOS specific C utilities. -*- coding: raw-text -*-
2 Copyright (C) 1993, 94, 95, 96, 97, 1999 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* Contributed by Morten Welinder */
22 /* New display, keyboard, and mouse control by Kim F. Storm */
24 /* Note: some of the stuff here was taken from end of sysdep.c in demacs. */
26 #include <config.h>
28 #ifdef MSDOS
29 #include "lisp.h"
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <time.h>
33 #include <sys/param.h>
34 #include <sys/time.h>
35 #include <dos.h>
36 #include <errno.h>
37 #include <string.h> /* for bzero and string functions */
38 #include <sys/stat.h> /* for _fixpath */
39 #include <unistd.h> /* for chdir, dup, dup2, etc. */
40 #if __DJGPP__ >= 2
41 #include <fcntl.h>
42 #include <io.h> /* for setmode */
43 #include <dpmi.h> /* for __dpmi_xxx stuff */
44 #include <sys/farptr.h> /* for _farsetsel, _farnspokeb */
45 #include <libc/dosio.h> /* for _USE_LFN */
46 #include <conio.h> /* for cputs */
47 #endif
49 #include "msdos.h"
50 #include "systime.h"
51 #include "termhooks.h"
52 #include "termchar.h"
53 #include "dispextern.h"
54 #include "dosfns.h"
55 #include "termopts.h"
56 #include "charset.h"
57 #include "coding.h"
58 #include "disptab.h"
59 #include "frame.h"
60 #include "window.h"
61 #include "buffer.h"
62 #include "commands.h"
63 #include "blockinput.h"
64 #include "keyboard.h"
65 #include <go32.h>
66 #include <pc.h>
67 #include <ctype.h>
68 /* #include <process.h> */
69 /* Damn that local process.h! Instead we can define P_WAIT ourselves. */
70 #define P_WAIT 1
72 #ifndef _USE_LFN
73 #define _USE_LFN 0
74 #endif
76 #ifndef _dos_ds
77 #define _dos_ds _go32_info_block.selector_for_linear_memory
78 #endif
80 #if __DJGPP__ > 1
82 #include <signal.h>
83 #include "syssignal.h"
85 #ifndef SYSTEM_MALLOC
87 #ifdef GNU_MALLOC
89 /* If other `malloc' than ours is used, force our `sbrk' behave like
90 Unix programs expect (resize memory blocks to keep them contiguous).
91 If `sbrk' from `ralloc.c' is NOT used, also zero-out sbrk'ed memory,
92 because that's what `gmalloc' expects to get. */
93 #include <crt0.h>
95 #ifdef REL_ALLOC
96 int _crt0_startup_flags = _CRT0_FLAG_UNIX_SBRK;
97 #else /* not REL_ALLOC */
98 int _crt0_startup_flags = (_CRT0_FLAG_UNIX_SBRK | _CRT0_FLAG_FILL_SBRK_MEMORY);
99 #endif /* not REL_ALLOC */
100 #endif /* GNU_MALLOC */
102 #endif /* not SYSTEM_MALLOC */
103 #endif /* __DJGPP__ > 1 */
105 static unsigned long
106 event_timestamp ()
108 struct time t;
109 unsigned long s;
111 gettime (&t);
112 s = t.ti_min;
113 s *= 60;
114 s += t.ti_sec;
115 s *= 1000;
116 s += t.ti_hund * 10;
118 return s;
122 /* ------------------------ Mouse control ---------------------------
124 * Coordinates are in screen positions and zero based.
125 * Mouse buttons are numbered from left to right and also zero based.
128 /* This used to be in termhooks.h, but mainstream Emacs code no longer
129 uses it, and it was removed... */
130 #define NUM_MOUSE_BUTTONS (5)
132 int have_mouse; /* 0: no, 1: enabled, -1: disabled */
133 static int mouse_visible;
135 static int mouse_last_x;
136 static int mouse_last_y;
138 static int mouse_button_translate[NUM_MOUSE_BUTTONS];
139 static int mouse_button_count;
141 void
142 mouse_on ()
144 union REGS regs;
146 if (have_mouse > 0 && !mouse_visible)
148 if (termscript)
149 fprintf (termscript, "<M_ON>");
150 regs.x.ax = 0x0001;
151 int86 (0x33, &regs, &regs);
152 mouse_visible = 1;
156 void
157 mouse_off ()
159 union REGS regs;
161 if (have_mouse > 0 && mouse_visible)
163 if (termscript)
164 fprintf (termscript, "<M_OFF>");
165 regs.x.ax = 0x0002;
166 int86 (0x33, &regs, &regs);
167 mouse_visible = 0;
171 static void
172 mouse_setup_buttons (int n_buttons)
174 if (n_buttons == 3)
176 mouse_button_count = 3;
177 mouse_button_translate[0] = 0; /* Left */
178 mouse_button_translate[1] = 2; /* Middle */
179 mouse_button_translate[2] = 1; /* Right */
181 else /* two, what else? */
183 mouse_button_count = 2;
184 mouse_button_translate[0] = 0;
185 mouse_button_translate[1] = 1;
189 DEFUN ("msdos-set-mouse-buttons", Fmsdos_set_mouse_buttons, Smsdos_set_mouse_buttons,
190 1, 1, "NSet number of mouse buttons to: ",
191 "Set the number of mouse buttons to use by Emacs.\n\
192 This is useful with mice that report the number of buttons inconsistently,\n\
193 e.g., if the number of buttons is reported as 3, but Emacs only sees 2 of\n\
194 them. This happens with wheeled mice on Windows 9X, for example.")
195 (nbuttons)
196 Lisp_Object nbuttons;
198 CHECK_NUMBER (nbuttons, 0);
199 mouse_setup_buttons (XINT (nbuttons));
200 return Qnil;
203 static void
204 mouse_get_xy (int *x, int *y)
206 union REGS regs;
208 regs.x.ax = 0x0003;
209 int86 (0x33, &regs, &regs);
210 *x = regs.x.cx / 8;
211 *y = regs.x.dx / 8;
214 void
215 mouse_moveto (x, y)
216 int x, y;
218 union REGS regs;
220 if (termscript)
221 fprintf (termscript, "<M_XY=%dx%d>", x, y);
222 regs.x.ax = 0x0004;
223 mouse_last_x = regs.x.cx = x * 8;
224 mouse_last_y = regs.x.dx = y * 8;
225 int86 (0x33, &regs, &regs);
228 static int
229 mouse_pressed (b, xp, yp)
230 int b, *xp, *yp;
232 union REGS regs;
234 if (b >= mouse_button_count)
235 return 0;
236 regs.x.ax = 0x0005;
237 regs.x.bx = mouse_button_translate[b];
238 int86 (0x33, &regs, &regs);
239 if (regs.x.bx)
240 *xp = regs.x.cx / 8, *yp = regs.x.dx / 8;
241 return (regs.x.bx != 0);
244 static int
245 mouse_released (b, xp, yp)
246 int b, *xp, *yp;
248 union REGS regs;
250 if (b >= mouse_button_count)
251 return 0;
252 regs.x.ax = 0x0006;
253 regs.x.bx = mouse_button_translate[b];
254 int86 (0x33, &regs, &regs);
255 if (regs.x.bx)
256 *xp = regs.x.cx / 8, *yp = regs.x.dx / 8;
257 return (regs.x.bx != 0);
260 static int
261 mouse_button_depressed (b, xp, yp)
262 int b, *xp, *yp;
264 union REGS regs;
266 if (b >= mouse_button_count)
267 return 0;
268 regs.x.ax = 0x0003;
269 int86 (0x33, &regs, &regs);
270 if ((regs.x.bx & (1 << mouse_button_translate[b])) != 0)
272 *xp = regs.x.cx / 8;
273 *yp = regs.x.dx / 8;
274 return 1;
276 return 0;
279 void
280 mouse_get_pos (f, insist, bar_window, part, x, y, time)
281 FRAME_PTR *f;
282 int insist;
283 Lisp_Object *bar_window, *x, *y;
284 enum scroll_bar_part *part;
285 unsigned long *time;
287 int ix, iy;
288 Lisp_Object frame, tail;
290 /* Clear the mouse-moved flag for every frame on this display. */
291 FOR_EACH_FRAME (tail, frame)
292 XFRAME (frame)->mouse_moved = 0;
294 *f = SELECTED_FRAME();
295 *bar_window = Qnil;
296 mouse_get_xy (&ix, &iy);
297 *time = event_timestamp ();
298 *x = make_number (mouse_last_x = ix);
299 *y = make_number (mouse_last_y = iy);
302 static void
303 mouse_check_moved ()
305 int x, y;
307 mouse_get_xy (&x, &y);
308 SELECTED_FRAME()->mouse_moved |= (x != mouse_last_x || y != mouse_last_y);
309 mouse_last_x = x;
310 mouse_last_y = y;
313 /* Force the mouse driver to ``forget'' about any button clicks until
314 now. */
315 static void
316 mouse_clear_clicks (void)
318 int b;
320 for (b = 0; b < mouse_button_count; b++)
322 int dummy_x, dummy_y;
324 (void) mouse_pressed (b, &dummy_x, &dummy_y);
325 (void) mouse_released (b, &dummy_x, &dummy_y);
329 void
330 mouse_init ()
332 union REGS regs;
334 if (termscript)
335 fprintf (termscript, "<M_INIT>");
337 regs.x.ax = 0x0021;
338 int86 (0x33, &regs, &regs);
340 /* Reset the mouse last press/release info. It seems that Windows
341 doesn't do that automatically when function 21h is called, which
342 causes Emacs to ``remember'' the click that switched focus to the
343 window just before Emacs was started from that window. */
344 mouse_clear_clicks ();
346 regs.x.ax = 0x0007;
347 regs.x.cx = 0;
348 regs.x.dx = 8 * (ScreenCols () - 1);
349 int86 (0x33, &regs, &regs);
351 regs.x.ax = 0x0008;
352 regs.x.cx = 0;
353 regs.x.dx = 8 * (ScreenRows () - 1);
354 int86 (0x33, &regs, &regs);
356 mouse_moveto (0, 0);
357 mouse_visible = 0;
360 /* ------------------------- Screen control ----------------------
364 static int internal_terminal = 0;
366 #ifndef HAVE_X_WINDOWS
367 extern unsigned char ScreenAttrib;
368 static int screen_face;
369 static int highlight;
371 static int screen_size_X;
372 static int screen_size_Y;
373 static int screen_size;
375 static int current_pos_X;
376 static int current_pos_Y;
377 static int new_pos_X;
378 static int new_pos_Y;
380 static void *startup_screen_buffer;
381 static int startup_screen_size_X;
382 static int startup_screen_size_Y;
383 static int startup_pos_X;
384 static int startup_pos_Y;
385 static unsigned char startup_screen_attrib;
387 static clock_t startup_time;
389 static int term_setup_done;
391 static unsigned short outside_cursor;
393 /* Similar to the_only_frame. */
394 struct x_output the_only_x_display;
396 /* Support for DOS/V (allows Japanese characters to be displayed on
397 standard, non-Japanese, ATs). Only supported for DJGPP v2 and later. */
399 /* Holds the address of the text-mode screen buffer. */
400 static unsigned long screen_old_address = 0;
401 /* Segment and offset of the virtual screen. If 0, DOS/V is NOT loaded. */
402 static unsigned short screen_virtual_segment = 0;
403 static unsigned short screen_virtual_offset = 0;
404 /* A flag to control how to display unibyte 8-bit characters. */
405 extern int unibyte_display_via_language_environment;
407 Lisp_Object Qbar;
409 #if __DJGPP__ > 1
410 /* Update the screen from a part of relocated DOS/V screen buffer which
411 begins at OFFSET and includes COUNT characters. */
412 static void
413 dosv_refresh_virtual_screen (int offset, int count)
415 __dpmi_regs regs;
417 if (offset < 0 || count < 0) /* paranoia; invalid values crash DOS/V */
418 return;
420 regs.h.ah = 0xff; /* update relocated screen */
421 regs.x.es = screen_virtual_segment;
422 regs.x.di = screen_virtual_offset + offset;
423 regs.x.cx = count;
424 __dpmi_int (0x10, &regs);
426 #endif
428 static void
429 dos_direct_output (y, x, buf, len)
430 int y;
431 int x;
432 char *buf;
433 int len;
435 int t0 = 2 * (x + y * screen_size_X);
436 int t = t0 + (int) ScreenPrimary;
437 int l0 = len;
439 #if (__DJGPP__ < 2)
440 while (--len >= 0) {
441 dosmemput (buf++, 1, t);
442 t += 2;
444 #else
445 /* This is faster. */
446 for (_farsetsel (_dos_ds); --len >= 0; t += 2, buf++)
447 _farnspokeb (t, *buf);
449 if (screen_virtual_segment)
450 dosv_refresh_virtual_screen (t0, l0);
451 #endif
453 #endif
455 /* Flash the screen as a substitute for BEEPs. */
457 #if (__DJGPP__ < 2)
458 static void
459 do_visible_bell (xorattr)
460 unsigned char xorattr;
462 asm volatile
463 (" movb $1,%%dl
464 visible_bell_0:
465 movl _ScreenPrimary,%%eax
466 call dosmemsetup
467 movl %%eax,%%ebx
468 movl %1,%%ecx
469 movb %0,%%al
470 incl %%ebx
471 visible_bell_1:
472 xorb %%al,%%gs:(%%ebx)
473 addl $2,%%ebx
474 decl %%ecx
475 jne visible_bell_1
476 decb %%dl
477 jne visible_bell_3
478 visible_bell_2:
479 movzwl %%ax,%%eax
480 movzwl %%ax,%%eax
481 movzwl %%ax,%%eax
482 movzwl %%ax,%%eax
483 decw %%cx
484 jne visible_bell_2
485 jmp visible_bell_0
486 visible_bell_3:"
487 : /* no output */
488 : "m" (xorattr), "g" (screen_size)
489 : "%eax", "%ebx", /* "%gs",*/ "%ecx", "%edx");
492 static void
493 ScreenVisualBell (void)
495 /* This creates an xor-mask that will swap the default fore- and
496 background colors. */
497 do_visible_bell (((the_only_x_display.foreground_pixel
498 ^ the_only_x_display.background_pixel)
499 * 0x11) & 0x7f);
501 #endif
503 #ifndef HAVE_X_WINDOWS
505 static int blink_bit = -1; /* the state of the blink bit at startup */
507 /* Enable bright background colors. */
508 static void
509 bright_bg (void)
511 union REGS regs;
513 /* Remember the original state of the blink/bright-background bit.
514 It is stored at 0040:0065h in the BIOS data area. */
515 if (blink_bit == -1)
516 blink_bit = (_farpeekb (_dos_ds, 0x465) & 0x20) == 0x20;
518 regs.h.bl = 0;
519 regs.x.ax = 0x1003;
520 int86 (0x10, &regs, &regs);
523 /* Disable bright background colors (and enable blinking) if we found
524 the video system in that state at startup. */
525 static void
526 maybe_enable_blinking (void)
528 if (blink_bit == 1)
530 union REGS regs;
532 regs.h.bl = 1;
533 regs.x.ax = 0x1003;
534 int86 (0x10, &regs, &regs);
538 /* Return non-zero if the system has a VGA adapter. */
539 static int
540 vga_installed (void)
542 union REGS regs;
544 regs.x.ax = 0x1a00;
545 int86 (0x10, &regs, &regs);
546 if (regs.h.al == 0x1a && regs.h.bl > 5 && regs.h.bl < 13)
547 return 1;
548 return 0;
551 /* Set the screen dimensions so that it can show no less than
552 ROWS x COLS frame. */
554 void
555 dos_set_window_size (rows, cols)
556 int *rows, *cols;
558 char video_name[30];
559 Lisp_Object video_mode;
560 int video_mode_value;
561 int have_vga = 0;
562 union REGS regs;
563 int current_rows = ScreenRows (), current_cols = ScreenCols ();
565 if (*rows == current_rows && *cols == current_cols)
566 return;
568 mouse_off ();
569 have_vga = vga_installed ();
571 /* If the user specified a special video mode for these dimensions,
572 use that mode. */
573 sprintf (video_name, "screen-dimensions-%dx%d", *rows, *cols);
574 video_mode = XSYMBOL (Fintern_soft (build_string (video_name),
575 Qnil))-> value;
577 if (INTEGERP (video_mode)
578 && (video_mode_value = XINT (video_mode)) > 0)
580 regs.x.ax = video_mode_value;
581 int86 (0x10, &regs, &regs);
583 if (have_mouse)
585 /* Must hardware-reset the mouse, or else it won't update
586 its notion of screen dimensions for some non-standard
587 video modes. This is *painfully* slow... */
588 regs.x.ax = 0;
589 int86 (0x33, &regs, &regs);
593 /* Find one of the dimensions supported by standard EGA/VGA
594 which gives us at least the required dimensions. */
596 #if __DJGPP__ > 1
598 else
600 static struct {
601 int rows;
602 int need_vga;
603 } std_dimension[] = {
604 {25, 0},
605 {28, 1},
606 {35, 0},
607 {40, 1},
608 {43, 0},
609 {50, 1}
611 int i = 0;
613 while (i < sizeof (std_dimension) / sizeof (std_dimension[0]))
615 if (std_dimension[i].need_vga <= have_vga
616 && std_dimension[i].rows >= *rows)
618 if (std_dimension[i].rows != current_rows
619 || *cols != current_cols)
620 _set_screen_lines (std_dimension[i].rows);
621 break;
623 i++;
627 #else /* not __DJGPP__ > 1 */
629 else if (*rows <= 25)
631 if (current_rows != 25 || current_cols != 80)
633 regs.x.ax = 3;
634 int86 (0x10, &regs, &regs);
635 regs.x.ax = 0x1101;
636 regs.h.bl = 0;
637 int86 (0x10, &regs, &regs);
638 regs.x.ax = 0x1200;
639 regs.h.bl = 32;
640 int86 (0x10, &regs, &regs);
641 regs.x.ax = 3;
642 int86 (0x10, &regs, &regs);
645 else if (*rows <= 50)
646 if (have_vga && (current_rows != 50 || current_cols != 80)
647 || *rows <= 43 && (current_rows != 43 || current_cols != 80))
649 regs.x.ax = 3;
650 int86 (0x10, &regs, &regs);
651 regs.x.ax = 0x1112;
652 regs.h.bl = 0;
653 int86 (0x10, &regs, &regs);
654 regs.x.ax = 0x1200;
655 regs.h.bl = 32;
656 int86 (0x10, &regs, &regs);
657 regs.x.ax = 0x0100;
658 regs.x.cx = 7;
659 int86 (0x10, &regs, &regs);
661 #endif /* not __DJGPP__ > 1 */
663 if (have_mouse)
665 mouse_init ();
666 mouse_on ();
669 /* Tell the caller what dimensions have been REALLY set. */
670 *rows = ScreenRows ();
671 *cols = ScreenCols ();
673 #if __DJGPP__ > 1
674 /* If the dimensions changed, the mouse highlight info is invalid. */
675 if (current_rows != *rows || current_cols != *cols)
677 struct frame *f = SELECTED_FRAME();
678 struct display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
679 Lisp_Object window = dpyinfo->mouse_face_window;
681 if (! NILP (window) && XFRAME (XWINDOW (window)->frame) == f)
683 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
684 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
685 dpyinfo->mouse_face_window = Qnil;
688 #endif
690 /* Enable bright background colors. */
691 bright_bg ();
693 /* FIXME: I'm not sure the above will run at all on DOS/V. But let's
694 be defensive anyway. */
695 if (screen_virtual_segment)
696 dosv_refresh_virtual_screen (0, *cols * *rows);
699 /* If we write a character in the position where the mouse is,
700 the mouse cursor may need to be refreshed. */
702 static void
703 mouse_off_maybe ()
705 int x, y;
707 if (!mouse_visible)
708 return;
710 mouse_get_xy (&x, &y);
711 if (y != new_pos_Y || x < new_pos_X)
712 return;
714 mouse_off ();
717 #define DEFAULT_CURSOR_START (-1)
718 #define DEFAULT_CURSOR_WIDTH (-1)
719 #define BOX_CURSOR_WIDTH (-32)
721 /* Set cursor to begin at scan line START_LINE in the character cell
722 and extend for WIDTH scan lines. Scan lines are counted from top
723 of the character cell, starting from zero. */
724 static void
725 msdos_set_cursor_shape (struct frame *f, int start_line, int width)
727 #if __DJGPP__ > 1
728 unsigned desired_cursor;
729 __dpmi_regs regs;
730 int max_line, top_line, bot_line;
732 /* Avoid the costly BIOS call if F isn't the currently selected
733 frame. Allow for NULL as unconditionally meaning the selected
734 frame. */
735 if (f && f != SELECTED_FRAME())
736 return;
738 /* The character cell size in scan lines is stored at 40:85 in the
739 BIOS data area. */
740 max_line = _farpeekw (_dos_ds, 0x485) - 1;
741 switch (max_line)
743 default: /* this relies on CGA cursor emulation being ON! */
744 case 7:
745 bot_line = 7;
746 break;
747 case 9:
748 bot_line = 9;
749 break;
750 case 13:
751 bot_line = 12;
752 break;
753 case 15:
754 bot_line = 14;
755 break;
758 if (width < 0)
760 if (width == BOX_CURSOR_WIDTH)
762 top_line = 0;
763 bot_line = max_line;
765 else if (start_line != DEFAULT_CURSOR_START)
767 top_line = start_line;
768 bot_line = top_line - width - 1;
770 else if (width != DEFAULT_CURSOR_WIDTH)
772 top_line = 0;
773 bot_line = -1 - width;
775 else
776 top_line = bot_line + 1;
778 else if (width == 0)
780 /* [31, 0] seems to DTRT for all screen sizes. */
781 top_line = 31;
782 bot_line = 0;
784 else /* WIDTH is positive */
786 if (start_line != DEFAULT_CURSOR_START)
787 bot_line = start_line;
788 top_line = bot_line - (width - 1);
791 /* If the current cursor shape is already what they want, we are
792 history here. */
793 desired_cursor = ((top_line & 0x1f) << 8) | (bot_line & 0x1f);
794 if (desired_cursor == _farpeekw (_dos_ds, 0x460))
795 return;
797 regs.h.ah = 1;
798 regs.x.cx = desired_cursor;
799 __dpmi_int (0x10, &regs);
800 #endif /* __DJGPP__ > 1 */
803 static void
804 IT_set_cursor_type (struct frame *f, Lisp_Object cursor_type)
806 if (EQ (cursor_type, Qbar))
808 /* Just BAR means the normal EGA/VGA cursor. */
809 msdos_set_cursor_shape (f, DEFAULT_CURSOR_START, DEFAULT_CURSOR_WIDTH);
811 else if (CONSP (cursor_type) && EQ (XCAR (cursor_type), Qbar))
813 Lisp_Object bar_parms = XCDR (cursor_type);
814 int width;
816 if (INTEGERP (bar_parms))
818 /* Feature: negative WIDTH means cursor at the top
819 of the character cell, zero means invisible cursor. */
820 width = XINT (bar_parms);
821 msdos_set_cursor_shape (f, width >= 0 ? DEFAULT_CURSOR_START : 0,
822 width);
824 else if (CONSP (bar_parms)
825 && INTEGERP (XCAR (bar_parms))
826 && INTEGERP (XCDR (bar_parms)))
828 int start_line = XINT (XCDR (bar_parms));
830 width = XINT (XCAR (bar_parms));
831 msdos_set_cursor_shape (f, start_line, width);
834 else
835 /* Treat anything unknown as "box cursor". This includes nil, so
836 that a frame which doesn't specify a cursor type gets a box,
837 which is the default in Emacs. */
838 msdos_set_cursor_shape (f, 0, BOX_CURSOR_WIDTH);
841 static void
842 IT_ring_bell (void)
844 if (visible_bell)
846 mouse_off ();
847 ScreenVisualBell ();
849 else
851 union REGS inregs, outregs;
852 inregs.h.ah = 2;
853 inregs.h.dl = 7;
854 intdos (&inregs, &outregs);
858 /* Given a face id FACE, extract the face parameters to be used for
859 display until the face changes. The face parameters (actually, its
860 color) are used to construct the video attribute byte for each
861 glyph during the construction of the buffer that is then blitted to
862 the video RAM. */
863 static void
864 IT_set_face (int face)
866 struct frame *sf = SELECTED_FRAME();
867 struct face *fp = FACE_FROM_ID (sf, face);
868 unsigned long fg, bg;
870 if (!fp)
872 fp = FACE_FROM_ID (sf, DEFAULT_FACE_ID);
873 /* The default face for the frame should always be realized and
874 cached. */
875 if (!fp)
876 abort ();
878 screen_face = face;
879 fg = fp->foreground;
880 bg = fp->background;
882 /* Don't use invalid colors. In particular, FACE_TTY_DEFAULT_*
883 colors mean use the colors of the default face, except that if
884 highlight is on, invert the foreground and the background. Note
885 that we assume all 16 colors to be available for the background,
886 since Emacs switches on this mode (and loses the blinking
887 attribute) at startup. */
888 if (fg == FACE_TTY_DEFAULT_COLOR || fg == FACE_TTY_DEFAULT_FG_COLOR)
889 fg = FRAME_FOREGROUND_PIXEL (sf);
890 else if (fg == FACE_TTY_DEFAULT_BG_COLOR)
891 fg = FRAME_BACKGROUND_PIXEL (sf);
892 if (bg == FACE_TTY_DEFAULT_COLOR || bg == FACE_TTY_DEFAULT_BG_COLOR)
893 bg = FRAME_BACKGROUND_PIXEL (sf);
894 else if (bg == FACE_TTY_DEFAULT_FG_COLOR)
895 bg = FRAME_FOREGROUND_PIXEL (sf);
897 /* Make sure highlighted lines really stand out, come what may. */
898 if ((highlight || fp->tty_reverse_p)
899 && (fg == FRAME_FOREGROUND_PIXEL (sf)
900 && bg == FRAME_BACKGROUND_PIXEL (sf)))
902 unsigned long tem = fg;
904 fg = bg;
905 bg = tem;
907 if (termscript)
908 fprintf (termscript, "<FACE %d%s: %d/%d[FG:%d/BG:%d]>", face,
909 highlight ? "H" : "", fp->foreground, fp->background, fg, bg);
910 if (fg >= 0 && fg < 16)
912 ScreenAttrib &= 0xf0;
913 ScreenAttrib |= fg;
915 if (bg >= 0 && bg < 16)
917 ScreenAttrib &= 0x0f;
918 ScreenAttrib |= ((bg & 0x0f) << 4);
922 Lisp_Object Vdos_unsupported_char_glyph;
924 static void
925 IT_write_glyphs (struct glyph *str, int str_len)
927 unsigned char *screen_buf, *screen_bp, *screen_buf_end, *bp;
928 int unsupported_face = FAST_GLYPH_FACE (Vdos_unsupported_char_glyph);
929 unsigned unsupported_char= FAST_GLYPH_CHAR (Vdos_unsupported_char_glyph);
930 int offset = 2 * (new_pos_X + screen_size_X * new_pos_Y);
931 register int sl = str_len;
932 register int tlen = GLYPH_TABLE_LENGTH;
933 register Lisp_Object *tbase = GLYPH_TABLE_BASE;
935 /* If terminal_coding does any conversion, use it, otherwise use
936 safe_terminal_coding. We can't use CODING_REQUIRE_ENCODING here
937 because it always returns 1 if terminal_coding.src_multibyte is 1. */
938 struct coding_system *coding =
939 (terminal_coding.common_flags & CODING_REQUIRE_ENCODING_MASK
940 ? &terminal_coding
941 : &safe_terminal_coding);
942 struct frame *sf;
944 /* Do we need to consider conversion of unibyte characters to
945 multibyte? */
946 int convert_unibyte_characters
947 = (NILP (current_buffer->enable_multibyte_characters)
948 && unibyte_display_via_language_environment);
950 if (str_len <= 0) return;
952 screen_buf = screen_bp = alloca (str_len * 2);
953 screen_buf_end = screen_buf + str_len * 2;
954 sf = SELECTED_FRAME();
956 /* Since faces get cached and uncached behind our back, we can't
957 rely on their indices in the cache being consistent across
958 invocations. So always reset the screen face to the default
959 face of the frame, before writing glyphs, and let the glyphs
960 set the right face if it's different from the default. */
961 IT_set_face (DEFAULT_FACE_ID);
963 /* The mode bit CODING_MODE_LAST_BLOCK should be set to 1 only at
964 the tail. */
965 terminal_coding.mode &= ~CODING_MODE_LAST_BLOCK;
966 while (sl)
968 int cf, chlen, enclen;
969 unsigned char workbuf[MAX_MULTIBYTE_LENGTH], *buf;
970 unsigned ch;
972 /* Glyphs with GLYPH_MASK_PADDING bit set are actually there
973 only for the redisplay code to know how many columns does
974 this character occupy on the screen. Skip padding glyphs. */
975 if (CHAR_GLYPH_PADDING_P (*str))
977 str++;
978 sl--;
980 else
982 register GLYPH g = GLYPH_FROM_CHAR_GLYPH (*str);
983 int glyph_not_in_table = 0;
985 if (g < 0 || g >= tlen)
987 /* This glyph doesn't have an entry in Vglyph_table. */
988 ch = str->u.ch;
989 glyph_not_in_table = 1;
991 else
993 /* This glyph has an entry in Vglyph_table, so process
994 any aliases before testing for simpleness. */
995 GLYPH_FOLLOW_ALIASES (tbase, tlen, g);
996 ch = FAST_GLYPH_CHAR (g);
999 /* Convert the character code to multibyte, if they
1000 requested display via language environment. We only want
1001 to convert unibyte characters to multibyte in unibyte
1002 buffers! Otherwise, the 8-bit value in CH came from the
1003 display table set up to display foreign characters. */
1004 if (SINGLE_BYTE_CHAR_P (ch) && convert_unibyte_characters
1005 && (ch >= 0240
1006 || (ch >= 0200 && !NILP (Vnonascii_translation_table))))
1007 ch = unibyte_char_to_multibyte (ch);
1009 /* Invalid characters are displayed with a special glyph. */
1010 if (! CHAR_VALID_P (ch, 0))
1012 g = !NILP (Vdos_unsupported_char_glyph)
1013 ? Vdos_unsupported_char_glyph
1014 : MAKE_GLYPH (sf, '\177', GLYPH_FACE (sf, g));
1015 ch = FAST_GLYPH_CHAR (g);
1018 /* If the face of this glyph is different from the current
1019 screen face, update the screen attribute byte. */
1020 cf = FAST_GLYPH_FACE (g);
1021 if (cf != screen_face)
1022 IT_set_face (cf); /* handles invalid faces gracefully */
1024 if (glyph_not_in_table || GLYPH_SIMPLE_P (tbase, tlen, g))
1026 /* We generate the multi-byte form of CH in WORKBUF. */
1027 chlen = CHAR_STRING (ch, workbuf);
1028 buf = workbuf;
1030 else
1032 /* We have a string in Vglyph_table. */
1033 chlen = GLYPH_LENGTH (tbase, g);
1034 buf = GLYPH_STRING (tbase, g);
1037 /* If the character is not multibyte, don't bother converting it. */
1038 if (chlen == 1)
1040 *conversion_buffer = (unsigned char)ch;
1041 chlen = 0;
1042 enclen = 1;
1044 else
1046 coding->src_multibyte = 1;
1047 encode_coding (coding, buf, conversion_buffer, chlen,
1048 conversion_buffer_size);
1049 chlen -= coding->consumed;
1050 enclen = coding->produced;
1052 /* Replace glyph codes that cannot be converted by
1053 terminal_coding with Vdos_unsupported_char_glyph. */
1054 if (*conversion_buffer == '?')
1056 char *cbp = conversion_buffer;
1058 while (cbp < conversion_buffer + enclen && *cbp == '?')
1059 *cbp++ = unsupported_char;
1060 if (unsupported_face != screen_face)
1061 IT_set_face (unsupported_face);
1065 if (enclen + chlen > screen_buf_end - screen_bp)
1067 /* The allocated buffer for screen writes is too small.
1068 Flush it and loop again without incrementing STR, so
1069 that the next loop will begin with the same glyph. */
1070 int nbytes = screen_bp - screen_buf;
1072 mouse_off_maybe ();
1073 dosmemput (screen_buf, nbytes, (int)ScreenPrimary + offset);
1074 if (screen_virtual_segment)
1075 dosv_refresh_virtual_screen (offset, nbytes / 2);
1076 new_pos_X += nbytes / 2;
1077 offset += nbytes;
1079 /* Prepare to reuse the same buffer again. */
1080 screen_bp = screen_buf;
1082 else
1084 /* There's enough place in the allocated buffer to add
1085 the encoding of this glyph. */
1087 /* First, copy the encoded bytes. */
1088 for (bp = conversion_buffer; enclen--; bp++)
1090 *screen_bp++ = (unsigned char)*bp;
1091 *screen_bp++ = ScreenAttrib;
1092 if (termscript)
1093 fputc (*bp, termscript);
1096 /* Now copy the bytes not consumed by the encoding. */
1097 if (chlen > 0)
1099 buf += coding->consumed;
1100 while (chlen--)
1102 if (termscript)
1103 fputc (*buf, termscript);
1104 *screen_bp++ = (unsigned char)*buf++;
1105 *screen_bp++ = ScreenAttrib;
1109 /* Update STR and its remaining length. */
1110 str++;
1111 sl--;
1116 /* Dump whatever is left in the screen buffer. */
1117 mouse_off_maybe ();
1118 dosmemput (screen_buf, screen_bp - screen_buf, (int)ScreenPrimary + offset);
1119 if (screen_virtual_segment)
1120 dosv_refresh_virtual_screen (offset, (screen_bp - screen_buf) / 2);
1121 new_pos_X += (screen_bp - screen_buf) / 2;
1123 /* We may have to output some codes to terminate the writing. */
1124 if (CODING_REQUIRE_FLUSHING (coding))
1126 coding->mode |= CODING_MODE_LAST_BLOCK;
1127 encode_coding (coding, "", conversion_buffer, 0, conversion_buffer_size);
1128 if (coding->produced > 0)
1130 screen_buf = alloca (coding->produced * 2);
1131 for (screen_bp = screen_buf, bp = conversion_buffer;
1132 coding->produced--; bp++)
1134 *screen_bp++ = (unsigned char)*bp;
1135 *screen_bp++ = ScreenAttrib;
1136 if (termscript)
1137 fputc (*bp, termscript);
1139 offset += screen_bp - screen_buf;
1140 mouse_off_maybe ();
1141 dosmemput (screen_buf, screen_bp - screen_buf,
1142 (int)ScreenPrimary + offset);
1143 if (screen_virtual_segment)
1144 dosv_refresh_virtual_screen (offset, (screen_bp - screen_buf) / 2);
1145 new_pos_X += (screen_bp - screen_buf) / 2;
1150 /************************************************************************
1151 Mouse Highlight (and friends..)
1152 ************************************************************************/
1154 /* This is used for debugging, to turn off note_mouse_highlight. */
1155 int disable_mouse_highlight;
1157 /* If non-nil, dos_rawgetc generates an event to display that string.
1158 (The display is done in keyboard.c:read_char, by calling
1159 show_help_echo.) */
1160 static Lisp_Object help_echo;
1161 static Lisp_Object previous_help_echo; /* a helper temporary variable */
1163 /* These record the window, the object and the position where the help
1164 echo string was generated. */
1165 static Lisp_Object help_echo_window;
1166 static Lisp_Object help_echo_object;
1167 static int help_echo_pos;
1169 static int mouse_preempted = 0; /* non-zero when XMenu gobbles mouse events */
1171 /* Set the mouse pointer shape according to whether it is in the
1172 area where the mouse highlight is in effect. */
1173 static void
1174 IT_set_mouse_pointer (int mode)
1176 /* A no-op for now. DOS text-mode mouse pointer doesn't offer too
1177 many possibilities to change its shape, and the available
1178 functionality pretty much sucks (e.g., almost every reasonable
1179 shape will conceal the character it is on). Since the color of
1180 the pointer changes in the highlighted area, it is not clear to
1181 me whether anything else is required, anyway. */
1184 /* Display the active region described by mouse_face_*
1185 in its mouse-face if HL > 0, in its normal face if HL = 0. */
1186 static void
1187 show_mouse_face (struct display_info *dpyinfo, int hl)
1189 struct window *w = XWINDOW (dpyinfo->mouse_face_window);
1190 struct frame *f = XFRAME (WINDOW_FRAME (w));
1191 int i;
1192 struct face *fp;
1195 /* If window is in the process of being destroyed, don't bother
1196 doing anything. */
1197 if (w->current_matrix == NULL)
1198 goto set_cursor_shape;
1200 /* Recognize when we are called to operate on rows that don't exist
1201 anymore. This can happen when a window is split. */
1202 if (dpyinfo->mouse_face_end_row >= w->current_matrix->nrows)
1203 goto set_cursor_shape;
1205 /* There's no sense to do anything if the mouse face isn't realized. */
1206 if (hl > 0)
1208 fp = FACE_FROM_ID (SELECTED_FRAME(), dpyinfo->mouse_face_face_id);
1209 if (!fp)
1210 goto set_cursor_shape;
1213 /* Note that mouse_face_beg_row etc. are window relative. */
1214 for (i = dpyinfo->mouse_face_beg_row;
1215 i <= dpyinfo->mouse_face_end_row;
1216 i++)
1218 int start_hpos, end_hpos;
1219 struct glyph_row *row = MATRIX_ROW (w->current_matrix, i);
1221 /* Don't do anything if row doesn't have valid contents. */
1222 if (!row->enabled_p)
1223 continue;
1225 /* For all but the first row, the highlight starts at column 0. */
1226 if (i == dpyinfo->mouse_face_beg_row)
1227 start_hpos = dpyinfo->mouse_face_beg_col;
1228 else
1229 start_hpos = 0;
1231 if (i == dpyinfo->mouse_face_end_row)
1232 end_hpos = dpyinfo->mouse_face_end_col;
1233 else
1234 end_hpos = row->used[TEXT_AREA];
1236 if (end_hpos <= start_hpos)
1237 continue;
1238 /* Record that some glyphs of this row are displayed in
1239 mouse-face. */
1240 row->mouse_face_p = hl > 0;
1241 if (hl > 0)
1243 int vpos = row->y + WINDOW_DISPLAY_TOP_EDGE_PIXEL_Y (w);
1244 int kstart = start_hpos + WINDOW_DISPLAY_LEFT_EDGE_PIXEL_X (w);
1245 int nglyphs = end_hpos - start_hpos;
1246 int offset = ScreenPrimary + 2*(vpos*screen_size_X + kstart) + 1;
1247 int start_offset = offset;
1249 if (termscript)
1250 fprintf (termscript, "\n<MH+ %d-%d:%d>",
1251 kstart, kstart + nglyphs - 1, vpos);
1253 mouse_off ();
1254 IT_set_face (dpyinfo->mouse_face_face_id);
1255 /* Since we are going to change only the _colors_ of the
1256 displayed text, there's no need to go through all the
1257 pain of generating and encoding the text from the glyphs.
1258 Instead, we simply poke the attribute byte of each
1259 affected position in video memory with the colors
1260 computed by IT_set_face! */
1261 _farsetsel (_dos_ds);
1262 while (nglyphs--)
1264 _farnspokeb (offset, ScreenAttrib);
1265 offset += 2;
1267 if (screen_virtual_segment)
1268 dosv_refresh_virtual_screen (start_offset, end_hpos - start_hpos);
1269 mouse_on ();
1271 else
1273 /* We are removing a previously-drawn mouse highlight. The
1274 safest way to do so is to redraw the glyphs anew, since
1275 all kinds of faces and display tables could have changed
1276 behind our back. */
1277 int nglyphs = end_hpos - start_hpos;
1278 int save_x = new_pos_X, save_y = new_pos_Y;
1280 if (end_hpos >= row->used[TEXT_AREA])
1281 nglyphs = row->used[TEXT_AREA] - start_hpos;
1283 /* IT_write_glyphs writes at cursor position, so we need to
1284 temporarily move cursor coordinates to the beginning of
1285 the highlight region. */
1286 new_pos_X = start_hpos + WINDOW_DISPLAY_LEFT_EDGE_PIXEL_X (w);
1287 new_pos_Y = row->y + WINDOW_DISPLAY_TOP_EDGE_PIXEL_Y (w);
1289 if (termscript)
1290 fprintf (termscript, "<MH- %d-%d:%d>",
1291 new_pos_X, new_pos_X + nglyphs - 1, new_pos_Y);
1292 IT_write_glyphs (row->glyphs[TEXT_AREA] + start_hpos, nglyphs);
1293 if (termscript)
1294 fputs ("\n", termscript);
1295 new_pos_X = save_x;
1296 new_pos_Y = save_y;
1300 set_cursor_shape:
1302 /* Change the mouse pointer shape. */
1303 IT_set_mouse_pointer (hl);
1306 /* Clear out the mouse-highlighted active region.
1307 Redraw it un-highlighted first. */
1308 static void
1309 clear_mouse_face (struct display_info *dpyinfo)
1311 if (! NILP (dpyinfo->mouse_face_window))
1312 show_mouse_face (dpyinfo, 0);
1314 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
1315 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
1316 dpyinfo->mouse_face_window = Qnil;
1319 /* Find the glyph matrix position of buffer position POS in window W.
1320 *HPOS and *VPOS are set to the positions found. W's current glyphs
1321 must be up to date. If POS is above window start return (0, 0).
1322 If POS is after end of W, return end of last line in W. */
1323 static int
1324 fast_find_position (struct window *w, int pos, int *hpos, int *vpos)
1326 int i;
1327 int lastcol;
1328 int maybe_next_line_p = 0;
1329 int line_start_position;
1330 int yb = window_text_bottom_y (w);
1331 struct glyph_row *row = MATRIX_ROW (w->current_matrix, 0);
1332 struct glyph_row *best_row = row;
1334 while (row->y < yb)
1336 if (row->used[TEXT_AREA])
1337 line_start_position = row->glyphs[TEXT_AREA]->charpos;
1338 else
1339 line_start_position = 0;
1341 if (line_start_position > pos)
1342 break;
1343 /* If the position sought is the end of the buffer,
1344 don't include the blank lines at the bottom of the window. */
1345 else if (line_start_position == pos
1346 && pos == BUF_ZV (XBUFFER (w->buffer)))
1348 maybe_next_line_p = 1;
1349 break;
1351 else if (line_start_position > 0)
1352 best_row = row;
1354 ++row;
1357 /* Find the right column within BEST_ROW. */
1358 lastcol = 0;
1359 row = best_row;
1360 for (i = 0; i < row->used[TEXT_AREA]; i++)
1362 struct glyph *glyph = row->glyphs[TEXT_AREA] + i;
1363 int charpos;
1365 charpos = glyph->charpos;
1366 if (charpos == pos)
1368 *hpos = i;
1369 *vpos = row->y;
1370 return 1;
1372 else if (charpos > pos)
1373 break;
1374 else if (charpos > 0)
1375 lastcol = i;
1378 /* If we're looking for the end of the buffer,
1379 and we didn't find it in the line we scanned,
1380 use the start of the following line. */
1381 if (maybe_next_line_p)
1383 ++row;
1384 lastcol = 0;
1387 *vpos = row->y;
1388 *hpos = lastcol + 1;
1389 return 0;
1392 /* Take proper action when mouse has moved to the mode or top line of
1393 window W, x-position X. MODE_LINE_P non-zero means mouse is on the
1394 mode line. X is relative to the start of the text display area of
1395 W, so the width of bitmap areas and scroll bars must be subtracted
1396 to get a position relative to the start of the mode line. */
1397 static void
1398 IT_note_mode_line_highlight (struct window *w, int x, int mode_line_p)
1400 struct frame *f = XFRAME (w->frame);
1401 struct display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
1402 struct glyph_row *row;
1404 if (mode_line_p)
1405 row = MATRIX_MODE_LINE_ROW (w->current_matrix);
1406 else
1407 row = MATRIX_HEADER_LINE_ROW (w->current_matrix);
1409 if (row->enabled_p)
1411 extern Lisp_Object Qhelp_echo;
1412 struct glyph *glyph, *end;
1413 Lisp_Object help, map;
1415 /* Find the glyph under X. */
1416 glyph = row->glyphs[TEXT_AREA]
1417 + x - FRAME_LEFT_SCROLL_BAR_WIDTH (f) * CANON_X_UNIT (f);
1418 end = glyph + row->used[TEXT_AREA];
1419 if (glyph < end
1420 && STRINGP (glyph->object)
1421 && XSTRING (glyph->object)->intervals
1422 && glyph->charpos >= 0
1423 && glyph->charpos < XSTRING (glyph->object)->size)
1425 /* If we're on a string with `help-echo' text property,
1426 arrange for the help to be displayed. This is done by
1427 setting the global variable help_echo to the help string. */
1428 help = Fget_text_property (make_number (glyph->charpos),
1429 Qhelp_echo, glyph->object);
1430 if (!NILP (help))
1432 help_echo = help;
1433 XSETWINDOW (help_echo_window, w);
1434 help_echo_object = glyph->object;
1435 help_echo_pos = glyph->charpos;
1441 /* Take proper action when the mouse has moved to position X, Y on
1442 frame F as regards highlighting characters that have mouse-face
1443 properties. Also de-highlighting chars where the mouse was before.
1444 X and Y can be negative or out of range. */
1445 static void
1446 IT_note_mouse_highlight (struct frame *f, int x, int y)
1448 struct display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
1449 int portion;
1450 Lisp_Object window;
1451 struct window *w;
1453 /* When a menu is active, don't highlight because this looks odd. */
1454 if (mouse_preempted)
1455 return;
1457 if (disable_mouse_highlight
1458 || !f->glyphs_initialized_p)
1459 return;
1461 dpyinfo->mouse_face_mouse_x = x;
1462 dpyinfo->mouse_face_mouse_y = y;
1463 dpyinfo->mouse_face_mouse_frame = f;
1465 if (dpyinfo->mouse_face_defer)
1466 return;
1468 if (gc_in_progress)
1470 dpyinfo->mouse_face_deferred_gc = 1;
1471 return;
1474 /* Which window is that in? */
1475 window = window_from_coordinates (f, x, y, &portion, 0);
1477 /* If we were displaying active text in another window, clear that. */
1478 if (! EQ (window, dpyinfo->mouse_face_window))
1479 clear_mouse_face (dpyinfo);
1481 /* Not on a window -> return. */
1482 if (!WINDOWP (window))
1483 return;
1485 /* Convert to window-relative coordinates. */
1486 w = XWINDOW (window);
1487 x -= WINDOW_DISPLAY_LEFT_EDGE_PIXEL_X (w);
1488 y -= WINDOW_DISPLAY_TOP_EDGE_PIXEL_Y (w);
1490 if (portion == 1 || portion == 3)
1492 /* Mouse is on the mode or top line. */
1493 IT_note_mode_line_highlight (w, x, portion == 1);
1494 return;
1496 else
1497 IT_set_mouse_pointer (0);
1499 /* Are we in a window whose display is up to date?
1500 And verify the buffer's text has not changed. */
1501 if (/* Within text portion of the window. */
1502 portion == 0
1503 && EQ (w->window_end_valid, w->buffer)
1504 && XFASTINT (w->last_modified) == BUF_MODIFF (XBUFFER (w->buffer))
1505 && (XFASTINT (w->last_overlay_modified)
1506 == BUF_OVERLAY_MODIFF (XBUFFER (w->buffer))))
1508 int pos, i, area;
1509 struct glyph_row *row;
1510 struct glyph *glyph;
1512 /* Find the glyph under X/Y. */
1513 glyph = NULL;
1514 if (y < w->current_matrix->nrows)
1516 row = MATRIX_ROW (w->current_matrix, y);
1517 if (row->enabled_p
1518 && row->displays_text_p
1519 && x < window_box_width (w, TEXT_AREA))
1521 glyph = row->glyphs[TEXT_AREA];
1522 if (x >= row->used[TEXT_AREA])
1523 glyph = NULL;
1524 else
1526 glyph += x;
1527 if (!BUFFERP (glyph->object))
1528 glyph = NULL;
1533 /* Clear mouse face if X/Y not over text. */
1534 if (glyph == NULL)
1536 clear_mouse_face (dpyinfo);
1537 return;
1540 if (!BUFFERP (glyph->object))
1541 abort ();
1542 pos = glyph->charpos;
1544 /* Check for mouse-face and help-echo. */
1546 extern Lisp_Object Qmouse_face;
1547 Lisp_Object mouse_face, overlay, position;
1548 Lisp_Object *overlay_vec;
1549 int len, noverlays;
1550 struct buffer *obuf;
1551 int obegv, ozv;
1553 /* If we get an out-of-range value, return now; avoid an error. */
1554 if (pos > BUF_Z (XBUFFER (w->buffer)))
1555 return;
1557 /* Make the window's buffer temporarily current for
1558 overlays_at and compute_char_face. */
1559 obuf = current_buffer;
1560 current_buffer = XBUFFER (w->buffer);
1561 obegv = BEGV;
1562 ozv = ZV;
1563 BEGV = BEG;
1564 ZV = Z;
1566 /* Is this char mouse-active or does it have help-echo? */
1567 XSETINT (position, pos);
1569 /* Put all the overlays we want in a vector in overlay_vec.
1570 Store the length in len. If there are more than 10, make
1571 enough space for all, and try again. */
1572 len = 10;
1573 overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object));
1574 noverlays = overlays_at (pos, 0, &overlay_vec, &len, NULL, NULL);
1575 if (noverlays > len)
1577 len = noverlays;
1578 overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object));
1579 noverlays = overlays_at (pos, 0, &overlay_vec, &len, NULL, NULL);
1582 /* Sort overlays into increasing priority order. */
1583 noverlays = sort_overlays (overlay_vec, noverlays, w);
1585 /* Check mouse-face highlighting. */
1586 if (! (EQ (window, dpyinfo->mouse_face_window)
1587 && y >= dpyinfo->mouse_face_beg_row
1588 && y <= dpyinfo->mouse_face_end_row
1589 && (y > dpyinfo->mouse_face_beg_row
1590 || x >= dpyinfo->mouse_face_beg_col)
1591 && (y < dpyinfo->mouse_face_end_row
1592 || x < dpyinfo->mouse_face_end_col
1593 || dpyinfo->mouse_face_past_end)))
1595 /* Clear the display of the old active region, if any. */
1596 clear_mouse_face (dpyinfo);
1598 /* Find highest priority overlay that has a mouse-face prop. */
1599 overlay = Qnil;
1600 for (i = noverlays - 1; i >= 0; --i)
1602 mouse_face = Foverlay_get (overlay_vec[i], Qmouse_face);
1603 if (!NILP (mouse_face))
1605 overlay = overlay_vec[i];
1606 break;
1610 /* If no overlay applies, get a text property. */
1611 if (NILP (overlay))
1612 mouse_face = Fget_text_property (position, Qmouse_face,
1613 w->buffer);
1615 /* Handle the overlay case. */
1616 if (! NILP (overlay))
1618 /* Find the range of text around this char that
1619 should be active. */
1620 Lisp_Object before, after;
1621 int ignore;
1623 before = Foverlay_start (overlay);
1624 after = Foverlay_end (overlay);
1625 /* Record this as the current active region. */
1626 fast_find_position (w, XFASTINT (before),
1627 &dpyinfo->mouse_face_beg_col,
1628 &dpyinfo->mouse_face_beg_row);
1629 dpyinfo->mouse_face_past_end
1630 = !fast_find_position (w, XFASTINT (after),
1631 &dpyinfo->mouse_face_end_col,
1632 &dpyinfo->mouse_face_end_row);
1633 dpyinfo->mouse_face_window = window;
1634 dpyinfo->mouse_face_face_id
1635 = face_at_buffer_position (w, pos, 0, 0,
1636 &ignore, pos + 1, 1);
1638 /* Display it as active. */
1639 show_mouse_face (dpyinfo, 1);
1641 /* Handle the text property case. */
1642 else if (! NILP (mouse_face))
1644 /* Find the range of text around this char that
1645 should be active. */
1646 Lisp_Object before, after, beginning, end;
1647 int ignore;
1649 beginning = Fmarker_position (w->start);
1650 XSETINT (end, (BUF_Z (XBUFFER (w->buffer))
1651 - XFASTINT (w->window_end_pos)));
1652 before
1653 = Fprevious_single_property_change (make_number (pos + 1),
1654 Qmouse_face,
1655 w->buffer, beginning);
1656 after
1657 = Fnext_single_property_change (position, Qmouse_face,
1658 w->buffer, end);
1659 /* Record this as the current active region. */
1660 fast_find_position (w, XFASTINT (before),
1661 &dpyinfo->mouse_face_beg_col,
1662 &dpyinfo->mouse_face_beg_row);
1663 dpyinfo->mouse_face_past_end
1664 = !fast_find_position (w, XFASTINT (after),
1665 &dpyinfo->mouse_face_end_col,
1666 &dpyinfo->mouse_face_end_row);
1667 dpyinfo->mouse_face_window = window;
1668 dpyinfo->mouse_face_face_id
1669 = face_at_buffer_position (w, pos, 0, 0,
1670 &ignore, pos + 1, 1);
1672 /* Display it as active. */
1673 show_mouse_face (dpyinfo, 1);
1677 /* Look for a `help-echo' property. */
1679 Lisp_Object help;
1680 extern Lisp_Object Qhelp_echo;
1682 /* Check overlays first. */
1683 help = Qnil;
1684 for (i = noverlays - 1; i >= 0 && NILP (help); --i)
1686 overlay = overlay_vec[i];
1687 help = Foverlay_get (overlay, Qhelp_echo);
1690 if (!NILP (help))
1692 help_echo = help;
1693 help_echo_window = window;
1694 help_echo_object = overlay;
1695 help_echo_pos = pos;
1697 /* Try text properties. */
1698 else if (NILP (help)
1699 && ((STRINGP (glyph->object)
1700 && glyph->charpos >= 0
1701 && glyph->charpos < XSTRING (glyph->object)->size)
1702 || (BUFFERP (glyph->object)
1703 && glyph->charpos >= BEGV
1704 && glyph->charpos < ZV)))
1706 help = Fget_text_property (make_number (glyph->charpos),
1707 Qhelp_echo, glyph->object);
1708 if (!NILP (help))
1710 help_echo = help;
1711 help_echo_window = window;
1712 help_echo_object = glyph->object;
1713 help_echo_pos = glyph->charpos;
1718 BEGV = obegv;
1719 ZV = ozv;
1720 current_buffer = obuf;
1725 static void
1726 IT_clear_end_of_line (int first_unused)
1728 char *spaces, *sp;
1729 int i, j;
1730 int offset = 2 * (new_pos_X + screen_size_X * new_pos_Y);
1731 extern int fatal_error_in_progress;
1733 if (new_pos_X >= first_unused || fatal_error_in_progress)
1734 return;
1736 IT_set_face (0);
1737 i = (j = first_unused - new_pos_X) * 2;
1738 if (termscript)
1739 fprintf (termscript, "<CLR:EOL[%d..%d)>", new_pos_X, first_unused);
1740 spaces = sp = alloca (i);
1742 while (--j >= 0)
1744 *sp++ = ' ';
1745 *sp++ = ScreenAttrib;
1748 mouse_off_maybe ();
1749 dosmemput (spaces, i, (int)ScreenPrimary + offset);
1750 if (screen_virtual_segment)
1751 dosv_refresh_virtual_screen (offset, i / 2);
1753 /* clear_end_of_line_raw on term.c leaves the cursor at first_unused.
1754 Let's follow their lead, in case someone relies on this. */
1755 new_pos_X = first_unused;
1758 static void
1759 IT_clear_screen (void)
1761 if (termscript)
1762 fprintf (termscript, "<CLR:SCR>");
1763 IT_set_face (0);
1764 mouse_off ();
1765 ScreenClear ();
1766 if (screen_virtual_segment)
1767 dosv_refresh_virtual_screen (0, screen_size);
1768 new_pos_X = new_pos_Y = 0;
1771 static void
1772 IT_clear_to_end (void)
1774 if (termscript)
1775 fprintf (termscript, "<CLR:EOS>");
1777 while (new_pos_Y < screen_size_Y) {
1778 new_pos_X = 0;
1779 IT_clear_end_of_line (screen_size_X);
1780 new_pos_Y++;
1784 static void
1785 IT_cursor_to (int y, int x)
1787 if (termscript)
1788 fprintf (termscript, "\n<XY=%dx%d>", x, y);
1789 new_pos_X = x;
1790 new_pos_Y = y;
1793 static int cursor_cleared;
1795 static void
1796 IT_display_cursor (int on)
1798 if (on && cursor_cleared)
1800 ScreenSetCursor (current_pos_Y, current_pos_X);
1801 cursor_cleared = 0;
1803 else if (!on && !cursor_cleared)
1805 ScreenSetCursor (-1, -1);
1806 cursor_cleared = 1;
1810 /* Emacs calls cursor-movement functions a lot when it updates the
1811 display (probably a legacy of old terminals where you cannot
1812 update a screen line without first moving the cursor there).
1813 However, cursor movement is expensive on MSDOS (it calls a slow
1814 BIOS function and requires 2 mode switches), while actual screen
1815 updates access the video memory directly and don't depend on
1816 cursor position. To avoid slowing down the redisplay, we cheat:
1817 all functions that move the cursor only set internal variables
1818 which record the cursor position, whereas the cursor is only
1819 moved to its final position whenever screen update is complete.
1821 `IT_cmgoto' is called from the keyboard reading loop and when the
1822 frame update is complete. This means that we are ready for user
1823 input, so we update the cursor position to show where the point is,
1824 and also make the mouse pointer visible.
1826 Special treatment is required when the cursor is in the echo area,
1827 to put the cursor at the end of the text displayed there. */
1829 static void
1830 IT_cmgoto (FRAME_PTR f)
1832 /* Only set the cursor to where it should be if the display is
1833 already in sync with the window contents. */
1834 int update_cursor_pos = 1; /* MODIFF == unchanged_modified; */
1836 /* FIXME: This needs to be rewritten for the new redisplay, or
1837 removed. */
1838 #if 0
1839 static int previous_pos_X = -1;
1841 update_cursor_pos = 1; /* temporary!!! */
1843 /* If the display is in sync, forget any previous knowledge about
1844 cursor position. This is primarily for unexpected events like
1845 C-g in the minibuffer. */
1846 if (update_cursor_pos && previous_pos_X >= 0)
1847 previous_pos_X = -1;
1848 /* If we are in the echo area, put the cursor at the
1849 end of the echo area message. */
1850 if (!update_cursor_pos
1851 && XFASTINT (XWINDOW (FRAME_MINIBUF_WINDOW (f))->top) <= new_pos_Y)
1853 int tem_X = current_pos_X, dummy;
1855 if (echo_area_glyphs)
1857 tem_X = echo_area_glyphs_length;
1858 /* Save current cursor position, to be restored after the
1859 echo area message is erased. Only remember one level
1860 of previous cursor position. */
1861 if (previous_pos_X == -1)
1862 ScreenGetCursor (&dummy, &previous_pos_X);
1864 else if (previous_pos_X >= 0)
1866 /* We wind up here after the echo area message is erased.
1867 Restore the cursor position we remembered above. */
1868 tem_X = previous_pos_X;
1869 previous_pos_X = -1;
1872 if (current_pos_X != tem_X)
1874 new_pos_X = tem_X;
1875 update_cursor_pos = 1;
1878 #endif
1880 if (update_cursor_pos
1881 && (current_pos_X != new_pos_X || current_pos_Y != new_pos_Y))
1883 ScreenSetCursor (current_pos_Y = new_pos_Y, current_pos_X = new_pos_X);
1884 if (termscript)
1885 fprintf (termscript, "\n<CURSOR:%dx%d>", current_pos_X, current_pos_Y);
1888 /* Maybe cursor is invisible, so make it visible. */
1889 IT_display_cursor (1);
1891 /* Mouse pointer should be always visible if we are waiting for
1892 keyboard input. */
1893 if (!mouse_visible)
1894 mouse_on ();
1897 static void
1898 IT_reassert_line_highlight (int new, int vpos)
1900 highlight = new;
1903 static void
1904 IT_change_line_highlight (int new_highlight, int y, int vpos, int first_unused_hpos)
1906 highlight = new_highlight;
1907 IT_cursor_to (vpos, 0);
1908 IT_clear_end_of_line (first_unused_hpos);
1911 static void
1912 IT_update_begin (struct frame *f)
1914 struct display_info *display_info = FRAME_X_DISPLAY_INFO (f);
1916 highlight = 0;
1918 BLOCK_INPUT;
1920 if (f == display_info->mouse_face_mouse_frame)
1922 /* Don't do highlighting for mouse motion during the update. */
1923 display_info->mouse_face_defer = 1;
1925 /* If F needs to be redrawn, simply forget about any prior mouse
1926 highlighting. */
1927 if (FRAME_GARBAGED_P (f))
1928 display_info->mouse_face_window = Qnil;
1930 /* Can we tell that this update does not affect the window
1931 where the mouse highlight is? If so, no need to turn off.
1932 Likewise, don't do anything if none of the enabled rows
1933 contains glyphs highlighted in mouse face. */
1934 if (!NILP (display_info->mouse_face_window)
1935 && WINDOWP (display_info->mouse_face_window))
1937 struct window *w = XWINDOW (display_info->mouse_face_window);
1938 int i;
1940 /* If the mouse highlight is in the window that was deleted
1941 (e.g., if it was popped by completion), clear highlight
1942 unconditionally. */
1943 if (NILP (w->buffer))
1944 display_info->mouse_face_window = Qnil;
1945 else
1947 for (i = 0; i < w->desired_matrix->nrows; ++i)
1948 if (MATRIX_ROW_ENABLED_P (w->desired_matrix, i)
1949 && MATRIX_ROW (w->current_matrix, i)->mouse_face_p)
1950 break;
1953 if (NILP (w->buffer) || i < w->desired_matrix->nrows)
1954 clear_mouse_face (display_info);
1957 else if (!FRAME_LIVE_P (display_info->mouse_face_mouse_frame))
1959 /* If the frame with mouse highlight was deleted, invalidate the
1960 highlight info. */
1961 display_info->mouse_face_beg_row = display_info->mouse_face_beg_col = -1;
1962 display_info->mouse_face_end_row = display_info->mouse_face_end_col = -1;
1963 display_info->mouse_face_window = Qnil;
1964 display_info->mouse_face_deferred_gc = 0;
1965 display_info->mouse_face_mouse_frame = NULL;
1968 UNBLOCK_INPUT;
1971 static void
1972 IT_update_end (struct frame *f)
1974 highlight = 0;
1975 FRAME_X_DISPLAY_INFO (f)->mouse_face_defer = 0;
1978 Lisp_Object Qcursor_type;
1980 static void
1981 IT_frame_up_to_date (struct frame *f)
1983 struct display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
1984 Lisp_Object new_cursor, frame_desired_cursor;
1985 struct window *sw;
1987 if (dpyinfo->mouse_face_deferred_gc
1988 || f == dpyinfo->mouse_face_mouse_frame)
1990 BLOCK_INPUT;
1991 if (dpyinfo->mouse_face_mouse_frame)
1992 IT_note_mouse_highlight (dpyinfo->mouse_face_mouse_frame,
1993 dpyinfo->mouse_face_mouse_x,
1994 dpyinfo->mouse_face_mouse_y);
1995 dpyinfo->mouse_face_deferred_gc = 0;
1996 UNBLOCK_INPUT;
1999 /* Set the cursor type to whatever they wanted. In a minibuffer
2000 window, we want the cursor to appear only if we are reading input
2001 from this window, and we want the cursor to be taken from the
2002 frame parameters. For the selected window, we use either its
2003 buffer-local value or the value from the frame parameters if the
2004 buffer doesn't define its local value for the cursor type. */
2005 sw = XWINDOW (f->selected_window);
2006 frame_desired_cursor = Fcdr (Fassq (Qcursor_type, f->param_alist));
2007 if (cursor_in_echo_area
2008 && FRAME_HAS_MINIBUF_P (f)
2009 && EQ (FRAME_MINIBUF_WINDOW (f), echo_area_window)
2010 && sw == XWINDOW (echo_area_window))
2011 new_cursor = frame_desired_cursor;
2012 else
2014 struct buffer *b = XBUFFER (sw->buffer);
2016 if (EQ (b->cursor_type, Qt))
2017 new_cursor = frame_desired_cursor;
2018 else if (NILP (b->cursor_type)) /* nil means no cursor */
2019 new_cursor = Fcons (Qbar, make_number (0));
2020 else
2021 new_cursor = b->cursor_type;
2024 IT_set_cursor_type (f, new_cursor);
2026 IT_cmgoto (f); /* position cursor when update is done */
2029 /* Copy LEN glyphs displayed on a single line whose vertical position
2030 is YPOS, beginning at horizontal position XFROM to horizontal
2031 position XTO, by moving blocks in the video memory. Used by
2032 functions that insert and delete glyphs. */
2033 static void
2034 IT_copy_glyphs (int xfrom, int xto, size_t len, int ypos)
2036 /* The offsets of source and destination relative to the
2037 conventional memorty selector. */
2038 int from = 2 * (xfrom + screen_size_X * ypos) + ScreenPrimary;
2039 int to = 2 * (xto + screen_size_X * ypos) + ScreenPrimary;
2041 if (from == to || len <= 0)
2042 return;
2044 _farsetsel (_dos_ds);
2046 /* The source and destination might overlap, so we need to move
2047 glyphs non-destructively. */
2048 if (from > to)
2050 for ( ; len; from += 2, to += 2, len--)
2051 _farnspokew (to, _farnspeekw (from));
2053 else
2055 from += (len - 1) * 2;
2056 to += (len - 1) * 2;
2057 for ( ; len; from -= 2, to -= 2, len--)
2058 _farnspokew (to, _farnspeekw (from));
2060 if (screen_virtual_segment)
2061 dosv_refresh_virtual_screen (ypos * screen_size_X * 2, screen_size_X);
2064 /* Insert and delete glyphs. */
2065 static void
2066 IT_insert_glyphs (start, len)
2067 register struct glyph *start;
2068 register int len;
2070 int shift_by_width = screen_size_X - (new_pos_X + len);
2072 /* Shift right the glyphs from the nominal cursor position to the
2073 end of this line. */
2074 IT_copy_glyphs (new_pos_X, new_pos_X + len, shift_by_width, new_pos_Y);
2076 /* Now write the glyphs to be inserted. */
2077 IT_write_glyphs (start, len);
2080 static void
2081 IT_delete_glyphs (n)
2082 register int n;
2084 abort ();
2087 /* set-window-configuration on window.c needs this. */
2088 void
2089 x_set_menu_bar_lines (f, value, oldval)
2090 struct frame *f;
2091 Lisp_Object value, oldval;
2093 set_menu_bar_lines (f, value, oldval);
2096 /* This was copied from xfns.c */
2098 Lisp_Object Qbackground_color;
2099 Lisp_Object Qforeground_color;
2100 Lisp_Object Qreverse;
2101 extern Lisp_Object Qtitle;
2103 /* IT_set_terminal_modes is called when emacs is started,
2104 resumed, and whenever the screen is redrawn! */
2106 static void
2107 IT_set_terminal_modes (void)
2109 if (termscript)
2110 fprintf (termscript, "\n<SET_TERM>");
2111 highlight = 0;
2113 screen_size_X = ScreenCols ();
2114 screen_size_Y = ScreenRows ();
2115 screen_size = screen_size_X * screen_size_Y;
2117 new_pos_X = new_pos_Y = 0;
2118 current_pos_X = current_pos_Y = -1;
2120 if (term_setup_done)
2121 return;
2122 term_setup_done = 1;
2124 startup_screen_size_X = screen_size_X;
2125 startup_screen_size_Y = screen_size_Y;
2126 startup_screen_attrib = ScreenAttrib;
2128 #if __DJGPP__ > 1
2129 /* Is DOS/V (or any other RSIS software which relocates
2130 the screen) installed? */
2132 unsigned short es_value;
2133 __dpmi_regs regs;
2135 regs.h.ah = 0xfe; /* get relocated screen address */
2136 if (ScreenPrimary == 0xb0000UL || ScreenPrimary == 0xb8000UL)
2137 regs.x.es = (ScreenPrimary >> 4) & 0xffff;
2138 else if (screen_old_address) /* already switched to Japanese mode once */
2139 regs.x.es = (screen_old_address >> 4) & 0xffff;
2140 else
2141 regs.x.es = ScreenMode () == 7 ? 0xb000 : 0xb800;
2142 regs.x.di = 0;
2143 es_value = regs.x.es;
2144 __dpmi_int (0x10, &regs);
2146 if (regs.x.es != es_value)
2148 /* screen_old_address is only set if ScreenPrimary does NOT
2149 already point to the relocated buffer address returned by
2150 the Int 10h/AX=FEh call above. DJGPP v2.02 and later sets
2151 ScreenPrimary to that address at startup under DOS/V. */
2152 if (regs.x.es != (ScreenPrimary >> 4) & 0xffff)
2153 screen_old_address = ScreenPrimary;
2154 screen_virtual_segment = regs.x.es;
2155 screen_virtual_offset = regs.x.di;
2156 ScreenPrimary = (screen_virtual_segment << 4) + screen_virtual_offset;
2159 #endif /* __DJGPP__ > 1 */
2161 ScreenGetCursor (&startup_pos_Y, &startup_pos_X);
2162 ScreenRetrieve (startup_screen_buffer = xmalloc (screen_size * 2));
2164 if (termscript)
2165 fprintf (termscript, "<SCREEN SAVED (dimensions=%dx%d)>\n",
2166 screen_size_X, screen_size_Y);
2168 bright_bg ();
2171 /* IT_reset_terminal_modes is called when emacs is
2172 suspended or killed. */
2174 static void
2175 IT_reset_terminal_modes (void)
2177 int display_row_start = (int) ScreenPrimary;
2178 int saved_row_len = startup_screen_size_X * 2;
2179 int update_row_len = ScreenCols () * 2;
2180 int current_rows = ScreenRows ();
2181 int to_next_row = update_row_len;
2182 unsigned char *saved_row = startup_screen_buffer;
2183 int cursor_pos_X = ScreenCols () - 1;
2184 int cursor_pos_Y = ScreenRows () - 1;
2186 if (termscript)
2187 fprintf (termscript, "\n<RESET_TERM>");
2189 highlight = 0;
2191 if (!term_setup_done)
2192 return;
2194 mouse_off ();
2196 /* Leave the video system in the same state as we found it,
2197 as far as the blink/bright-background bit is concerned. */
2198 maybe_enable_blinking ();
2200 /* We have a situation here.
2201 We cannot just do ScreenUpdate(startup_screen_buffer) because
2202 the luser could have changed screen dimensions inside Emacs
2203 and failed (or didn't want) to restore them before killing
2204 Emacs. ScreenUpdate() uses the *current* screen dimensions and
2205 thus will happily use memory outside what was allocated for
2206 `startup_screen_buffer'.
2207 Thus we only restore as much as the current screen dimensions
2208 can hold, and clear the rest (if the saved screen is smaller than
2209 the current) with the color attribute saved at startup. The cursor
2210 is also restored within the visible dimensions. */
2212 ScreenAttrib = startup_screen_attrib;
2214 /* Don't restore the screen if we are exiting less than 2 seconds
2215 after startup: we might be crashing, and the screen might show
2216 some vital clues to what's wrong. */
2217 if (clock () - startup_time >= 2*CLOCKS_PER_SEC)
2219 ScreenClear ();
2220 if (screen_virtual_segment)
2221 dosv_refresh_virtual_screen (0, screen_size);
2223 if (update_row_len > saved_row_len)
2224 update_row_len = saved_row_len;
2225 if (current_rows > startup_screen_size_Y)
2226 current_rows = startup_screen_size_Y;
2228 if (termscript)
2229 fprintf (termscript, "<SCREEN RESTORED (dimensions=%dx%d)>\n",
2230 update_row_len / 2, current_rows);
2232 while (current_rows--)
2234 dosmemput (saved_row, update_row_len, display_row_start);
2235 if (screen_virtual_segment)
2236 dosv_refresh_virtual_screen (display_row_start - ScreenPrimary,
2237 update_row_len / 2);
2238 saved_row += saved_row_len;
2239 display_row_start += to_next_row;
2242 if (startup_pos_X < cursor_pos_X)
2243 cursor_pos_X = startup_pos_X;
2244 if (startup_pos_Y < cursor_pos_Y)
2245 cursor_pos_Y = startup_pos_Y;
2247 ScreenSetCursor (cursor_pos_Y, cursor_pos_X);
2248 xfree (startup_screen_buffer);
2250 term_setup_done = 0;
2253 static void
2254 IT_set_terminal_window (int foo)
2258 /* Remember the screen colors of the curent frame, to serve as the
2259 default colors for newly-created frames. */
2261 static int initial_screen_colors[2];
2263 DEFUN ("msdos-remember-default-colors", Fmsdos_remember_default_colors,
2264 Smsdos_remember_default_colors, 1, 1, 0,
2265 "Remember the screen colors of the current frame.")
2266 (frame)
2267 Lisp_Object frame;
2269 int reverse;
2270 struct frame *f;
2272 CHECK_FRAME (frame, 0);
2273 f= XFRAME (frame);
2274 reverse = EQ (Fcdr (Fassq (intern ("reverse"), f->param_alist)), Qt);
2276 initial_screen_colors[0]
2277 = reverse ? FRAME_BACKGROUND_PIXEL (f) : FRAME_FOREGROUND_PIXEL (f);
2278 initial_screen_colors[1]
2279 = reverse ? FRAME_FOREGROUND_PIXEL (f) : FRAME_BACKGROUND_PIXEL (f);
2282 void
2283 IT_set_frame_parameters (f, alist)
2284 struct frame *f;
2285 Lisp_Object alist;
2287 Lisp_Object tail;
2288 int length = XINT (Flength (alist));
2289 int i, j;
2290 Lisp_Object *parms
2291 = (Lisp_Object *) alloca (length * sizeof (Lisp_Object));
2292 Lisp_Object *values
2293 = (Lisp_Object *) alloca (length * sizeof (Lisp_Object));
2294 /* Do we have to reverse the foreground and background colors? */
2295 int reverse = EQ (Fcdr (Fassq (Qreverse, f->param_alist)), Qt);
2296 int was_reverse = reverse;
2297 int redraw = 0, fg_set = 0, bg_set = 0;
2298 unsigned long orig_fg;
2299 unsigned long orig_bg;
2301 /* If we are creating a new frame, begin with the original screen colors
2302 used for the initial frame. */
2303 if (alist == Vdefault_frame_alist
2304 && initial_screen_colors[0] != -1 && initial_screen_colors[1] != -1)
2306 FRAME_FOREGROUND_PIXEL (f) = initial_screen_colors[0];
2307 FRAME_BACKGROUND_PIXEL (f) = initial_screen_colors[1];
2309 orig_fg = FRAME_FOREGROUND_PIXEL (f);
2310 orig_bg = FRAME_BACKGROUND_PIXEL (f);
2312 /* Extract parm names and values into those vectors. */
2313 i = 0;
2314 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
2316 Lisp_Object elt;
2318 elt = Fcar (tail);
2319 parms[i] = Fcar (elt);
2320 CHECK_SYMBOL (parms[i], 1);
2321 values[i] = Fcdr (elt);
2322 i++;
2325 j = i;
2327 for (i = 0; i < j; i++)
2329 Lisp_Object prop = parms[i];
2330 Lisp_Object val = values[i];
2332 if (EQ (prop, Qreverse))
2333 reverse = EQ (val, Qt);
2336 if (termscript && reverse && !was_reverse)
2337 fprintf (termscript, "<INVERSE-VIDEO>\n");
2339 /* Now process the alist elements in reverse of specified order. */
2340 for (i--; i >= 0; i--)
2342 Lisp_Object prop = parms[i];
2343 Lisp_Object val = values[i];
2345 if (EQ (prop, Qforeground_color))
2347 unsigned long new_color = load_color (f, NULL, val, reverse
2348 ? LFACE_BACKGROUND_INDEX
2349 : LFACE_FOREGROUND_INDEX);
2350 if (new_color != FACE_TTY_DEFAULT_COLOR
2351 && new_color != FACE_TTY_DEFAULT_FG_COLOR
2352 && new_color != FACE_TTY_DEFAULT_BG_COLOR)
2354 if (reverse)
2355 /* FIXME: should the fore-/background of the default
2356 face change here as well? */
2357 FRAME_BACKGROUND_PIXEL (f) = new_color;
2358 else
2359 FRAME_FOREGROUND_PIXEL (f) = new_color;
2360 redraw = 1;
2361 fg_set = 1;
2362 if (termscript)
2363 fprintf (termscript, "<FGCOLOR %lu>\n", new_color);
2366 else if (EQ (prop, Qbackground_color))
2368 unsigned long new_color = load_color (f, NULL, val, reverse
2369 ? LFACE_FOREGROUND_INDEX
2370 : LFACE_BACKGROUND_INDEX);
2371 if (new_color != FACE_TTY_DEFAULT_COLOR
2372 && new_color != FACE_TTY_DEFAULT_FG_COLOR
2373 && new_color != FACE_TTY_DEFAULT_BG_COLOR)
2375 if (reverse)
2376 FRAME_FOREGROUND_PIXEL (f) = new_color;
2377 else
2378 FRAME_BACKGROUND_PIXEL (f) = new_color;
2379 redraw = 1;
2380 bg_set = 1;
2381 if (termscript)
2382 fprintf (termscript, "<BGCOLOR %lu>\n", new_color);
2385 else if (EQ (prop, Qtitle))
2387 x_set_title (f, val);
2388 if (termscript)
2389 fprintf (termscript, "<TITLE: %s>\n", XSTRING (val)->data);
2391 else if (EQ (prop, Qcursor_type))
2393 IT_set_cursor_type (f, val);
2394 if (termscript)
2395 fprintf (termscript, "<CTYPE: %s>\n",
2396 EQ (val, Qbar) || CONSP (val) && EQ (XCAR (val), Qbar)
2397 ? "bar" : "box");
2399 store_frame_param (f, prop, val);
2402 /* If they specified "reverse", but not the colors, we need to swap
2403 the current frame colors. */
2404 if (reverse && !was_reverse)
2406 if (!fg_set)
2408 FRAME_BACKGROUND_PIXEL (f) = orig_fg;
2409 redraw = 1;
2411 if (!bg_set)
2413 FRAME_FOREGROUND_PIXEL (f) = orig_bg;
2414 redraw = 1;
2418 if (redraw)
2420 face_change_count++; /* forces xdisp.c to recompute basic faces */
2421 if (f == SELECTED_FRAME())
2422 redraw_frame (f);
2426 extern void init_frame_faces (FRAME_PTR);
2428 #endif /* !HAVE_X_WINDOWS */
2431 /* Do we need the internal terminal? */
2433 void
2434 internal_terminal_init ()
2436 char *term = getenv ("TERM");
2437 char *colors;
2438 struct frame *sf = SELECTED_FRAME();
2440 #ifdef HAVE_X_WINDOWS
2441 if (!inhibit_window_system)
2442 return;
2443 #endif
2445 internal_terminal
2446 = (!noninteractive) && term && !strcmp (term, "internal");
2448 if (getenv ("EMACSTEST"))
2449 termscript = fopen (getenv ("EMACSTEST"), "wt");
2451 #ifndef HAVE_X_WINDOWS
2452 if (!internal_terminal || inhibit_window_system)
2454 sf->output_method = output_termcap;
2455 return;
2458 Vwindow_system = intern ("pc");
2459 Vwindow_system_version = make_number (1);
2460 sf->output_method = output_msdos_raw;
2462 /* If Emacs was dumped on DOS/V machine, forget the stale VRAM address. */
2463 screen_old_address = 0;
2465 /* Forget the stale screen colors as well. */
2466 initial_screen_colors[0] = initial_screen_colors[1] = -1;
2468 bzero (&the_only_x_display, sizeof the_only_x_display);
2469 the_only_x_display.background_pixel = 7; /* White */
2470 the_only_x_display.foreground_pixel = 0; /* Black */
2471 bright_bg ();
2472 colors = getenv ("EMACSCOLORS");
2473 if (colors && strlen (colors) >= 2)
2475 /* The colors use 4 bits each (we enable bright background). */
2476 if (isdigit (colors[0]))
2477 colors[0] -= '0';
2478 else if (isxdigit (colors[0]))
2479 colors[0] -= (isupper (colors[0]) ? 'A' : 'a') - 10;
2480 if (colors[0] >= 0 && colors[0] < 16)
2481 the_only_x_display.foreground_pixel = colors[0];
2482 if (isdigit (colors[1]))
2483 colors[1] -= '0';
2484 else if (isxdigit (colors[1]))
2485 colors[1] -= (isupper (colors[1]) ? 'A' : 'a') - 10;
2486 if (colors[1] >= 0 && colors[1] < 16)
2487 the_only_x_display.background_pixel = colors[1];
2489 the_only_x_display.line_height = 1;
2490 the_only_x_display.font = (XFontStruct *)1; /* must *not* be zero */
2491 the_only_x_display.display_info.mouse_face_mouse_frame = NULL;
2492 the_only_x_display.display_info.mouse_face_deferred_gc = 0;
2493 the_only_x_display.display_info.mouse_face_beg_row =
2494 the_only_x_display.display_info.mouse_face_beg_col = -1;
2495 the_only_x_display.display_info.mouse_face_end_row =
2496 the_only_x_display.display_info.mouse_face_end_col = -1;
2497 the_only_x_display.display_info.mouse_face_face_id = DEFAULT_FACE_ID;
2498 the_only_x_display.display_info.mouse_face_window = Qnil;
2499 the_only_x_display.display_info.mouse_face_mouse_x =
2500 the_only_x_display.display_info.mouse_face_mouse_y = 0;
2501 the_only_x_display.display_info.mouse_face_defer = 0;
2503 init_frame_faces (sf);
2505 ring_bell_hook = IT_ring_bell;
2506 insert_glyphs_hook = IT_insert_glyphs;
2507 delete_glyphs_hook = IT_delete_glyphs;
2508 write_glyphs_hook = IT_write_glyphs;
2509 cursor_to_hook = raw_cursor_to_hook = IT_cursor_to;
2510 clear_to_end_hook = IT_clear_to_end;
2511 clear_end_of_line_hook = IT_clear_end_of_line;
2512 clear_frame_hook = IT_clear_screen;
2513 change_line_highlight_hook = IT_change_line_highlight;
2514 update_begin_hook = IT_update_begin;
2515 update_end_hook = IT_update_end;
2516 reassert_line_highlight_hook = IT_reassert_line_highlight;
2517 frame_up_to_date_hook = IT_frame_up_to_date;
2519 /* These hooks are called by term.c without being checked. */
2520 set_terminal_modes_hook = IT_set_terminal_modes;
2521 reset_terminal_modes_hook = IT_reset_terminal_modes;
2522 set_terminal_window_hook = IT_set_terminal_window;
2523 char_ins_del_ok = 0;
2524 #endif
2527 dos_get_saved_screen (screen, rows, cols)
2528 char **screen;
2529 int *rows;
2530 int *cols;
2532 #ifndef HAVE_X_WINDOWS
2533 *screen = startup_screen_buffer;
2534 *cols = startup_screen_size_X;
2535 *rows = startup_screen_size_Y;
2536 return *screen != (char *)0;
2537 #else
2538 return 0;
2539 #endif
2542 #ifndef HAVE_X_WINDOWS
2544 /* We are not X, but we can emulate it well enough for our needs... */
2545 void
2546 check_x (void)
2548 if (! FRAME_MSDOS_P (SELECTED_FRAME()))
2549 error ("Not running under a window system");
2552 #endif
2555 /* ----------------------- Keyboard control ----------------------
2557 * Keymaps reflect the following keyboard layout:
2559 * 0 1 2 3 4 5 6 7 8 9 10 11 12 BS
2560 * TAB 15 16 17 18 19 20 21 22 23 24 25 26 (41)
2561 * CLOK 30 31 32 33 34 35 36 37 38 39 40 (41) RET
2562 * SH () 45 46 47 48 49 50 51 52 53 54 SHIFT
2563 * SPACE
2566 #define Ignore 0x0000
2567 #define Normal 0x0000 /* normal key - alt changes scan-code */
2568 #define FctKey 0x1000 /* func key if c == 0, else c */
2569 #define Special 0x2000 /* func key even if c != 0 */
2570 #define ModFct 0x3000 /* special if mod-keys, else 'c' */
2571 #define Map 0x4000 /* alt scan-code, map to unshift/shift key */
2572 #define KeyPad 0x5000 /* map to insert/kp-0 depending on c == 0xe0 */
2573 #define Grey 0x6000 /* Grey keypad key */
2575 #define Alt 0x0100 /* alt scan-code */
2576 #define Ctrl 0x0200 /* ctrl scan-code */
2577 #define Shift 0x0400 /* shift scan-code */
2579 static int extended_kbd; /* 101 (102) keyboard present. */
2581 struct kbd_translate {
2582 unsigned char sc;
2583 unsigned char ch;
2584 unsigned short code;
2587 struct dos_keyboard_map
2589 char *unshifted;
2590 char *shifted;
2591 char *alt_gr;
2592 struct kbd_translate *translate_table;
2596 static struct dos_keyboard_map us_keyboard = {
2597 /* 0 1 2 3 4 5 */
2598 /* 01234567890123456789012345678901234567890 12345678901234 */
2599 "`1234567890-= qwertyuiop[] asdfghjkl;'\\ zxcvbnm,./ ",
2600 /* 0123456789012345678901234567890123456789 012345678901234 */
2601 "~!@#$%^&*()_+ QWERTYUIOP{} ASDFGHJKL:\"| ZXCVBNM<>? ",
2602 0, /* no Alt-Gr key */
2603 0 /* no translate table */
2606 static struct dos_keyboard_map fr_keyboard = {
2607 /* 0 1 2 3 4 5 */
2608 /* 012 3456789012345678901234567890123456789012345678901234 */
2609 "ý&‚\",(-Š_€…)= azertyuiop^$ qsdfghjklm—* wxcvbnm;:! ",
2610 /* 0123456789012345678901234567890123456789012345678901234 */
2611 " 1234567890ø+ AZERTYUIOPùœ QSDFGHJKLM%æ WXCVBN?./õ ",
2612 /* 01234567 89012345678901234567890123456789012345678901234 */
2613 " ~#{[|`\\^@]} Ï ",
2614 0 /* no translate table */
2618 * Italian keyboard support, country code 39.
2619 * '<' 56:3c*0000
2620 * '>' 56:3e*0000
2621 * added also {,},` as, respectively, AltGr-8, AltGr-9, AltGr-'
2622 * Donated by Stefano Brozzi <brozzis@mag00.cedi.unipr.it>
2625 static struct kbd_translate it_kbd_translate_table[] = {
2626 { 0x56, 0x3c, Normal | 13 },
2627 { 0x56, 0x3e, Normal | 27 },
2628 { 0, 0, 0 }
2630 static struct dos_keyboard_map it_keyboard = {
2631 /* 0 1 2 3 4 5 */
2632 /* 0 123456789012345678901234567890123456789012345678901234 */
2633 "\\1234567890'�< qwertyuiopŠ+> asdfghjkl•…— zxcvbnm,.- ",
2634 /* 01 23456789012345678901234567890123456789012345678901234 */
2635 "|!\"œ$%&/()=?^> QWERTYUIOP‚* ASDFGHJKL‡øõ ZXCVBNM;:_ ",
2636 /* 0123456789012345678901234567890123456789012345678901234 */
2637 " {}~` [] @# ",
2638 it_kbd_translate_table
2641 static struct dos_keyboard_map dk_keyboard = {
2642 /* 0 1 2 3 4 5 */
2643 /* 0123456789012345678901234567890123456789012345678901234 */
2644 "«1234567890+| qwertyuiop†~ asdfghjkl‘›' zxcvbnm,.- ",
2645 /* 01 23456789012345678901234567890123456789012345678901234 */
2646 "õ!\"#$%&/()=?` QWERTYUIOP�^ ASDFGHJKL’�* ZXCVBNM;:_ ",
2647 /* 0123456789012345678901234567890123456789012345678901234 */
2648 " @œ$ {[]} | ",
2649 0 /* no translate table */
2652 static struct kbd_translate jp_kbd_translate_table[] = {
2653 { 0x73, 0x5c, Normal | 0 },
2654 { 0x73, 0x5f, Normal | 0 },
2655 { 0x73, 0x1c, Map | 0 },
2656 { 0x7d, 0x5c, Normal | 13 },
2657 { 0x7d, 0x7c, Normal | 13 },
2658 { 0x7d, 0x1c, Map | 13 },
2659 { 0, 0, 0 }
2661 static struct dos_keyboard_map jp_keyboard = {
2662 /* 0 1 2 3 4 5 */
2663 /* 0123456789012 345678901234567890123456789012345678901234 */
2664 "\\1234567890-^\\ qwertyuiop@[ asdfghjkl;:] zxcvbnm,./ ",
2665 /* 01 23456789012345678901234567890123456789012345678901234 */
2666 "_!\"#$%&'()~=~| QWERTYUIOP`{ ASDFGHJKL+*} ZXCVBNM<>? ",
2667 0, /* no Alt-Gr key */
2668 jp_kbd_translate_table
2671 static struct keyboard_layout_list
2673 int country_code;
2674 struct dos_keyboard_map *keyboard_map;
2675 } keyboard_layout_list[] =
2677 1, &us_keyboard,
2678 33, &fr_keyboard,
2679 39, &it_keyboard,
2680 45, &dk_keyboard,
2681 81, &jp_keyboard
2684 static struct dos_keyboard_map *keyboard;
2685 static int keyboard_map_all;
2686 static int international_keyboard;
2689 dos_set_keyboard (code, always)
2690 int code;
2691 int always;
2693 int i;
2694 _go32_dpmi_registers regs;
2696 /* See if Keyb.Com is installed (for international keyboard support).
2697 Note: calling Int 2Fh via int86 wedges the DOS box on some versions
2698 of Windows 9X! So don't do that! */
2699 regs.x.ax = 0xad80;
2700 regs.x.ss = regs.x.sp = regs.x.flags = 0;
2701 _go32_dpmi_simulate_int (0x2f, &regs);
2702 if (regs.h.al == 0xff)
2703 international_keyboard = 1;
2705 /* Initialize to US settings, for countries that don't have their own. */
2706 keyboard = keyboard_layout_list[0].keyboard_map;
2707 keyboard_map_all = always;
2708 dos_keyboard_layout = 1;
2710 for (i = 0; i < (sizeof (keyboard_layout_list)/sizeof (struct keyboard_layout_list)); i++)
2711 if (code == keyboard_layout_list[i].country_code)
2713 keyboard = keyboard_layout_list[i].keyboard_map;
2714 keyboard_map_all = always;
2715 dos_keyboard_layout = code;
2716 return 1;
2718 return 0;
2721 static struct
2723 unsigned char char_code; /* normal code */
2724 unsigned char meta_code; /* M- code */
2725 unsigned char keypad_code; /* keypad code */
2726 unsigned char editkey_code; /* edit key */
2727 } keypad_translate_map[] = {
2728 '0', '0', 0xb0, /* kp-0 */ 0x63, /* insert */
2729 '1', '1', 0xb1, /* kp-1 */ 0x57, /* end */
2730 '2', '2', 0xb2, /* kp-2 */ 0x54, /* down */
2731 '3', '3', 0xb3, /* kp-3 */ 0x56, /* next */
2732 '4', '4', 0xb4, /* kp-4 */ 0x51, /* left */
2733 '5', '5', 0xb5, /* kp-5 */ 0xb5, /* kp-5 */
2734 '6', '6', 0xb6, /* kp-6 */ 0x53, /* right */
2735 '7', '7', 0xb7, /* kp-7 */ 0x50, /* home */
2736 '8', '8', 0xb8, /* kp-8 */ 0x52, /* up */
2737 '9', '9', 0xb9, /* kp-9 */ 0x55, /* prior */
2738 '.', '-', 0xae, /* kp-decimal */ 0xff /* delete */
2741 static struct
2743 unsigned char char_code; /* normal code */
2744 unsigned char keypad_code; /* keypad code */
2745 } grey_key_translate_map[] = {
2746 '/', 0xaf, /* kp-decimal */
2747 '*', 0xaa, /* kp-multiply */
2748 '-', 0xad, /* kp-subtract */
2749 '+', 0xab, /* kp-add */
2750 '\r', 0x8d /* kp-enter */
2753 static unsigned short
2754 ibmpc_translate_map[] =
2756 /* --------------- 00 to 0f --------------- */
2757 Normal | 0xff, /* Ctrl Break + Alt-NNN */
2758 Alt | ModFct | 0x1b, /* Escape */
2759 Normal | 1, /* '1' */
2760 Normal | 2, /* '2' */
2761 Normal | 3, /* '3' */
2762 Normal | 4, /* '4' */
2763 Normal | 5, /* '5' */
2764 Normal | 6, /* '6' */
2765 Normal | 7, /* '7' */
2766 Normal | 8, /* '8' */
2767 Normal | 9, /* '9' */
2768 Normal | 10, /* '0' */
2769 Normal | 11, /* '-' */
2770 Normal | 12, /* '=' */
2771 Special | 0x08, /* Backspace */
2772 ModFct | 0x74, /* Tab/Backtab */
2774 /* --------------- 10 to 1f --------------- */
2775 Map | 15, /* 'q' */
2776 Map | 16, /* 'w' */
2777 Map | 17, /* 'e' */
2778 Map | 18, /* 'r' */
2779 Map | 19, /* 't' */
2780 Map | 20, /* 'y' */
2781 Map | 21, /* 'u' */
2782 Map | 22, /* 'i' */
2783 Map | 23, /* 'o' */
2784 Map | 24, /* 'p' */
2785 Map | 25, /* '[' */
2786 Map | 26, /* ']' */
2787 ModFct | 0x0d, /* Return */
2788 Ignore, /* Ctrl */
2789 Map | 30, /* 'a' */
2790 Map | 31, /* 's' */
2792 /* --------------- 20 to 2f --------------- */
2793 Map | 32, /* 'd' */
2794 Map | 33, /* 'f' */
2795 Map | 34, /* 'g' */
2796 Map | 35, /* 'h' */
2797 Map | 36, /* 'j' */
2798 Map | 37, /* 'k' */
2799 Map | 38, /* 'l' */
2800 Map | 39, /* ';' */
2801 Map | 40, /* '\'' */
2802 Map | 0, /* '`' */
2803 Ignore, /* Left shift */
2804 Map | 41, /* '\\' */
2805 Map | 45, /* 'z' */
2806 Map | 46, /* 'x' */
2807 Map | 47, /* 'c' */
2808 Map | 48, /* 'v' */
2810 /* --------------- 30 to 3f --------------- */
2811 Map | 49, /* 'b' */
2812 Map | 50, /* 'n' */
2813 Map | 51, /* 'm' */
2814 Map | 52, /* ',' */
2815 Map | 53, /* '.' */
2816 Map | 54, /* '/' */
2817 Ignore, /* Right shift */
2818 Grey | 1, /* Grey * */
2819 Ignore, /* Alt */
2820 Normal | 55, /* ' ' */
2821 Ignore, /* Caps Lock */
2822 FctKey | 0xbe, /* F1 */
2823 FctKey | 0xbf, /* F2 */
2824 FctKey | 0xc0, /* F3 */
2825 FctKey | 0xc1, /* F4 */
2826 FctKey | 0xc2, /* F5 */
2828 /* --------------- 40 to 4f --------------- */
2829 FctKey | 0xc3, /* F6 */
2830 FctKey | 0xc4, /* F7 */
2831 FctKey | 0xc5, /* F8 */
2832 FctKey | 0xc6, /* F9 */
2833 FctKey | 0xc7, /* F10 */
2834 Ignore, /* Num Lock */
2835 Ignore, /* Scroll Lock */
2836 KeyPad | 7, /* Home */
2837 KeyPad | 8, /* Up */
2838 KeyPad | 9, /* Page Up */
2839 Grey | 2, /* Grey - */
2840 KeyPad | 4, /* Left */
2841 KeyPad | 5, /* Keypad 5 */
2842 KeyPad | 6, /* Right */
2843 Grey | 3, /* Grey + */
2844 KeyPad | 1, /* End */
2846 /* --------------- 50 to 5f --------------- */
2847 KeyPad | 2, /* Down */
2848 KeyPad | 3, /* Page Down */
2849 KeyPad | 0, /* Insert */
2850 KeyPad | 10, /* Delete */
2851 Shift | FctKey | 0xbe, /* (Shift) F1 */
2852 Shift | FctKey | 0xbf, /* (Shift) F2 */
2853 Shift | FctKey | 0xc0, /* (Shift) F3 */
2854 Shift | FctKey | 0xc1, /* (Shift) F4 */
2855 Shift | FctKey | 0xc2, /* (Shift) F5 */
2856 Shift | FctKey | 0xc3, /* (Shift) F6 */
2857 Shift | FctKey | 0xc4, /* (Shift) F7 */
2858 Shift | FctKey | 0xc5, /* (Shift) F8 */
2859 Shift | FctKey | 0xc6, /* (Shift) F9 */
2860 Shift | FctKey | 0xc7, /* (Shift) F10 */
2861 Ctrl | FctKey | 0xbe, /* (Ctrl) F1 */
2862 Ctrl | FctKey | 0xbf, /* (Ctrl) F2 */
2864 /* --------------- 60 to 6f --------------- */
2865 Ctrl | FctKey | 0xc0, /* (Ctrl) F3 */
2866 Ctrl | FctKey | 0xc1, /* (Ctrl) F4 */
2867 Ctrl | FctKey | 0xc2, /* (Ctrl) F5 */
2868 Ctrl | FctKey | 0xc3, /* (Ctrl) F6 */
2869 Ctrl | FctKey | 0xc4, /* (Ctrl) F7 */
2870 Ctrl | FctKey | 0xc5, /* (Ctrl) F8 */
2871 Ctrl | FctKey | 0xc6, /* (Ctrl) F9 */
2872 Ctrl | FctKey | 0xc7, /* (Ctrl) F10 */
2873 Alt | FctKey | 0xbe, /* (Alt) F1 */
2874 Alt | FctKey | 0xbf, /* (Alt) F2 */
2875 Alt | FctKey | 0xc0, /* (Alt) F3 */
2876 Alt | FctKey | 0xc1, /* (Alt) F4 */
2877 Alt | FctKey | 0xc2, /* (Alt) F5 */
2878 Alt | FctKey | 0xc3, /* (Alt) F6 */
2879 Alt | FctKey | 0xc4, /* (Alt) F7 */
2880 Alt | FctKey | 0xc5, /* (Alt) F8 */
2882 /* --------------- 70 to 7f --------------- */
2883 Alt | FctKey | 0xc6, /* (Alt) F9 */
2884 Alt | FctKey | 0xc7, /* (Alt) F10 */
2885 Ctrl | FctKey | 0x6d, /* (Ctrl) Sys Rq */
2886 Ctrl | KeyPad | 4, /* (Ctrl) Left */
2887 Ctrl | KeyPad | 6, /* (Ctrl) Right */
2888 Ctrl | KeyPad | 1, /* (Ctrl) End */
2889 Ctrl | KeyPad | 3, /* (Ctrl) Page Down */
2890 Ctrl | KeyPad | 7, /* (Ctrl) Home */
2891 Alt | Map | 1, /* '1' */
2892 Alt | Map | 2, /* '2' */
2893 Alt | Map | 3, /* '3' */
2894 Alt | Map | 4, /* '4' */
2895 Alt | Map | 5, /* '5' */
2896 Alt | Map | 6, /* '6' */
2897 Alt | Map | 7, /* '7' */
2898 Alt | Map | 8, /* '8' */
2900 /* --------------- 80 to 8f --------------- */
2901 Alt | Map | 9, /* '9' */
2902 Alt | Map | 10, /* '0' */
2903 Alt | Map | 11, /* '-' */
2904 Alt | Map | 12, /* '=' */
2905 Ctrl | KeyPad | 9, /* (Ctrl) Page Up */
2906 FctKey | 0xc8, /* F11 */
2907 FctKey | 0xc9, /* F12 */
2908 Shift | FctKey | 0xc8, /* (Shift) F11 */
2909 Shift | FctKey | 0xc9, /* (Shift) F12 */
2910 Ctrl | FctKey | 0xc8, /* (Ctrl) F11 */
2911 Ctrl | FctKey | 0xc9, /* (Ctrl) F12 */
2912 Alt | FctKey | 0xc8, /* (Alt) F11 */
2913 Alt | FctKey | 0xc9, /* (Alt) F12 */
2914 Ctrl | KeyPad | 8, /* (Ctrl) Up */
2915 Ctrl | Grey | 2, /* (Ctrl) Grey - */
2916 Ctrl | KeyPad | 5, /* (Ctrl) Keypad 5 */
2918 /* --------------- 90 to 9f --------------- */
2919 Ctrl | Grey | 3, /* (Ctrl) Grey + */
2920 Ctrl | KeyPad | 2, /* (Ctrl) Down */
2921 Ctrl | KeyPad | 0, /* (Ctrl) Insert */
2922 Ctrl | KeyPad | 10, /* (Ctrl) Delete */
2923 Ctrl | FctKey | 0x09, /* (Ctrl) Tab */
2924 Ctrl | Grey | 0, /* (Ctrl) Grey / */
2925 Ctrl | Grey | 1, /* (Ctrl) Grey * */
2926 Alt | FctKey | 0x50, /* (Alt) Home */
2927 Alt | FctKey | 0x52, /* (Alt) Up */
2928 Alt | FctKey | 0x55, /* (Alt) Page Up */
2929 Ignore, /* NO KEY */
2930 Alt | FctKey | 0x51, /* (Alt) Left */
2931 Ignore, /* NO KEY */
2932 Alt | FctKey | 0x53, /* (Alt) Right */
2933 Ignore, /* NO KEY */
2934 Alt | FctKey | 0x57, /* (Alt) End */
2936 /* --------------- a0 to af --------------- */
2937 Alt | KeyPad | 2, /* (Alt) Down */
2938 Alt | KeyPad | 3, /* (Alt) Page Down */
2939 Alt | KeyPad | 0, /* (Alt) Insert */
2940 Alt | KeyPad | 10, /* (Alt) Delete */
2941 Alt | Grey | 0, /* (Alt) Grey / */
2942 Alt | FctKey | 0x09, /* (Alt) Tab */
2943 Alt | Grey | 4 /* (Alt) Keypad Enter */
2946 /* These bit-positions corresponds to values returned by BIOS */
2947 #define SHIFT_P 0x0003 /* two bits! */
2948 #define CTRL_P 0x0004
2949 #define ALT_P 0x0008
2950 #define SCRLOCK_P 0x0010
2951 #define NUMLOCK_P 0x0020
2952 #define CAPSLOCK_P 0x0040
2953 #define ALT_GR_P 0x0800
2954 #define SUPER_P 0x4000 /* pseudo */
2955 #define HYPER_P 0x8000 /* pseudo */
2957 static int
2958 dos_get_modifiers (keymask)
2959 int *keymask;
2961 union REGS regs;
2962 int mask;
2963 int modifiers = 0;
2965 /* Calculate modifier bits */
2966 regs.h.ah = extended_kbd ? 0x12 : 0x02;
2967 int86 (0x16, &regs, &regs);
2969 if (!extended_kbd)
2971 mask = regs.h.al & (SHIFT_P | CTRL_P | ALT_P |
2972 SCRLOCK_P | NUMLOCK_P | CAPSLOCK_P);
2974 else
2976 mask = regs.h.al & (SHIFT_P |
2977 SCRLOCK_P | NUMLOCK_P | CAPSLOCK_P);
2979 /* Do not break international keyboard support. */
2980 /* When Keyb.Com is loaded, the right Alt key is */
2981 /* used for accessing characters like { and } */
2982 if (regs.h.ah & 2) /* Left ALT pressed ? */
2983 mask |= ALT_P;
2985 if ((regs.h.ah & 8) != 0) /* Right ALT pressed ? */
2987 mask |= ALT_GR_P;
2988 if (dos_hyper_key == 1)
2990 mask |= HYPER_P;
2991 modifiers |= hyper_modifier;
2993 else if (dos_super_key == 1)
2995 mask |= SUPER_P;
2996 modifiers |= super_modifier;
2998 else if (!international_keyboard)
3000 /* If Keyb.Com is NOT installed, let Right Alt behave
3001 like the Left Alt. */
3002 mask &= ~ALT_GR_P;
3003 mask |= ALT_P;
3007 if (regs.h.ah & 1) /* Left CTRL pressed ? */
3008 mask |= CTRL_P;
3010 if (regs.h.ah & 4) /* Right CTRL pressed ? */
3012 if (dos_hyper_key == 2)
3014 mask |= HYPER_P;
3015 modifiers |= hyper_modifier;
3017 else if (dos_super_key == 2)
3019 mask |= SUPER_P;
3020 modifiers |= super_modifier;
3022 else
3023 mask |= CTRL_P;
3027 if (mask & SHIFT_P)
3028 modifiers |= shift_modifier;
3029 if (mask & CTRL_P)
3030 modifiers |= ctrl_modifier;
3031 if (mask & ALT_P)
3032 modifiers |= meta_modifier;
3034 if (keymask)
3035 *keymask = mask;
3036 return modifiers;
3039 #define NUM_RECENT_DOSKEYS (100)
3040 int recent_doskeys_index; /* Index for storing next element into recent_doskeys */
3041 int total_doskeys; /* Total number of elements stored into recent_doskeys */
3042 Lisp_Object recent_doskeys; /* A vector, holding the last 100 keystrokes */
3044 DEFUN ("recent-doskeys", Frecent_doskeys, Srecent_doskeys, 0, 0, 0,
3045 "Return vector of last 100 keyboard input values seen in dos_rawgetc.\n\
3046 Each input key receives two values in this vector: first the ASCII code,\n\
3047 and then the scan code.")
3050 Lisp_Object *keys = XVECTOR (recent_doskeys)->contents;
3051 Lisp_Object val;
3053 if (total_doskeys < NUM_RECENT_DOSKEYS)
3054 return Fvector (total_doskeys, keys);
3055 else
3057 val = Fvector (NUM_RECENT_DOSKEYS, keys);
3058 bcopy (keys + recent_doskeys_index,
3059 XVECTOR (val)->contents,
3060 (NUM_RECENT_DOSKEYS - recent_doskeys_index) * sizeof (Lisp_Object));
3061 bcopy (keys,
3062 XVECTOR (val)->contents + NUM_RECENT_DOSKEYS - recent_doskeys_index,
3063 recent_doskeys_index * sizeof (Lisp_Object));
3064 return val;
3068 /* Get a char from keyboard. Function keys are put into the event queue. */
3070 extern void kbd_buffer_store_event (struct input_event *);
3072 static int
3073 dos_rawgetc ()
3075 struct input_event event;
3076 union REGS regs;
3078 #ifndef HAVE_X_WINDOWS
3079 /* Maybe put the cursor where it should be. */
3080 IT_cmgoto (SELECTED_FRAME());
3081 #endif
3083 /* The following condition is equivalent to `kbhit ()', except that
3084 it uses the bios to do its job. This pleases DESQview/X. */
3085 while ((regs.h.ah = extended_kbd ? 0x11 : 0x01),
3086 int86 (0x16, &regs, &regs),
3087 (regs.x.flags & 0x40) == 0)
3089 union REGS regs;
3090 register unsigned char c;
3091 int sc, code = -1, mask, kp_mode;
3092 int modifiers;
3094 regs.h.ah = extended_kbd ? 0x10 : 0x00;
3095 int86 (0x16, &regs, &regs);
3096 c = regs.h.al;
3097 sc = regs.h.ah;
3099 total_doskeys += 2;
3100 XVECTOR (recent_doskeys)->contents[recent_doskeys_index++]
3101 = make_number (c);
3102 if (recent_doskeys_index == NUM_RECENT_DOSKEYS)
3103 recent_doskeys_index = 0;
3104 XVECTOR (recent_doskeys)->contents[recent_doskeys_index++]
3105 = make_number (sc);
3106 if (recent_doskeys_index == NUM_RECENT_DOSKEYS)
3107 recent_doskeys_index = 0;
3109 modifiers = dos_get_modifiers (&mask);
3111 #ifndef HAVE_X_WINDOWS
3112 if (!NILP (Vdos_display_scancodes))
3114 char buf[11];
3115 sprintf (buf, "%02x:%02x*%04x",
3116 (unsigned) (sc&0xff), (unsigned) c, mask);
3117 dos_direct_output (screen_size_Y - 2, screen_size_X - 12, buf, 10);
3119 #endif
3121 if (sc == 0xe0)
3123 switch (c)
3125 case 10: /* Ctrl Grey Enter */
3126 code = Ctrl | Grey | 4;
3127 break;
3128 case 13: /* Grey Enter */
3129 code = Grey | 4;
3130 break;
3131 case '/': /* Grey / */
3132 code = Grey | 0;
3133 break;
3134 default:
3135 continue;
3137 c = 0;
3139 else
3141 /* Try the keyboard-private translation table first. */
3142 if (keyboard->translate_table)
3144 struct kbd_translate *p = keyboard->translate_table;
3146 while (p->sc)
3148 if (p->sc == sc && p->ch == c)
3150 code = p->code;
3151 break;
3153 p++;
3156 /* If the private table didn't translate it, use the general
3157 one. */
3158 if (code == -1)
3160 if (sc >= (sizeof (ibmpc_translate_map) / sizeof (short)))
3161 continue;
3162 if ((code = ibmpc_translate_map[sc]) == Ignore)
3163 continue;
3167 if (c == 0)
3169 /* We only look at the keyboard Ctrl/Shift/Alt keys when
3170 Emacs is ready to read a key. Therefore, if they press
3171 `Alt-x' when Emacs is busy, by the time we get to
3172 `dos_get_modifiers', they might have already released the
3173 Alt key, and Emacs gets just `x', which is BAD.
3174 However, for keys with the `Map' property set, the ASCII
3175 code returns zero iff Alt is pressed. So, when we DON'T
3176 have to support international_keyboard, we don't have to
3177 distinguish between the left and right Alt keys, and we
3178 can set the META modifier for any keys with the `Map'
3179 property if they return zero ASCII code (c = 0). */
3180 if ( (code & Alt)
3181 || ( (code & 0xf000) == Map && !international_keyboard))
3182 modifiers |= meta_modifier;
3183 if (code & Ctrl)
3184 modifiers |= ctrl_modifier;
3185 if (code & Shift)
3186 modifiers |= shift_modifier;
3189 switch (code & 0xf000)
3191 case ModFct:
3192 if (c && !(mask & (SHIFT_P | ALT_P | CTRL_P | HYPER_P | SUPER_P)))
3193 return c;
3194 c = 0; /* Special */
3196 case FctKey:
3197 if (c != 0)
3198 return c;
3200 case Special:
3201 code |= 0xff00;
3202 break;
3204 case Normal:
3205 if (sc == 0)
3207 if (c == 0) /* ctrl-break */
3208 continue;
3209 return c; /* ALT-nnn */
3211 if (!keyboard_map_all)
3213 if (c != ' ')
3214 return c;
3215 code = c;
3216 break;
3219 case Map:
3220 if (c && !(mask & ALT_P) && !((mask & SHIFT_P) && (mask & CTRL_P)))
3221 if (!keyboard_map_all)
3222 return c;
3224 code &= 0xff;
3225 if (mask & ALT_P && code <= 10 && code > 0 && dos_keypad_mode & 0x200)
3226 mask |= SHIFT_P; /* ALT-1 => M-! etc. */
3228 if (mask & SHIFT_P)
3230 code = keyboard->shifted[code];
3231 mask -= SHIFT_P;
3232 modifiers &= ~shift_modifier;
3234 else
3235 if ((mask & ALT_GR_P) && keyboard->alt_gr && keyboard->alt_gr[code] != ' ')
3236 code = keyboard->alt_gr[code];
3237 else
3238 code = keyboard->unshifted[code];
3239 break;
3241 case KeyPad:
3242 code &= 0xff;
3243 if (c == 0xe0) /* edit key */
3244 kp_mode = 3;
3245 else
3246 if ((mask & (NUMLOCK_P|CTRL_P|SHIFT_P|ALT_P)) == NUMLOCK_P) /* numlock on */
3247 kp_mode = dos_keypad_mode & 0x03;
3248 else
3249 kp_mode = (dos_keypad_mode >> 4) & 0x03;
3251 switch (kp_mode)
3253 case 0:
3254 if (code == 10 && dos_decimal_point)
3255 return dos_decimal_point;
3256 return keypad_translate_map[code].char_code;
3258 case 1:
3259 code = 0xff00 | keypad_translate_map[code].keypad_code;
3260 break;
3262 case 2:
3263 code = keypad_translate_map[code].meta_code;
3264 modifiers = meta_modifier;
3265 break;
3267 case 3:
3268 code = 0xff00 | keypad_translate_map[code].editkey_code;
3269 break;
3271 break;
3273 case Grey:
3274 code &= 0xff;
3275 kp_mode = ((mask & (NUMLOCK_P|CTRL_P|SHIFT_P|ALT_P)) == NUMLOCK_P) ? 0x04 : 0x40;
3276 if (dos_keypad_mode & kp_mode)
3277 code = 0xff00 | grey_key_translate_map[code].keypad_code;
3278 else
3279 code = grey_key_translate_map[code].char_code;
3280 break;
3283 make_event:
3284 if (code == 0)
3285 continue;
3287 if (code >= 0x100)
3288 event.kind = non_ascii_keystroke;
3289 else
3290 event.kind = ascii_keystroke;
3291 event.code = code;
3292 event.modifiers = modifiers;
3293 event.frame_or_window = selected_frame;
3294 event.arg = Qnil;
3295 event.timestamp = event_timestamp ();
3296 kbd_buffer_store_event (&event);
3299 if (have_mouse > 0 && !mouse_preempted)
3301 int but, press, x, y, ok;
3302 int mouse_prev_x = mouse_last_x, mouse_prev_y = mouse_last_y;
3304 /* Check for mouse movement *before* buttons. */
3305 mouse_check_moved ();
3307 /* If the mouse moved from the spot of its last sighting, we
3308 might need to update mouse highlight. */
3309 if (mouse_last_x != mouse_prev_x || mouse_last_y != mouse_prev_y)
3311 previous_help_echo = help_echo;
3312 help_echo = help_echo_object = help_echo_window = Qnil;
3313 help_echo_pos = -1;
3314 IT_note_mouse_highlight (SELECTED_FRAME(),
3315 mouse_last_x, mouse_last_y);
3316 /* If the contents of the global variable help_echo has
3317 changed, generate a HELP_EVENT. */
3318 if (!NILP (help_echo) || !NILP (previous_help_echo))
3320 /* HELP_EVENT takes 2 events in the event loop. */
3321 event.kind = HELP_EVENT;
3322 event.frame_or_window = selected_frame;
3323 event.arg = help_echo_object;
3324 event.x = make_number (help_echo_pos);
3325 event.timestamp = event_timestamp ();
3326 event.code = 0;
3327 kbd_buffer_store_event (&event);
3328 if (WINDOWP (help_echo_window))
3329 event.frame_or_window = help_echo_window;
3330 event.arg = help_echo;
3331 event.code = 1;
3332 kbd_buffer_store_event (&event);
3336 for (but = 0; but < NUM_MOUSE_BUTTONS; but++)
3337 for (press = 0; press < 2; press++)
3339 int button_num = but;
3341 if (press)
3342 ok = mouse_pressed (but, &x, &y);
3343 else
3344 ok = mouse_released (but, &x, &y);
3345 if (ok)
3347 /* Allow a simultaneous press/release of Mouse-1 and
3348 Mouse-2 to simulate Mouse-3 on two-button mice. */
3349 if (mouse_button_count == 2 && but < 2)
3351 int x2, y2; /* don't clobber original coordinates */
3353 /* If only one button is pressed, wait 100 msec and
3354 check again. This way, Speedy Gonzales isn't
3355 punished, while the slow get their chance. */
3356 if (press && mouse_pressed (1-but, &x2, &y2)
3357 || !press && mouse_released (1-but, &x2, &y2))
3358 button_num = 2;
3359 else
3361 delay (100);
3362 if (press && mouse_pressed (1-but, &x2, &y2)
3363 || !press && mouse_released (1-but, &x2, &y2))
3364 button_num = 2;
3368 event.kind = mouse_click;
3369 event.code = button_num;
3370 event.modifiers = dos_get_modifiers (0)
3371 | (press ? down_modifier : up_modifier);
3372 event.x = x;
3373 event.y = y;
3374 event.frame_or_window = selected_frame;
3375 event.arg = Qnil;
3376 event.timestamp = event_timestamp ();
3377 kbd_buffer_store_event (&event);
3382 return -1;
3385 static int prev_get_char = -1;
3387 /* Return 1 if a key is ready to be read without suspending execution. */
3389 dos_keysns ()
3391 if (prev_get_char != -1)
3392 return 1;
3393 else
3394 return ((prev_get_char = dos_rawgetc ()) != -1);
3397 /* Read a key. Return -1 if no key is ready. */
3399 dos_keyread ()
3401 if (prev_get_char != -1)
3403 int c = prev_get_char;
3404 prev_get_char = -1;
3405 return c;
3407 else
3408 return dos_rawgetc ();
3411 #ifndef HAVE_X_WINDOWS
3412 /* See xterm.c for more info. */
3413 void
3414 pixel_to_glyph_coords (f, pix_x, pix_y, x, y, bounds, noclip)
3415 FRAME_PTR f;
3416 register int pix_x, pix_y;
3417 register int *x, *y;
3418 XRectangle *bounds;
3419 int noclip;
3421 if (bounds) abort ();
3423 /* Ignore clipping. */
3425 *x = pix_x;
3426 *y = pix_y;
3429 void
3430 glyph_to_pixel_coords (f, x, y, pix_x, pix_y)
3431 FRAME_PTR f;
3432 register int x, y;
3433 register int *pix_x, *pix_y;
3435 *pix_x = x;
3436 *pix_y = y;
3439 /* Simulation of X's menus. Nothing too fancy here -- just make it work
3440 for now.
3442 Actually, I don't know the meaning of all the parameters of the functions
3443 here -- I only know how they are called by xmenu.c. I could of course
3444 grab the nearest Xlib manual (down the hall, second-to-last door on the
3445 left), but I don't think it's worth the effort. */
3447 /* These hold text of the current and the previous menu help messages. */
3448 static char *menu_help_message, *prev_menu_help_message;
3449 /* Pane number and item number of the menu item which generated the
3450 last menu help message. */
3451 static int menu_help_paneno, menu_help_itemno;
3453 static XMenu *
3454 IT_menu_create ()
3456 XMenu *menu;
3458 menu = (XMenu *) xmalloc (sizeof (XMenu));
3459 menu->allocated = menu->count = menu->panecount = menu->width = 0;
3460 return menu;
3463 /* Allocate some (more) memory for MENU ensuring that there is room for one
3464 for item. */
3466 static void
3467 IT_menu_make_room (XMenu *menu)
3469 if (menu->allocated == 0)
3471 int count = menu->allocated = 10;
3472 menu->text = (char **) xmalloc (count * sizeof (char *));
3473 menu->submenu = (XMenu **) xmalloc (count * sizeof (XMenu *));
3474 menu->panenumber = (int *) xmalloc (count * sizeof (int));
3475 menu->help_text = (char **) xmalloc (count * sizeof (char *));
3477 else if (menu->allocated == menu->count)
3479 int count = menu->allocated = menu->allocated + 10;
3480 menu->text
3481 = (char **) xrealloc (menu->text, count * sizeof (char *));
3482 menu->submenu
3483 = (XMenu **) xrealloc (menu->submenu, count * sizeof (XMenu *));
3484 menu->panenumber
3485 = (int *) xrealloc (menu->panenumber, count * sizeof (int));
3486 menu->help_text
3487 = (char **) xrealloc (menu->help_text, count * sizeof (char *));
3491 /* Search the given menu structure for a given pane number. */
3493 static XMenu *
3494 IT_menu_search_pane (XMenu *menu, int pane)
3496 int i;
3497 XMenu *try;
3499 for (i = 0; i < menu->count; i++)
3500 if (menu->submenu[i])
3502 if (pane == menu->panenumber[i])
3503 return menu->submenu[i];
3504 if ((try = IT_menu_search_pane (menu->submenu[i], pane)))
3505 return try;
3507 return (XMenu *) 0;
3510 /* Determine how much screen space a given menu needs. */
3512 static void
3513 IT_menu_calc_size (XMenu *menu, int *width, int *height)
3515 int i, h2, w2, maxsubwidth, maxheight;
3517 maxsubwidth = 0;
3518 maxheight = menu->count;
3519 for (i = 0; i < menu->count; i++)
3521 if (menu->submenu[i])
3523 IT_menu_calc_size (menu->submenu[i], &w2, &h2);
3524 if (w2 > maxsubwidth) maxsubwidth = w2;
3525 if (i + h2 > maxheight) maxheight = i + h2;
3528 *width = menu->width + maxsubwidth;
3529 *height = maxheight;
3532 /* Display MENU at (X,Y) using FACES. */
3534 static void
3535 IT_menu_display (XMenu *menu, int y, int x, int pn, int *faces, int disp_help)
3537 int i, j, face, width;
3538 struct glyph *text, *p;
3539 char *q;
3540 int mx, my;
3541 int enabled, mousehere;
3542 int row, col;
3543 struct frame *sf = SELECTED_FRAME();
3545 menu_help_message = NULL;
3547 width = menu->width;
3548 text = (struct glyph *) xmalloc ((width + 2) * sizeof (struct glyph));
3549 ScreenGetCursor (&row, &col);
3550 mouse_get_xy (&mx, &my);
3551 IT_update_begin (sf);
3552 for (i = 0; i < menu->count; i++)
3554 int max_width = width + 2;
3556 IT_cursor_to (y + i, x);
3557 enabled
3558 = (!menu->submenu[i] && menu->panenumber[i]) || (menu->submenu[i]);
3559 mousehere = (y + i == my && x <= mx && mx < x + width + 2);
3560 face = faces[enabled + mousehere * 2];
3561 /* The following if clause means that we display the menu help
3562 strings even if the menu item is currently disabled. */
3563 if (disp_help && enabled + mousehere * 2 >= 2)
3565 menu_help_message = menu->help_text[i];
3566 menu_help_paneno = pn - 1;
3567 menu_help_itemno = i;
3569 p = text;
3570 SET_CHAR_GLYPH (*p, ' ', face, 0);
3571 p++;
3572 for (j = 0, q = menu->text[i]; *q; j++)
3574 if (*q > 26)
3576 SET_CHAR_GLYPH (*p, *q++, face, 0);
3577 p++;
3579 else /* make '^x' */
3581 SET_CHAR_GLYPH (*p, '^', face, 0);
3582 p++;
3583 j++;
3584 SET_CHAR_GLYPH (*p, *q++ + 64, face, 0);
3585 p++;
3588 /* Don't let the menu text overflow into the next screen row. */
3589 if (x + max_width > screen_size_X)
3591 max_width = screen_size_X - x;
3592 text[max_width - 1].u.ch = '$'; /* indicate it's truncated */
3594 for (; j < max_width - 2; j++, p++)
3595 SET_CHAR_GLYPH (*p, ' ', face, 0);
3597 SET_CHAR_GLYPH (*p, menu->submenu[i] ? 16 : ' ', face, 0);
3598 p++;
3599 IT_write_glyphs (text, max_width);
3601 IT_update_end (sf);
3602 IT_cursor_to (row, col);
3603 xfree (text);
3606 /* --------------------------- X Menu emulation ---------------------- */
3608 /* Report availability of menus. */
3611 have_menus_p ()
3613 return 1;
3616 /* Create a brand new menu structure. */
3618 XMenu *
3619 XMenuCreate (Display *foo1, Window foo2, char *foo3)
3621 return IT_menu_create ();
3624 /* Create a new pane and place it on the outer-most level. It is not
3625 clear that it should be placed out there, but I don't know what else
3626 to do. */
3629 XMenuAddPane (Display *foo, XMenu *menu, char *txt, int enable)
3631 int len;
3632 char *p;
3634 if (!enable)
3635 abort ();
3637 IT_menu_make_room (menu);
3638 menu->submenu[menu->count] = IT_menu_create ();
3639 menu->text[menu->count] = txt;
3640 menu->panenumber[menu->count] = ++menu->panecount;
3641 menu->help_text[menu->count] = NULL;
3642 menu->count++;
3644 /* Adjust length for possible control characters (which will
3645 be written as ^x). */
3646 for (len = strlen (txt), p = txt; *p; p++)
3647 if (*p < 27)
3648 len++;
3650 if (len > menu->width)
3651 menu->width = len;
3653 return menu->panecount;
3656 /* Create a new item in a menu pane. */
3659 XMenuAddSelection (Display *bar, XMenu *menu, int pane,
3660 int foo, char *txt, int enable, char *help_text)
3662 int len;
3663 char *p;
3665 if (pane)
3666 if (!(menu = IT_menu_search_pane (menu, pane)))
3667 return XM_FAILURE;
3668 IT_menu_make_room (menu);
3669 menu->submenu[menu->count] = (XMenu *) 0;
3670 menu->text[menu->count] = txt;
3671 menu->panenumber[menu->count] = enable;
3672 menu->help_text[menu->count] = help_text;
3673 menu->count++;
3675 /* Adjust length for possible control characters (which will
3676 be written as ^x). */
3677 for (len = strlen (txt), p = txt; *p; p++)
3678 if (*p < 27)
3679 len++;
3681 if (len > menu->width)
3682 menu->width = len;
3684 return XM_SUCCESS;
3687 /* Decide where the menu would be placed if requested at (X,Y). */
3689 void
3690 XMenuLocate (Display *foo0, XMenu *menu, int foo1, int foo2, int x, int y,
3691 int *ulx, int *uly, int *width, int *height)
3693 IT_menu_calc_size (menu, width, height);
3694 *ulx = x + 1;
3695 *uly = y;
3696 *width += 2;
3699 struct IT_menu_state
3701 void *screen_behind;
3702 XMenu *menu;
3703 int pane;
3704 int x, y;
3708 /* Display menu, wait for user's response, and return that response. */
3711 XMenuActivate (Display *foo, XMenu *menu, int *pane, int *selidx,
3712 int x0, int y0, unsigned ButtonMask, char **txt,
3713 void (*help_callback)(char *, int, int))
3715 struct IT_menu_state *state;
3716 int statecount;
3717 int x, y, i, b;
3718 int screensize;
3719 int faces[4];
3720 Lisp_Object selectface;
3721 int leave, result, onepane;
3722 int title_faces[4]; /* face to display the menu title */
3723 int buffers_num_deleted = 0;
3724 struct frame *sf = SELECTED_FRAME();
3725 Lisp_Object saved_echo_area_message;
3727 /* Just in case we got here without a mouse present... */
3728 if (have_mouse <= 0)
3729 return XM_IA_SELECT;
3730 /* Don't allow non-positive x0 and y0, lest the menu will wrap
3731 around the display. */
3732 if (x0 <= 0)
3733 x0 = 1;
3734 if (y0 <= 0)
3735 y0 = 1;
3737 /* We will process all the mouse events directly, so we had
3738 better prevent dos_rawgetc from stealing them from us. */
3739 mouse_preempted++;
3741 state = alloca (menu->panecount * sizeof (struct IT_menu_state));
3742 screensize = screen_size * 2;
3743 faces[0]
3744 = lookup_derived_face (sf, intern ("msdos-menu-passive-face"),
3745 0, DEFAULT_FACE_ID);
3746 faces[1]
3747 = lookup_derived_face (sf, intern ("msdos-menu-active-face"),
3748 0, DEFAULT_FACE_ID);
3749 selectface = intern ("msdos-menu-select-face");
3750 faces[2] = lookup_derived_face (sf, selectface,
3751 0, faces[0]);
3752 faces[3] = lookup_derived_face (sf, selectface,
3753 0, faces[1]);
3755 /* Make sure the menu title is always displayed with
3756 `msdos-menu-active-face', no matter where the mouse pointer is. */
3757 for (i = 0; i < 4; i++)
3758 title_faces[i] = faces[3];
3760 statecount = 1;
3762 /* Don't let the title for the "Buffers" popup menu include a
3763 digit (which is ugly).
3765 This is a terrible kludge, but I think the "Buffers" case is
3766 the only one where the title includes a number, so it doesn't
3767 seem to be necessary to make this more general. */
3768 if (strncmp (menu->text[0], "Buffers 1", 9) == 0)
3770 menu->text[0][7] = '\0';
3771 buffers_num_deleted = 1;
3774 /* We need to save the current echo area message, so that we could
3775 restore it below, before we exit. See the commentary below,
3776 before the call to message_with_string. */
3777 saved_echo_area_message = Fcurrent_message ();
3778 state[0].menu = menu;
3779 mouse_off ();
3780 ScreenRetrieve (state[0].screen_behind = xmalloc (screensize));
3782 /* Turn off the cursor. Otherwise it shows through the menu
3783 panes, which is ugly. */
3784 IT_display_cursor (0);
3786 /* Display the menu title. */
3787 IT_menu_display (menu, y0 - 1, x0 - 1, 1, title_faces, 0);
3788 if (buffers_num_deleted)
3789 menu->text[0][7] = ' ';
3790 if ((onepane = menu->count == 1 && menu->submenu[0]))
3792 menu->width = menu->submenu[0]->width;
3793 state[0].menu = menu->submenu[0];
3795 else
3797 state[0].menu = menu;
3799 state[0].x = x0 - 1;
3800 state[0].y = y0;
3801 state[0].pane = onepane;
3803 mouse_last_x = -1; /* A hack that forces display. */
3804 leave = 0;
3805 while (!leave)
3807 if (!mouse_visible) mouse_on ();
3808 mouse_check_moved ();
3809 if (sf->mouse_moved)
3811 sf->mouse_moved = 0;
3812 result = XM_IA_SELECT;
3813 mouse_get_xy (&x, &y);
3814 for (i = 0; i < statecount; i++)
3815 if (state[i].x <= x && x < state[i].x + state[i].menu->width + 2)
3817 int dy = y - state[i].y;
3818 if (0 <= dy && dy < state[i].menu->count)
3820 if (!state[i].menu->submenu[dy])
3821 if (state[i].menu->panenumber[dy])
3822 result = XM_SUCCESS;
3823 else
3824 result = XM_IA_SELECT;
3825 *pane = state[i].pane - 1;
3826 *selidx = dy;
3827 /* We hit some part of a menu, so drop extra menus that
3828 have been opened. That does not include an open and
3829 active submenu. */
3830 if (i != statecount - 2
3831 || state[i].menu->submenu[dy] != state[i+1].menu)
3832 while (i != statecount - 1)
3834 statecount--;
3835 mouse_off ();
3836 ScreenUpdate (state[statecount].screen_behind);
3837 if (screen_virtual_segment)
3838 dosv_refresh_virtual_screen (0, screen_size);
3839 xfree (state[statecount].screen_behind);
3841 if (i == statecount - 1 && state[i].menu->submenu[dy])
3843 IT_menu_display (state[i].menu,
3844 state[i].y,
3845 state[i].x,
3846 state[i].pane,
3847 faces, 1);
3848 state[statecount].menu = state[i].menu->submenu[dy];
3849 state[statecount].pane = state[i].menu->panenumber[dy];
3850 mouse_off ();
3851 ScreenRetrieve (state[statecount].screen_behind
3852 = xmalloc (screensize));
3853 state[statecount].x
3854 = state[i].x + state[i].menu->width + 2;
3855 state[statecount].y = y;
3856 statecount++;
3860 IT_menu_display (state[statecount - 1].menu,
3861 state[statecount - 1].y,
3862 state[statecount - 1].x,
3863 state[statecount - 1].pane,
3864 faces, 1);
3866 else
3868 if ((menu_help_message || prev_menu_help_message)
3869 && menu_help_message != prev_menu_help_message)
3871 help_callback (menu_help_message,
3872 menu_help_paneno, menu_help_itemno);
3873 IT_display_cursor (0);
3874 prev_menu_help_message = menu_help_message;
3876 /* We are busy-waiting for the mouse to move, so let's be nice
3877 to other Windows applications by releasing our time slice. */
3878 __dpmi_yield ();
3880 for (b = 0; b < mouse_button_count && !leave; b++)
3882 /* Only leave if user both pressed and released the mouse, and in
3883 that order. This avoids popping down the menu pane unless
3884 the user is really done with it. */
3885 if (mouse_pressed (b, &x, &y))
3887 while (mouse_button_depressed (b, &x, &y))
3888 __dpmi_yield ();
3889 leave = 1;
3891 (void) mouse_released (b, &x, &y);
3895 mouse_off ();
3896 ScreenUpdate (state[0].screen_behind);
3897 if (screen_virtual_segment)
3898 dosv_refresh_virtual_screen (0, screen_size);
3900 /* We have a situation here. ScreenUpdate has just restored the
3901 screen contents as it was before we started drawing this menu.
3902 That includes any echo area message that could have been
3903 displayed back then. (In reality, that echo area message will
3904 almost always be the ``keystroke echo'' that echoes the sequence
3905 of menu items chosen by the user.) However, if the menu had some
3906 help messages, then displaying those messages caused Emacs to
3907 forget about the original echo area message. So when
3908 ScreenUpdate restored it, it created a discrepancy between the
3909 actual screen contents and what Emacs internal data structures
3910 know about it.
3912 To avoid this conflict, we force Emacs to restore the original
3913 echo area message as we found it when we entered this function.
3914 The irony of this is that we then erase the restored message
3915 right away, so the only purpose of restoring it is so that
3916 erasing it works correctly... */
3917 if (! NILP (saved_echo_area_message))
3918 message_with_string ("%s", saved_echo_area_message, 0);
3919 message (0);
3920 while (statecount--)
3921 xfree (state[statecount].screen_behind);
3922 IT_display_cursor (1); /* turn cursor back on */
3923 /* Clean up any mouse events that are waiting inside Emacs event queue.
3924 These events are likely to be generated before the menu was even
3925 displayed, probably because the user pressed and released the button
3926 (which invoked the menu) too quickly. If we don't remove these events,
3927 Emacs will process them after we return and surprise the user. */
3928 discard_mouse_events ();
3929 mouse_clear_clicks ();
3930 if (!kbd_buffer_events_waiting (1))
3931 clear_input_pending ();
3932 /* Allow mouse events generation by dos_rawgetc. */
3933 mouse_preempted--;
3934 return result;
3937 /* Dispose of a menu. */
3939 void
3940 XMenuDestroy (Display *foo, XMenu *menu)
3942 int i;
3943 if (menu->allocated)
3945 for (i = 0; i < menu->count; i++)
3946 if (menu->submenu[i])
3947 XMenuDestroy (foo, menu->submenu[i]);
3948 xfree (menu->text);
3949 xfree (menu->submenu);
3950 xfree (menu->panenumber);
3951 xfree (menu->help_text);
3953 xfree (menu);
3954 menu_help_message = prev_menu_help_message = NULL;
3958 x_pixel_width (struct frame *f)
3960 return FRAME_WIDTH (f);
3964 x_pixel_height (struct frame *f)
3966 return FRAME_HEIGHT (f);
3968 #endif /* !HAVE_X_WINDOWS */
3970 /* ----------------------- DOS / UNIX conversion --------------------- */
3972 void msdos_downcase_filename (unsigned char *);
3974 /* Destructively turn backslashes into slashes. */
3976 void
3977 dostounix_filename (p)
3978 register char *p;
3980 msdos_downcase_filename (p);
3982 while (*p)
3984 if (*p == '\\')
3985 *p = '/';
3986 p++;
3990 /* Destructively turn slashes into backslashes. */
3992 void
3993 unixtodos_filename (p)
3994 register char *p;
3996 if (p[1] == ':' && *p >= 'A' && *p <= 'Z')
3998 *p += 'a' - 'A';
3999 p += 2;
4002 while (*p)
4004 if (*p == '/')
4005 *p = '\\';
4006 p++;
4010 /* Get the default directory for a given drive. 0=def, 1=A, 2=B, ... */
4013 getdefdir (drive, dst)
4014 int drive;
4015 char *dst;
4017 char in_path[4], *p = in_path;
4018 int e = errno;
4020 /* Generate "X:." (when drive is X) or "." (when drive is 0). */
4021 if (drive != 0)
4023 *p++ = drive + 'A' - 1;
4024 *p++ = ':';
4027 *p++ = '.';
4028 *p = '\0';
4029 errno = 0;
4030 _fixpath (in_path, dst);
4031 /* _fixpath can set errno to ENOSYS on non-LFN systems because
4032 it queries the LFN support, so ignore that error. */
4033 if ((errno && errno != ENOSYS) || *dst == '\0')
4034 return 0;
4036 msdos_downcase_filename (dst);
4038 errno = e;
4039 return 1;
4042 /* Remove all CR's that are followed by a LF. */
4045 crlf_to_lf (n, buf)
4046 register int n;
4047 register unsigned char *buf;
4049 unsigned char *np = buf;
4050 unsigned char *startp = buf;
4051 unsigned char *endp = buf + n;
4053 if (n == 0)
4054 return n;
4055 while (buf < endp - 1)
4057 if (*buf == 0x0d)
4059 if (*(++buf) != 0x0a)
4060 *np++ = 0x0d;
4062 else
4063 *np++ = *buf++;
4065 if (buf < endp)
4066 *np++ = *buf++;
4067 return np - startp;
4070 #if defined(__DJGPP__) && __DJGPP__ == 2 && __DJGPP_MINOR__ == 0
4072 /* In DJGPP v2.0, library `write' can call `malloc', which might
4073 cause relocation of the buffer whose address we get in ADDR.
4074 Here is a version of `write' that avoids calling `malloc',
4075 to serve us until such time as the library is fixed.
4076 Actually, what we define here is called `__write', because
4077 `write' is a stub that just jmp's to `__write' (to be
4078 POSIXLY-correct with respect to the global name-space). */
4080 #include <io.h> /* for _write */
4081 #include <libc/dosio.h> /* for __file_handle_modes[] */
4083 static char xbuf[64 * 1024]; /* DOS cannot write more in one chunk */
4085 #define XBUF_END (xbuf + sizeof (xbuf) - 1)
4088 __write (int handle, const void *buffer, size_t count)
4090 if (count == 0)
4091 return 0;
4093 if(__file_handle_modes[handle] & O_BINARY)
4094 return _write (handle, buffer, count);
4095 else
4097 char *xbp = xbuf;
4098 const char *bp = buffer;
4099 int total_written = 0;
4100 int nmoved = 0, ncr = 0;
4102 while (count)
4104 /* The next test makes sure there's space for at least 2 more
4105 characters in xbuf[], so both CR and LF can be put there. */
4106 if (xbp < XBUF_END)
4108 if (*bp == '\n')
4110 ncr++;
4111 *xbp++ = '\r';
4113 *xbp++ = *bp++;
4114 nmoved++;
4115 count--;
4117 if (xbp >= XBUF_END || !count)
4119 size_t to_write = nmoved + ncr;
4120 int written = _write (handle, xbuf, to_write);
4122 if (written == -1)
4123 return -1;
4124 else
4125 total_written += nmoved; /* CRs aren't counted in ret value */
4127 /* If some, but not all were written (disk full?), return
4128 an estimate of the total written bytes not counting CRs. */
4129 if (written < to_write)
4130 return total_written - (to_write - written) * nmoved/to_write;
4132 nmoved = 0;
4133 ncr = 0;
4134 xbp = xbuf;
4137 return total_written;
4141 /* A low-level file-renaming function which works around Windows 95 bug.
4142 This is pulled directly out of DJGPP v2.01 library sources, and only
4143 used when you compile with DJGPP v2.0. */
4145 #include <io.h>
4147 int _rename(const char *old, const char *new)
4149 __dpmi_regs r;
4150 int olen = strlen(old) + 1;
4151 int i;
4152 int use_lfn = _USE_LFN;
4153 char tempfile[FILENAME_MAX];
4154 const char *orig = old;
4155 int lfn_fd = -1;
4157 r.x.dx = __tb_offset;
4158 r.x.di = __tb_offset + olen;
4159 r.x.ds = r.x.es = __tb_segment;
4161 if (use_lfn)
4163 /* Windows 95 bug: for some filenames, when you rename
4164 file -> file~ (as in Emacs, to leave a backup), the
4165 short 8+3 alias doesn't change, which effectively
4166 makes OLD and NEW the same file. We must rename
4167 through a temporary file to work around this. */
4169 char *pbase = 0, *p;
4170 static char try_char[] = "abcdefghijklmnopqrstuvwxyz012345789";
4171 int idx = sizeof(try_char) - 1;
4173 /* Generate a temporary name. Can't use `tmpnam', since $TMPDIR
4174 might point to another drive, which will fail the DOS call. */
4175 strcpy(tempfile, old);
4176 for (p = tempfile; *p; p++) /* ensure temporary is on the same drive */
4177 if (*p == '/' || *p == '\\' || *p == ':')
4178 pbase = p;
4179 if (pbase)
4180 pbase++;
4181 else
4182 pbase = tempfile;
4183 strcpy(pbase, "X$$djren$$.$$temp$$");
4187 if (idx <= 0)
4188 return -1;
4189 *pbase = try_char[--idx];
4190 } while (_chmod(tempfile, 0) != -1);
4192 r.x.ax = 0x7156;
4193 _put_path2(tempfile, olen);
4194 _put_path(old);
4195 __dpmi_int(0x21, &r);
4196 if (r.x.flags & 1)
4198 errno = __doserr_to_errno(r.x.ax);
4199 return -1;
4202 /* Now create a file with the original name. This will
4203 ensure that NEW will always have a 8+3 alias
4204 different from that of OLD. (Seems to be required
4205 when NameNumericTail in the Registry is set to 0.) */
4206 lfn_fd = _creat(old, 0);
4208 olen = strlen(tempfile) + 1;
4209 old = tempfile;
4210 r.x.di = __tb_offset + olen;
4213 for (i=0; i<2; i++)
4215 if(use_lfn)
4216 r.x.ax = 0x7156;
4217 else
4218 r.h.ah = 0x56;
4219 _put_path2(new, olen);
4220 _put_path(old);
4221 __dpmi_int(0x21, &r);
4222 if(r.x.flags & 1)
4224 if (r.x.ax == 5 && i == 0) /* access denied */
4225 remove(new); /* and try again */
4226 else
4228 errno = __doserr_to_errno(r.x.ax);
4230 /* Restore to original name if we renamed it to temporary. */
4231 if (use_lfn)
4233 if (lfn_fd != -1)
4235 _close (lfn_fd);
4236 remove (orig);
4238 _put_path2(orig, olen);
4239 _put_path(tempfile);
4240 r.x.ax = 0x7156;
4241 __dpmi_int(0x21, &r);
4243 return -1;
4246 else
4247 break;
4250 /* Success. Delete the file possibly created to work
4251 around the Windows 95 bug. */
4252 if (lfn_fd != -1)
4253 return (_close (lfn_fd) == 0) ? remove (orig) : -1;
4254 return 0;
4257 #endif /* __DJGPP__ == 2 && __DJGPP_MINOR__ == 0 */
4259 DEFUN ("msdos-long-file-names", Fmsdos_long_file_names, Smsdos_long_file_names,
4260 0, 0, 0,
4261 "Return non-nil if long file names are supported on MSDOS.")
4264 return (_USE_LFN ? Qt : Qnil);
4267 /* Convert alphabetic characters in a filename to lower-case. */
4269 void
4270 msdos_downcase_filename (p)
4271 register unsigned char *p;
4273 /* Always lower-case drive letters a-z, even if the filesystem
4274 preserves case in filenames.
4275 This is so MSDOS filenames could be compared by string comparison
4276 functions that are case-sensitive. Even case-preserving filesystems
4277 do not distinguish case in drive letters. */
4278 if (p[1] == ':' && *p >= 'A' && *p <= 'Z')
4280 *p += 'a' - 'A';
4281 p += 2;
4284 /* Under LFN we expect to get pathnames in their true case. */
4285 if (NILP (Fmsdos_long_file_names ()))
4286 for ( ; *p; p++)
4287 if (*p >= 'A' && *p <= 'Z')
4288 *p += 'a' - 'A';
4291 DEFUN ("msdos-downcase-filename", Fmsdos_downcase_filename, Smsdos_downcase_filename,
4292 1, 1, 0,
4293 "Convert alphabetic characters in FILENAME to lower case and return that.\n\
4294 When long filenames are supported, doesn't change FILENAME.\n\
4295 If FILENAME is not a string, returns nil.\n\
4296 The argument object is never altered--the value is a copy.")
4297 (filename)
4298 Lisp_Object filename;
4300 Lisp_Object tem;
4302 if (! STRINGP (filename))
4303 return Qnil;
4305 tem = Fcopy_sequence (filename);
4306 msdos_downcase_filename (XSTRING (tem)->data);
4307 return tem;
4310 /* The Emacs root directory as determined by init_environment. */
4312 static char emacsroot[MAXPATHLEN];
4314 char *
4315 rootrelativepath (rel)
4316 char *rel;
4318 static char result[MAXPATHLEN + 10];
4320 strcpy (result, emacsroot);
4321 strcat (result, "/");
4322 strcat (result, rel);
4323 return result;
4326 /* Define a lot of environment variables if not already defined. Don't
4327 remove anything unless you know what you're doing -- lots of code will
4328 break if one or more of these are missing. */
4330 void
4331 init_environment (argc, argv, skip_args)
4332 int argc;
4333 char **argv;
4334 int skip_args;
4336 char *s, *t, *root;
4337 int len;
4338 static const char * const tempdirs[] = {
4339 "$TMPDIR", "$TEMP", "$TMP", "c:/"
4341 int i;
4342 const int imax = sizeof (tempdirs) / sizeof (tempdirs[0]);
4344 /* Make sure they have a usable $TMPDIR. Many Emacs functions use
4345 temporary files and assume "/tmp" if $TMPDIR is unset, which
4346 will break on DOS/Windows. Refuse to work if we cannot find
4347 a directory, not even "c:/", usable for that purpose. */
4348 for (i = 0; i < imax ; i++)
4350 const char *tmp = tempdirs[i];
4352 if (*tmp == '$')
4353 tmp = getenv (tmp + 1);
4354 /* Note that `access' can lie to us if the directory resides on a
4355 read-only filesystem, like CD-ROM or a write-protected floppy.
4356 The only way to be really sure is to actually create a file and
4357 see if it succeeds. But I think that's too much to ask. */
4358 if (tmp && access (tmp, D_OK) == 0)
4360 setenv ("TMPDIR", tmp, 1);
4361 break;
4364 if (i >= imax)
4365 cmd_error_internal
4366 (Fcons (Qerror,
4367 Fcons (build_string ("no usable temporary directories found!!"),
4368 Qnil)),
4369 "While setting TMPDIR: ");
4371 /* Note the startup time, so we know not to clear the screen if we
4372 exit immediately; see IT_reset_terminal_modes.
4373 (Yes, I know `clock' returns zero the first time it's called, but
4374 I do this anyway, in case some wiseguy changes that at some point.) */
4375 startup_time = clock ();
4377 /* Find our root from argv[0]. Assuming argv[0] is, say,
4378 "c:/emacs/bin/emacs.exe" our root will be "c:/emacs". */
4379 root = alloca (MAXPATHLEN + 20);
4380 _fixpath (argv[0], root);
4381 msdos_downcase_filename (root);
4382 len = strlen (root);
4383 while (len > 0 && root[len] != '/' && root[len] != ':')
4384 len--;
4385 root[len] = '\0';
4386 if (len > 4
4387 && (strcmp (root + len - 4, "/bin") == 0
4388 || strcmp (root + len - 4, "/src") == 0)) /* under a debugger */
4389 root[len - 4] = '\0';
4390 else
4391 strcpy (root, "c:/emacs"); /* let's be defensive */
4392 len = strlen (root);
4393 strcpy (emacsroot, root);
4395 /* We default HOME to our root. */
4396 setenv ("HOME", root, 0);
4398 /* We default EMACSPATH to root + "/bin". */
4399 strcpy (root + len, "/bin");
4400 setenv ("EMACSPATH", root, 0);
4402 /* I don't expect anybody to ever use other terminals so the internal
4403 terminal is the default. */
4404 setenv ("TERM", "internal", 0);
4406 #ifdef HAVE_X_WINDOWS
4407 /* Emacs expects DISPLAY to be set. */
4408 setenv ("DISPLAY", "unix:0.0", 0);
4409 #endif
4411 /* SHELL is a bit tricky -- COMSPEC is the closest we come, but we must
4412 downcase it and mirror the backslashes. */
4413 s = getenv ("COMSPEC");
4414 if (!s) s = "c:/command.com";
4415 t = alloca (strlen (s) + 1);
4416 strcpy (t, s);
4417 dostounix_filename (t);
4418 setenv ("SHELL", t, 0);
4420 /* PATH is also downcased and backslashes mirrored. */
4421 s = getenv ("PATH");
4422 if (!s) s = "";
4423 t = alloca (strlen (s) + 3);
4424 /* Current directory is always considered part of MsDos's path but it is
4425 not normally mentioned. Now it is. */
4426 strcat (strcpy (t, ".;"), s);
4427 dostounix_filename (t); /* Not a single file name, but this should work. */
4428 setenv ("PATH", t, 1);
4430 /* In some sense all dos users have root privileges, so... */
4431 setenv ("USER", "root", 0);
4432 setenv ("NAME", getenv ("USER"), 0);
4434 /* Time zone determined from country code. To make this possible, the
4435 country code may not span more than one time zone. In other words,
4436 in the USA, you lose. */
4437 if (!getenv ("TZ"))
4438 switch (dos_country_code)
4440 case 31: /* Belgium */
4441 case 32: /* The Netherlands */
4442 case 33: /* France */
4443 case 34: /* Spain */
4444 case 36: /* Hungary */
4445 case 38: /* Yugoslavia (or what's left of it?) */
4446 case 39: /* Italy */
4447 case 41: /* Switzerland */
4448 case 42: /* Tjekia */
4449 case 45: /* Denmark */
4450 case 46: /* Sweden */
4451 case 47: /* Norway */
4452 case 48: /* Poland */
4453 case 49: /* Germany */
4454 /* Daylight saving from last Sunday in March to last Sunday in
4455 September, both at 2AM. */
4456 setenv ("TZ", "MET-01METDST-02,M3.5.0/02:00,M9.5.0/02:00", 0);
4457 break;
4458 case 44: /* United Kingdom */
4459 case 351: /* Portugal */
4460 case 354: /* Iceland */
4461 setenv ("TZ", "GMT+00", 0);
4462 break;
4463 case 81: /* Japan */
4464 case 82: /* Korea */
4465 setenv ("TZ", "JST-09", 0);
4466 break;
4467 case 90: /* Turkey */
4468 case 358: /* Finland */
4469 setenv ("TZ", "EET-02", 0);
4470 break;
4471 case 972: /* Israel */
4472 /* This is an approximation. (For exact rules, use the
4473 `zoneinfo/israel' file which comes with DJGPP, but you need
4474 to install it in `/usr/share/zoneinfo/' directory first.) */
4475 setenv ("TZ", "IST-02IDT-03,M4.1.6/00:00,M9.5.6/01:00", 0);
4476 break;
4478 tzset ();
4483 static int break_stat; /* BREAK check mode status. */
4484 static int stdin_stat; /* stdin IOCTL status. */
4486 #if __DJGPP__ < 2
4488 /* These must be global. */
4489 static _go32_dpmi_seginfo ctrl_break_vector;
4490 static _go32_dpmi_registers ctrl_break_regs;
4491 static int ctrlbreakinstalled = 0;
4493 /* Interrupt level detection of Ctrl-Break. Don't do anything fancy here! */
4495 void
4496 ctrl_break_func (regs)
4497 _go32_dpmi_registers *regs;
4499 Vquit_flag = Qt;
4502 void
4503 install_ctrl_break_check ()
4505 if (!ctrlbreakinstalled)
4507 /* Don't press Ctrl-Break if you don't have either DPMI or Emacs
4508 was compiler with Djgpp 1.11 maintenance level 5 or later! */
4509 ctrlbreakinstalled = 1;
4510 ctrl_break_vector.pm_offset = (int) ctrl_break_func;
4511 _go32_dpmi_allocate_real_mode_callback_iret (&ctrl_break_vector,
4512 &ctrl_break_regs);
4513 _go32_dpmi_set_real_mode_interrupt_vector (0x1b, &ctrl_break_vector);
4517 #endif /* __DJGPP__ < 2 */
4519 /* Turn off Dos' Ctrl-C checking and inhibit interpretation of
4520 control chars by DOS. Determine the keyboard type. */
4523 dos_ttraw ()
4525 union REGS inregs, outregs;
4526 static int first_time = 1;
4528 break_stat = getcbrk ();
4529 setcbrk (0);
4530 #if __DJGPP__ < 2
4531 install_ctrl_break_check ();
4532 #endif
4534 if (first_time)
4536 inregs.h.ah = 0xc0;
4537 int86 (0x15, &inregs, &outregs);
4538 extended_kbd = (!outregs.x.cflag) && (outregs.h.ah == 0);
4540 have_mouse = 0;
4542 if (internal_terminal
4543 #ifdef HAVE_X_WINDOWS
4544 && inhibit_window_system
4545 #endif
4548 inregs.x.ax = 0x0021;
4549 int86 (0x33, &inregs, &outregs);
4550 have_mouse = (outregs.x.ax & 0xffff) == 0xffff;
4551 if (!have_mouse)
4553 /* Reportedly, the above doesn't work for some mouse drivers. There
4554 is an additional detection method that should work, but might be
4555 a little slower. Use that as an alternative. */
4556 inregs.x.ax = 0x0000;
4557 int86 (0x33, &inregs, &outregs);
4558 have_mouse = (outregs.x.ax & 0xffff) == 0xffff;
4561 if (have_mouse)
4563 have_mouse = 1; /* enable mouse */
4564 mouse_visible = 0;
4565 mouse_setup_buttons (outregs.x.bx);
4566 mouse_position_hook = &mouse_get_pos;
4567 mouse_init ();
4570 #ifndef HAVE_X_WINDOWS
4571 #if __DJGPP__ >= 2
4572 /* Save the cursor shape used outside Emacs. */
4573 outside_cursor = _farpeekw (_dos_ds, 0x460);
4574 #endif
4575 #endif
4578 first_time = 0;
4580 #if __DJGPP__ >= 2
4582 stdin_stat = setmode (fileno (stdin), O_BINARY);
4583 return (stdin_stat != -1);
4585 else
4586 return (setmode (fileno (stdin), O_BINARY) != -1);
4588 #else /* __DJGPP__ < 2 */
4592 /* I think it is wrong to overwrite `stdin_stat' every time
4593 but the first one this function is called, but I don't
4594 want to change the way it used to work in v1.x.--EZ */
4596 inregs.x.ax = 0x4400; /* Get IOCTL status. */
4597 inregs.x.bx = 0x00; /* 0 = stdin. */
4598 intdos (&inregs, &outregs);
4599 stdin_stat = outregs.h.dl;
4601 inregs.x.dx = stdin_stat | 0x0020; /* raw mode */
4602 inregs.x.ax = 0x4401; /* Set IOCTL status */
4603 intdos (&inregs, &outregs);
4604 return !outregs.x.cflag;
4606 #endif /* __DJGPP__ < 2 */
4609 /* Restore status of standard input and Ctrl-C checking. */
4612 dos_ttcooked ()
4614 union REGS inregs, outregs;
4616 setcbrk (break_stat);
4617 mouse_off ();
4619 #if __DJGPP__ >= 2
4621 #ifndef HAVE_X_WINDOWS
4622 /* Restore the cursor shape we found on startup. */
4623 if (outside_cursor)
4625 inregs.h.ah = 1;
4626 inregs.x.cx = outside_cursor;
4627 int86 (0x10, &inregs, &outregs);
4629 #endif
4631 return (setmode (fileno (stdin), stdin_stat) != -1);
4633 #else /* not __DJGPP__ >= 2 */
4635 inregs.x.ax = 0x4401; /* Set IOCTL status. */
4636 inregs.x.bx = 0x00; /* 0 = stdin. */
4637 inregs.x.dx = stdin_stat;
4638 intdos (&inregs, &outregs);
4639 return !outregs.x.cflag;
4641 #endif /* not __DJGPP__ >= 2 */
4645 /* Run command as specified by ARGV in directory DIR.
4646 The command is run with input from TEMPIN, output to
4647 file TEMPOUT and stderr to TEMPERR. */
4650 run_msdos_command (argv, working_dir, tempin, tempout, temperr, envv)
4651 unsigned char **argv;
4652 const char *working_dir;
4653 int tempin, tempout, temperr;
4654 char **envv;
4656 char *saveargv1, *saveargv2, *lowcase_argv0, *pa, *pl;
4657 char oldwd[MAXPATHLEN + 1]; /* Fixed size is safe on MSDOS. */
4658 int msshell, result = -1;
4659 int inbak, outbak, errbak;
4660 int x, y;
4661 Lisp_Object cmd;
4663 /* Get current directory as MSDOS cwd is not per-process. */
4664 getwd (oldwd);
4666 /* If argv[0] is the shell, it might come in any lettercase.
4667 Since `Fmember' is case-sensitive, we need to downcase
4668 argv[0], even if we are on case-preserving filesystems. */
4669 lowcase_argv0 = alloca (strlen (argv[0]) + 1);
4670 for (pa = argv[0], pl = lowcase_argv0; *pa; pl++)
4672 *pl = *pa++;
4673 if (*pl >= 'A' && *pl <= 'Z')
4674 *pl += 'a' - 'A';
4676 *pl = '\0';
4678 cmd = Ffile_name_nondirectory (build_string (lowcase_argv0));
4679 msshell = !NILP (Fmember (cmd, Fsymbol_value (intern ("msdos-shells"))))
4680 && !strcmp ("-c", argv[1]);
4681 if (msshell)
4683 saveargv1 = argv[1];
4684 saveargv2 = argv[2];
4685 argv[1] = "/c";
4686 /* We only need to mirror slashes if a DOS shell will be invoked
4687 not via `system' (which does the mirroring itself). Yes, that
4688 means DJGPP v1.x will lose here. */
4689 if (argv[2] && argv[3])
4691 char *p = alloca (strlen (argv[2]) + 1);
4693 strcpy (argv[2] = p, saveargv2);
4694 while (*p && isspace (*p))
4695 p++;
4696 while (*p)
4698 if (*p == '/')
4699 *p++ = '\\';
4700 else
4701 p++;
4706 chdir (working_dir);
4707 inbak = dup (0);
4708 outbak = dup (1);
4709 errbak = dup (2);
4710 if (inbak < 0 || outbak < 0 || errbak < 0)
4711 goto done; /* Allocation might fail due to lack of descriptors. */
4713 if (have_mouse > 0)
4714 mouse_get_xy (&x, &y);
4716 dos_ttcooked (); /* do it here while 0 = stdin */
4718 dup2 (tempin, 0);
4719 dup2 (tempout, 1);
4720 dup2 (temperr, 2);
4722 #if __DJGPP__ > 1
4724 if (msshell && !argv[3])
4726 /* MS-DOS native shells are too restrictive. For starters, they
4727 cannot grok commands longer than 126 characters. In DJGPP v2
4728 and later, `system' is much smarter, so we'll call it instead. */
4730 const char *cmnd;
4732 /* A shell gets a single argument--its full command
4733 line--whose original was saved in `saveargv2'. */
4735 /* Don't let them pass empty command lines to `system', since
4736 with some shells it will try to invoke an interactive shell,
4737 which will hang Emacs. */
4738 for (cmnd = saveargv2; *cmnd && isspace (*cmnd); cmnd++)
4740 if (*cmnd)
4742 extern char **environ;
4743 char **save_env = environ;
4744 int save_system_flags = __system_flags;
4746 /* Request the most powerful version of `system'. We need
4747 all the help we can get to avoid calling stock DOS shells. */
4748 __system_flags = (__system_redirect
4749 | __system_use_shell
4750 | __system_allow_multiple_cmds
4751 | __system_allow_long_cmds
4752 | __system_handle_null_commands
4753 | __system_emulate_chdir);
4755 environ = envv;
4756 result = system (cmnd);
4757 __system_flags = save_system_flags;
4758 environ = save_env;
4760 else
4761 result = 0; /* emulate Unixy shell behavior with empty cmd line */
4763 else
4765 #endif /* __DJGPP__ > 1 */
4767 result = spawnve (P_WAIT, argv[0], argv, envv);
4769 dup2 (inbak, 0);
4770 dup2 (outbak, 1);
4771 dup2 (errbak, 2);
4772 emacs_close (inbak);
4773 emacs_close (outbak);
4774 emacs_close (errbak);
4776 dos_ttraw ();
4777 if (have_mouse > 0)
4779 mouse_init ();
4780 mouse_moveto (x, y);
4783 /* Some programs might change the meaning of the highest bit of the
4784 text attribute byte, so we get blinking characters instead of the
4785 bright background colors. Restore that. */
4786 bright_bg ();
4788 done:
4789 chdir (oldwd);
4790 if (msshell)
4792 argv[1] = saveargv1;
4793 argv[2] = saveargv2;
4795 return result;
4798 croak (badfunc)
4799 char *badfunc;
4801 fprintf (stderr, "%s not yet implemented\r\n", badfunc);
4802 reset_sys_modes ();
4803 exit (1);
4806 #if __DJGPP__ < 2
4808 /* ------------------------- Compatibility functions -------------------
4809 * gethostname
4810 * gettimeofday
4813 /* Hostnames for a pc are not really funny,
4814 but they are used in change log so we emulate the best we can. */
4816 gethostname (p, size)
4817 char *p;
4818 int size;
4820 char *q = egetenv ("HOSTNAME");
4822 if (!q) q = "pc";
4823 strcpy (p, q);
4824 return 0;
4827 /* When time zones are set from Ms-Dos too many C-libraries are playing
4828 tricks with time values. We solve this by defining our own version
4829 of `gettimeofday' bypassing GO32. Our version needs to be initialized
4830 once and after each call to `tzset' with TZ changed. That is
4831 accomplished by aliasing tzset to init_gettimeofday. */
4833 static struct tm time_rec;
4836 gettimeofday (struct timeval *tp, struct timezone *tzp)
4838 if (tp)
4840 struct time t;
4841 struct tm tm;
4843 gettime (&t);
4844 if (t.ti_hour < time_rec.tm_hour) /* midnight wrap */
4846 struct date d;
4847 getdate (&d);
4848 time_rec.tm_year = d.da_year - 1900;
4849 time_rec.tm_mon = d.da_mon - 1;
4850 time_rec.tm_mday = d.da_day;
4853 time_rec.tm_hour = t.ti_hour;
4854 time_rec.tm_min = t.ti_min;
4855 time_rec.tm_sec = t.ti_sec;
4857 tm = time_rec;
4858 tm.tm_gmtoff = dos_timezone_offset;
4860 tp->tv_sec = mktime (&tm); /* may modify tm */
4861 tp->tv_usec = t.ti_hund * (1000000 / 100);
4863 /* Ignore tzp; it's obsolescent. */
4864 return 0;
4867 #endif /* __DJGPP__ < 2 */
4870 * A list of unimplemented functions that we silently ignore.
4873 #if __DJGPP__ < 2
4874 unsigned alarm (s) unsigned s; {}
4875 fork () { return 0; }
4876 int kill (x, y) int x, y; { return -1; }
4877 nice (p) int p; {}
4878 void volatile pause () {}
4879 sigsetmask (x) int x; { return 0; }
4880 sigblock (mask) int mask; { return 0; }
4881 #endif
4883 void request_sigio (void) {}
4884 setpgrp () {return 0; }
4885 setpriority (x,y,z) int x,y,z; { return 0; }
4886 void unrequest_sigio (void) {}
4888 #if __DJGPP__ > 1
4890 #ifdef POSIX_SIGNALS
4892 /* Augment DJGPP library POSIX signal functions. This is needed
4893 as of DJGPP v2.01, but might be in the library in later releases. */
4895 #include <libc/bss.h>
4897 /* A counter to know when to re-initialize the static sets. */
4898 static int sigprocmask_count = -1;
4900 /* Which signals are currently blocked (initially none). */
4901 static sigset_t current_mask;
4903 /* Which signals are pending (initially none). */
4904 static sigset_t pending_signals;
4906 /* Previous handlers to restore when the blocked signals are unblocked. */
4907 typedef void (*sighandler_t)(int);
4908 static sighandler_t prev_handlers[320];
4910 /* A signal handler which just records that a signal occured
4911 (it will be raised later, if and when the signal is unblocked). */
4912 static void
4913 sig_suspender (signo)
4914 int signo;
4916 sigaddset (&pending_signals, signo);
4920 sigprocmask (how, new_set, old_set)
4921 int how;
4922 const sigset_t *new_set;
4923 sigset_t *old_set;
4925 int signo;
4926 sigset_t new_mask;
4928 /* If called for the first time, initialize. */
4929 if (sigprocmask_count != __bss_count)
4931 sigprocmask_count = __bss_count;
4932 sigemptyset (&pending_signals);
4933 sigemptyset (&current_mask);
4934 for (signo = 0; signo < 320; signo++)
4935 prev_handlers[signo] = SIG_ERR;
4938 if (old_set)
4939 *old_set = current_mask;
4941 if (new_set == 0)
4942 return 0;
4944 if (how != SIG_BLOCK && how != SIG_UNBLOCK && how != SIG_SETMASK)
4946 errno = EINVAL;
4947 return -1;
4950 sigemptyset (&new_mask);
4952 /* DJGPP supports upto 320 signals. */
4953 for (signo = 0; signo < 320; signo++)
4955 if (sigismember (&current_mask, signo))
4956 sigaddset (&new_mask, signo);
4957 else if (sigismember (new_set, signo) && how != SIG_UNBLOCK)
4959 sigaddset (&new_mask, signo);
4961 /* SIGKILL is silently ignored, as on other platforms. */
4962 if (signo != SIGKILL && prev_handlers[signo] == SIG_ERR)
4963 prev_handlers[signo] = signal (signo, sig_suspender);
4965 if (( how == SIG_UNBLOCK
4966 && sigismember (&new_mask, signo)
4967 && sigismember (new_set, signo))
4968 || (how == SIG_SETMASK
4969 && sigismember (&new_mask, signo)
4970 && !sigismember (new_set, signo)))
4972 sigdelset (&new_mask, signo);
4973 if (prev_handlers[signo] != SIG_ERR)
4975 signal (signo, prev_handlers[signo]);
4976 prev_handlers[signo] = SIG_ERR;
4978 if (sigismember (&pending_signals, signo))
4980 sigdelset (&pending_signals, signo);
4981 raise (signo);
4985 current_mask = new_mask;
4986 return 0;
4989 #else /* not POSIX_SIGNALS */
4991 sigsetmask (x) int x; { return 0; }
4992 sigblock (mask) int mask; { return 0; }
4994 #endif /* not POSIX_SIGNALS */
4995 #endif /* __DJGPP__ > 1 */
4997 #ifndef HAVE_SELECT
4998 #include "sysselect.h"
5000 #ifndef EMACS_TIME_ZERO_OR_NEG_P
5001 #define EMACS_TIME_ZERO_OR_NEG_P(time) \
5002 ((long)(time).tv_sec < 0 \
5003 || ((time).tv_sec == 0 \
5004 && (long)(time).tv_usec <= 0))
5005 #endif
5007 /* This yields the rest of the current time slice to the task manager.
5008 It should be called by any code which knows that it has nothing
5009 useful to do except idle.
5011 I don't use __dpmi_yield here, since versions of library before 2.02
5012 called Int 2Fh/AX=1680h there in a way that would wedge the DOS box
5013 on some versions of Windows 9X. */
5015 void
5016 dos_yield_time_slice (void)
5018 _go32_dpmi_registers r;
5020 r.x.ax = 0x1680;
5021 r.x.ss = r.x.sp = r.x.flags = 0;
5022 _go32_dpmi_simulate_int (0x2f, &r);
5023 if (r.h.al == 0x80)
5024 errno = ENOSYS;
5027 /* Only event queue is checked. */
5028 /* We don't have to call timer_check here
5029 because wait_reading_process_input takes care of that. */
5031 sys_select (nfds, rfds, wfds, efds, timeout)
5032 int nfds;
5033 SELECT_TYPE *rfds, *wfds, *efds;
5034 EMACS_TIME *timeout;
5036 int check_input;
5037 struct time t;
5039 check_input = 0;
5040 if (rfds)
5042 check_input = FD_ISSET (0, rfds);
5043 FD_ZERO (rfds);
5045 if (wfds)
5046 FD_ZERO (wfds);
5047 if (efds)
5048 FD_ZERO (efds);
5050 if (nfds != 1)
5051 abort ();
5053 /* If we are looking only for the terminal, with no timeout,
5054 just read it and wait -- that's more efficient. */
5055 if (!timeout)
5057 while (!detect_input_pending ())
5059 dos_yield_time_slice ();
5062 else
5064 EMACS_TIME clnow, cllast, cldiff;
5066 gettime (&t);
5067 EMACS_SET_SECS_USECS (cllast, t.ti_sec, t.ti_hund * 10000L);
5069 while (!check_input || !detect_input_pending ())
5071 gettime (&t);
5072 EMACS_SET_SECS_USECS (clnow, t.ti_sec, t.ti_hund * 10000L);
5073 EMACS_SUB_TIME (cldiff, clnow, cllast);
5075 /* When seconds wrap around, we assume that no more than
5076 1 minute passed since last `gettime'. */
5077 if (EMACS_TIME_NEG_P (cldiff))
5078 EMACS_SET_SECS (cldiff, EMACS_SECS (cldiff) + 60);
5079 EMACS_SUB_TIME (*timeout, *timeout, cldiff);
5081 /* Stop when timeout value crosses zero. */
5082 if (EMACS_TIME_ZERO_OR_NEG_P (*timeout))
5083 return 0;
5084 cllast = clnow;
5085 dos_yield_time_slice ();
5089 FD_SET (0, rfds);
5090 return 1;
5092 #endif
5095 * Define overlaid functions:
5097 * chdir -> sys_chdir
5098 * tzset -> init_gettimeofday
5099 * abort -> dos_abort
5102 #ifdef chdir
5103 #undef chdir
5104 extern int chdir ();
5107 sys_chdir (path)
5108 const char* path;
5110 int len = strlen (path);
5111 char *tmp = (char *)path;
5113 if (*tmp && tmp[1] == ':')
5115 if (getdisk () != tolower (tmp[0]) - 'a')
5116 setdisk (tolower (tmp[0]) - 'a');
5117 tmp += 2; /* strip drive: KFS 1995-07-06 */
5118 len -= 2;
5121 if (len > 1 && (tmp[len - 1] == '/'))
5123 char *tmp1 = (char *) alloca (len + 1);
5124 strcpy (tmp1, tmp);
5125 tmp1[len - 1] = 0;
5126 tmp = tmp1;
5128 return chdir (tmp);
5130 #endif
5132 #ifdef tzset
5133 #undef tzset
5134 extern void tzset (void);
5136 void
5137 init_gettimeofday ()
5139 time_t ltm, gtm;
5140 struct tm *lstm;
5142 tzset ();
5143 ltm = gtm = time (NULL);
5144 ltm = mktime (lstm = localtime (&ltm));
5145 gtm = mktime (gmtime (&gtm));
5146 time_rec.tm_hour = 99; /* force gettimeofday to get date */
5147 time_rec.tm_isdst = lstm->tm_isdst;
5148 dos_timezone_offset = time_rec.tm_gmtoff = (int)(gtm - ltm) / 60;
5150 #endif
5152 #ifdef abort
5153 #undef abort
5154 void
5155 dos_abort (file, line)
5156 char *file;
5157 int line;
5159 char buffer1[200], buffer2[400];
5160 int i, j;
5162 sprintf (buffer1, "<EMACS FATAL ERROR IN %s LINE %d>", file, line);
5163 for (i = j = 0; buffer1[i]; i++) {
5164 buffer2[j++] = buffer1[i];
5165 buffer2[j++] = 0x70;
5167 dosmemput (buffer2, j, (int)ScreenPrimary);
5168 ScreenSetCursor (2, 0);
5169 abort ();
5171 #else
5172 void
5173 abort ()
5175 dos_ttcooked ();
5176 ScreenSetCursor (10, 0);
5177 cputs ("\r\n\nEmacs aborted!\r\n");
5178 #if __DJGPP__ > 1
5179 #if __DJGPP__ == 2 && __DJGPP_MINOR__ < 2
5180 if (screen_virtual_segment)
5181 dosv_refresh_virtual_screen (2 * 10 * screen_size_X, 4 * screen_size_X);
5182 /* Generate traceback, so we could tell whodunit. */
5183 signal (SIGINT, SIG_DFL);
5184 __asm__ __volatile__ ("movb $0x1b,%al;call ___djgpp_hw_exception");
5185 #else /* __DJGPP_MINOR__ >= 2 */
5186 raise (SIGABRT);
5187 #endif /* __DJGPP_MINOR__ >= 2 */
5188 #endif
5189 exit (2);
5191 #endif
5193 /* The following variables are required so that cus-start.el won't
5194 complain about unbound variables. */
5195 #ifndef HAVE_X_WINDOWS
5196 /* Search path for bitmap files (xfns.c). */
5197 Lisp_Object Vx_bitmap_file_path;
5198 int x_stretch_cursor_p;
5199 #endif
5200 #ifndef subprocesses
5201 /* Nonzero means delete a process right away if it exits (process.c). */
5202 static int delete_exited_processes;
5203 #endif
5205 syms_of_msdos ()
5207 recent_doskeys = Fmake_vector (make_number (NUM_RECENT_DOSKEYS), Qnil);
5208 staticpro (&recent_doskeys);
5209 #ifndef HAVE_X_WINDOWS
5210 help_echo = Qnil;
5211 staticpro (&help_echo);
5212 help_echo_object = Qnil;
5213 staticpro (&help_echo_object);
5214 help_echo_window = Qnil;
5215 staticpro (&help_echo_window);
5216 previous_help_echo = Qnil;
5217 staticpro (&previous_help_echo);
5218 help_echo_pos = -1;
5220 DEFVAR_LISP ("x-bitmap-file-path", &Vx_bitmap_file_path,
5221 "List of directories to search for bitmap files for X.");
5222 Vx_bitmap_file_path = decode_env_path ((char *) 0, ".");
5224 DEFVAR_BOOL ("x-stretch-cursor", &x_stretch_cursor_p,
5225 "*Non-nil means draw block cursor as wide as the glyph under it.\n\
5226 For example, if a block cursor is over a tab, it will be drawn as\n\
5227 wide as that tab on the display. (No effect on MS-DOS.)");
5228 x_stretch_cursor_p = 0;
5230 /* The following three are from xfns.c: */
5231 Qbackground_color = intern ("background-color");
5232 staticpro (&Qbackground_color);
5233 Qforeground_color = intern ("foreground-color");
5234 staticpro (&Qforeground_color);
5235 Qbar = intern ("bar");
5236 staticpro (&Qbar);
5237 Qcursor_type = intern ("cursor-type");
5238 staticpro (&Qcursor_type);
5239 Qreverse = intern ("reverse");
5240 staticpro (&Qreverse);
5242 DEFVAR_LISP ("dos-unsupported-char-glyph", &Vdos_unsupported_char_glyph,
5243 "*Glyph to display instead of chars not supported by current codepage.\n\
5245 This variable is used only by MSDOS terminals.");
5246 Vdos_unsupported_char_glyph = '\177';
5247 #endif
5248 #ifndef subprocesses
5249 DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes,
5250 "*Non-nil means delete processes immediately when they exit.\n\
5251 nil means don't delete them until `list-processes' is run.");
5252 delete_exited_processes = 0;
5253 #endif
5255 defsubr (&Srecent_doskeys);
5256 defsubr (&Smsdos_long_file_names);
5257 defsubr (&Smsdos_downcase_filename);
5258 defsubr (&Smsdos_remember_default_colors);
5259 defsubr (&Smsdos_set_mouse_buttons);
5262 #endif /* MSDOS */