]> code.delx.au - gnu-emacs/blobdiff - src/dosfns.c
(set_text_properties): New function. Like
[gnu-emacs] / src / dosfns.c
index f0b1c69124e17c8b298e3dd07e3371cce545d6e7..59fdd67f934ea01541a81c09fd9f7cfa6d71f330 100644 (file)
@@ -1,6 +1,6 @@
 /* MS-DOS specific Lisp utilities.  Coded by Manabu Higashida, 1991.
    Major changes May-July 1993 Morten Welinder (only 10% original code left)
 /* MS-DOS specific Lisp utilities.  Coded by Manabu Higashida, 1991.
    Major changes May-July 1993 Morten Welinder (only 10% original code left)
-   Copyright (C) 1991, 1993 Free Software Foundation, Inc.
+   Copyright (C) 1991, 1993, 1996, 1997 Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
 
 This file is part of GNU Emacs.
 
@@ -26,17 +26,26 @@ Boston, MA 02111-1307, USA.  */
 /* The entire file is within this conditional */
 
 #include <stdio.h>
 /* The entire file is within this conditional */
 
 #include <stdio.h>
+#include <string.h>
 #include <dos.h>
 #include "lisp.h"
 #include "buffer.h"
 #include "termchar.h"
 #include "termhooks.h"
 #include "frame.h"
 #include <dos.h>
 #include "lisp.h"
 #include "buffer.h"
 #include "termchar.h"
 #include "termhooks.h"
 #include "frame.h"
+#include "blockinput.h"
+#include "window.h"
 #include "dosfns.h"
 #include "msdos.h"
 #include "dosfns.h"
 #include "msdos.h"
+#include "dispextern.h"
+#include <dpmi.h>
 #include <go32.h>
 #include <dirent.h>
 
 #include <go32.h>
 #include <dirent.h>
 
+#ifndef __DJGPP_MINOR__
+# define __tb _go32_info_block.linear_address_of_transfer_buffer;
+#endif
+
 DEFUN ("int86", Fint86, Sint86, 2, 2, 0,
   "Call specific MSDOS interrupt number INTERRUPT with REGISTERS.\n\
 Return the updated REGISTER vector.\n\
 DEFUN ("int86", Fint86, Sint86, 2, 2, 0,
   "Call specific MSDOS interrupt number INTERRUPT with REGISTERS.\n\
 Return the updated REGISTER vector.\n\
@@ -238,6 +247,20 @@ int dos_timezone_offset;
 int dos_decimal_point;
 int dos_keyboard_layout;
 unsigned char dos_country_info[DOS_COUNTRY_INFO];
 int dos_decimal_point;
 int dos_keyboard_layout;
 unsigned char dos_country_info[DOS_COUNTRY_INFO];
+static unsigned char usa_country_info[DOS_COUNTRY_INFO] = {
+  0, 0,                                /* date format */
+  '$', 0, 0, 0, 0,             /* currency string */
+  ',', 0,                      /* thousands separator */
+  '.', 0,                      /* decimal separator */
+  '/', 0,                      /* date separator */
+  ':', 0,                      /* time separator */
+  0,                           /* currency format */
+  2,                           /* digits after decimal in currency */
+  0,                           /* time format */
+  0, 0, 0, 0,                  /* address of case map routine, GPF if used */
+  ' ', 0,                      /* data-list separator (?) */
+  0, 0, 0, 0, 0, 0, 0, 0, 0, 0 /* reserved */
+};
 
 int dos_hyper_key;
 int dos_super_key;
 
 int dos_hyper_key;
 int dos_super_key;
@@ -245,13 +268,31 @@ int dos_keypad_mode;
 
 Lisp_Object Vdos_version;
 Lisp_Object Vdos_display_scancodes;
 
 Lisp_Object Vdos_version;
 Lisp_Object Vdos_display_scancodes;
+
+#ifndef HAVE_X_WINDOWS
+static unsigned dos_windows_version;
+Lisp_Object Vdos_windows_version;
+
+char parent_vm_title[50];      /* Ralf Brown says 30 is enough */
+int w95_set_virtual_machine_title (const char *);
+
+void
+restore_parent_vm_title (void)
+{
+  if (NILP (Vdos_windows_version))
+    return;
+  if ((dos_windows_version & 0xff) >= 4 && parent_vm_title[0])
+    w95_set_virtual_machine_title (parent_vm_title);
+  delay (50);
+}
+#endif /* !HAVE_X_WINDOWS */
   
 void
 init_dosfns ()
 {
   union REGS regs;
   
 void
 init_dosfns ()
 {
   union REGS regs;
-  _go32_dpmi_seginfo info;
   _go32_dpmi_registers dpmiregs;
   _go32_dpmi_registers dpmiregs;
+  unsigned long xbuf = _go32_info_block.linear_address_of_transfer_buffer;
 
 #ifndef SYSTEM_MALLOC
   get_lim_data (); /* why the hell isn't this called elsewhere? */
 
 #ifndef SYSTEM_MALLOC
   get_lim_data (); /* why the hell isn't this called elsewhere? */
@@ -261,21 +302,23 @@ init_dosfns ()
   intdos (&regs, &regs);
   Vdos_version = Fcons (make_number (regs.h.al), make_number (regs.h.ah));
 
   intdos (&regs, &regs);
   Vdos_version = Fcons (make_number (regs.h.al), make_number (regs.h.ah));
 
-  /* Obtain the country code by calling Dos via Dpmi.  Don't rely on GO32.  */
-  info.size = (sizeof(dos_country_info) + 15) / 16;
-  if (_go32_dpmi_allocate_dos_memory (&info))
-    dos_country_code = 1;
+  /* Obtain the country code via DPMI, use DJGPP transfer buffer.  */
+  dpmiregs.x.ax = 0x3800;
+  dpmiregs.x.ds = xbuf >> 4;
+  dpmiregs.x.dx = 0;
+  dpmiregs.x.ss = dpmiregs.x.sp = dpmiregs.x.flags = 0;
+  _go32_dpmi_simulate_int (0x21, &dpmiregs);
+  if (dpmiregs.x.flags & 1)
+    {
+      dos_country_code = 1;    /* assume USA if 213800 failed */
+      memcpy (dos_country_info, usa_country_info, DOS_COUNTRY_INFO);
+    }
   else
     {
   else
     {
-      dpmiregs.x.ax = 0x3800;
-      dpmiregs.x.ds = info.rm_segment;
-      dpmiregs.x.dx = 0;
-      dpmiregs.x.ss = dpmiregs.x.sp = 0;
-      _go32_dpmi_simulate_int (0x21, &dpmiregs);
       dos_country_code = dpmiregs.x.bx;
       dos_country_code = dpmiregs.x.bx;
-      dosmemget (info.rm_segment * 16, DOS_COUNTRY_INFO, dos_country_info);
-      _go32_dpmi_free_dos_memory (&info);
+      dosmemget (xbuf, DOS_COUNTRY_INFO, dos_country_info);
     }
     }
+
   dos_set_keyboard (dos_country_code, 0);
 
   regs.x.ax = 0x6601;
   dos_set_keyboard (dos_country_code, 0);
 
   regs.x.ax = 0x6601;
@@ -295,6 +338,54 @@ init_dosfns ()
   else
     dos_codepage = regs.x.bx & 0xffff;
 
   else
     dos_codepage = regs.x.bx & 0xffff;
 
+#ifndef HAVE_X_WINDOWS
+  parent_vm_title[0] = '\0';
+
+  /* If we are running from DOS box on MS-Windows, get Windows version.  */
+  dpmiregs.x.ax = 0x1600;      /* enhanced mode installation check */
+  dpmiregs.x.ss = dpmiregs.x.sp = dpmiregs.x.flags = 0;
+  _go32_dpmi_simulate_int (0x2f, &dpmiregs);
+  /* We only support Windows-specific features when we run on Windows 9X
+     or on Windows 3.X/enhanced mode.
+
+     Int 2Fh/AX=1600h returns:
+
+     AL = 00:  no Windows at all;
+     AL = 01:  Windows/386 2.x;
+     AL = 80h: Windows 3.x in mode other than enhanced;
+     AL = FFh: Windows/386 2.x
+
+     We also check AH > 0 (Windows 3.1 or later), in case AL tricks us.  */
+  if (dpmiregs.h.al > 2 && dpmiregs.h.al != 0x80 && dpmiregs.h.al != 0xff
+      && (dpmiregs.h.al > 3 || dpmiregs.h.ah > 0))
+    {
+      dos_windows_version = dpmiregs.x.ax;
+      Vdos_windows_version =
+       Fcons (make_number (dpmiregs.h.al), make_number (dpmiregs.h.ah));
+
+      /* Save the current title of this virtual machine, so we can restore
+        it before exiting.  Otherwise, Windows 95 will continue to use
+        the title we set even after we are history, stupido...  */
+      if (dpmiregs.h.al >= 4)
+       {
+         dpmiregs.x.ax = 0x168e;
+         dpmiregs.x.dx = 3;    /* get VM title */
+         dpmiregs.x.cx = sizeof(parent_vm_title) - 1;
+         dpmiregs.x.es = __tb >> 4;
+         dpmiregs.x.di = __tb & 15;
+         dpmiregs.x.sp = dpmiregs.x.ss = dpmiregs.x.flags = 0;
+         _go32_dpmi_simulate_int (0x2f, &dpmiregs);
+         if (dpmiregs.x.ax == 1)
+           dosmemget (__tb, sizeof(parent_vm_title), parent_vm_title);
+       }
+    }
+  else
+    {
+      dos_windows_version = 0;
+      Vdos_windows_version = Qnil;
+    }
+#endif /* !HAVE_X_WINDOWS */
+
 #if __DJGPP__ >= 2
 
   /* Without this, we never see hidden files.
 #if __DJGPP__ >= 2
 
   /* Without this, we never see hidden files.
@@ -311,6 +402,122 @@ init_dosfns ()
 #endif /* __DJGPP__ >= 2 */
 }
 \f
 #endif /* __DJGPP__ >= 2 */
 }
 \f
+#ifndef HAVE_X_WINDOWS
+
+/* Emulation of some X window features from xfns.c and xfaces.c.  */
+
+/* Standard VGA colors, in the order of their standard numbering
+   in the default VGA palette.  */
+static char *vga_colors[16] = {
+  "black", "blue", "green", "cyan", "red", "magenta", "brown",
+  "lightgray", "darkgray", "lightblue", "lightgreen", "lightcyan",
+  "lightred", "lightmagenta", "yellow", "white"
+};
+
+/* Given a color name, return its index, or -1 if not found.  Note
+   that this only performs case-insensitive comparison against the
+   standard names.  For anything more sophisticated, like matching
+   "gray" with "grey" or translating X color names into their MSDOS
+   equivalents, call the Lisp function Qmsdos_color_translate (defined
+   on lisp/term/pc-win.el).  */
+int
+msdos_stdcolor_idx (const char *name)
+{
+  int i;
+
+  for (i = 0; i < sizeof (vga_colors) / sizeof (vga_colors[0]); i++)
+    if (strcasecmp (name, vga_colors[i]) == 0)
+      return i;
+
+  return FACE_TTY_DEFAULT_COLOR;
+}
+
+/* Given a color index, return its standard name.  */
+char *
+msdos_stdcolor_name (int idx)
+{
+  if (idx < 0 || idx >= sizeof (vga_colors) / sizeof (vga_colors[0]))
+    return ""; /* meaning the default */
+  return vga_colors[idx];
+}
+
+/* Support for features that are available when we run in a DOS box
+   on MS-Windows.  */
+int
+ms_windows_version (void)
+{
+  return dos_windows_version;
+}
+
+/* Set the title of the current virtual machine, to appear on
+   the caption bar of that machine's window.  */
+
+int
+w95_set_virtual_machine_title (const char *title_string)
+{
+  /* Only Windows 9X (version 4 and higher) support this function.  */
+  if (!NILP (Vdos_windows_version)
+      && (dos_windows_version & 0xff) >= 4)
+    {
+      _go32_dpmi_registers regs;
+      dosmemput (title_string, strlen (title_string) + 1, __tb);
+      regs.x.ax = 0x168e;
+      regs.x.dx = 1;
+      regs.x.es = __tb >> 4;
+      regs.x.di = __tb & 15;
+      regs.x.sp = regs.x.ss = regs.x.flags = 0;
+      _go32_dpmi_simulate_int (0x2f, &regs);
+      return regs.x.ax == 1;
+    }
+  return 0;
+}
+
+/* Change the title of frame F to NAME.
+   If NAME is nil, use the frame name as the title.
+
+   If Emacs is not run from a DOS box on Windows 9X, this only
+   sets the name in the frame struct, but has no other effects.  */
+
+void
+x_set_title (f, name)
+     struct frame *f;
+     Lisp_Object name;
+{
+  /* Don't change the title if it's already NAME.  */
+  if (EQ (name, f->title))
+    return;
+
+  update_mode_lines = 1;
+
+  f->title = name;
+
+  if (NILP (name))
+    name = f->name;
+
+  if (FRAME_MSDOS_P (f))
+    {
+      BLOCK_INPUT;
+      w95_set_virtual_machine_title (XSTRING (name)->data);
+      UNBLOCK_INPUT;
+    }
+}
+#endif /* !HAVE_X_WINDOWS */
+\f
+void
+dos_cleanup (void)
+{
+#ifndef HAVE_X_WINDOWS
+  restore_parent_vm_title ();
+#endif
+  /* Make sure the termscript file is committed, in case we are
+     crashing and some vital info was written there.  */
+  if (termscript)
+    {
+      fflush (termscript);
+      fsync (fileno (termscript));
+    }
+}
+
 /*
  *     Define everything
  */
 /*
  *     Define everything
  */
@@ -353,6 +560,11 @@ Implicitly modified when the TZ variable is changed.");
   DEFVAR_LISP ("dos-version", &Vdos_version,
     "The (MAJOR . MINOR) Dos version (subject to modification with setver).");
 
   DEFVAR_LISP ("dos-version", &Vdos_version,
     "The (MAJOR . MINOR) Dos version (subject to modification with setver).");
 
+#ifndef HAVE_X_WINDOWS
+  DEFVAR_LISP ("dos-windows-version", &Vdos_windows_version,
+    "The (MAJOR . MINOR) Windows version for DOS session on MS-Windows.");
+#endif
+
   DEFVAR_LISP ("dos-display-scancodes", &Vdos_display_scancodes,
     "*When non-nil, the keyboard scan-codes are displayed at the bottom right\n\
 corner of the display (typically at the end of the mode line).\n\
   DEFVAR_LISP ("dos-display-scancodes", &Vdos_display_scancodes,
     "*When non-nil, the keyboard scan-codes are displayed at the bottom right\n\
 corner of the display (typically at the end of the mode line).\n\