Initial release of Maemo 5 port of gnuplot
[gnuplot] / src / term.h
diff --git a/src/term.h b/src/term.h
new file mode 100644 (file)
index 0000000..dc3c58d
--- /dev/null
@@ -0,0 +1,458 @@
+/*
+ * $Id: term.h,v 1.35 2006/04/29 05:30:07 tlecomte Exp $
+ */
+
+/* GNUPLOT - term.h */
+
+/*[
+ * Copyright 1986 - 1993, 1998, 2004   Thomas Williams, Colin Kelley
+ *
+ * Permission to use, copy, and distribute this software and its
+ * documentation for any purpose with or without fee is hereby granted,
+ * provided that the above copyright notice appear in all copies and
+ * that both that copyright notice and this permission notice appear
+ * in supporting documentation.
+ *
+ * Permission to modify the software is granted, but not the right to
+ * distribute the complete modified source code.  Modifications are to
+ * be distributed as patches to the released version.  Permission to
+ * distribute binaries produced by compiling modified sources is granted,
+ * provided you
+ *   1. distribute the corresponding source modifications from the
+ *    released version in the form of a patch file along with the binaries,
+ *   2. add special version identification to distinguish your version
+ *    in addition to the base release version number,
+ *   3. provide your name and address as the primary contact for the
+ *    support of your modified version, and
+ *   4. retain our contact information in regard to use of the base
+ *    software.
+ * Permission to distribute the released version of the source code along
+ * with corresponding source modifications in the form of a patch file is
+ * granted with same provisions 2 through 4 for binary distributions.
+ *
+ * This software is provided "as is" without express or implied warranty
+ * to the extent permitted by applicable law.
+]*/
+
+/*
+ * term.h: terminal support definitions
+ *   Edit this file depending on the set of terminals you wish to support.
+ * Comment out the terminal types that you don't want or don't have, and
+ * uncomment those that you want included. Be aware that some terminal
+ * types (eg, SUN, UNIXPLOT) will require changes in the makefile
+ * LIBS definition.
+ */
+
+/*
+ * first draft after all terminals are converted to new layout
+ * Stefan Bodewig Dec. 1995
+ */
+
+/*
+ * >>> CONFIGURATION OPTIONS FOLLOW <<<  PLEASE READ
+ *
+ * pslatex and epslatex support is now provided by the combination of
+ * post.trm and pslatex.trm.  You cannot build pslatex without post.
+ * Both drivers are selected by default, but you can disable them below.
+ */
+#define GP_ENH_EST 1           /* estimate string length of enhanced text */
+#define POSTSCRIPT_DRIVER 1    /* include post.trm */
+#define PSLATEX_DRIVER 1       /* include pslatex.trm */
+
+#if defined(PSLATEX_DRIVER) && !defined(POSTSCRIPT_DRIVER)
+#define POSTSCRIPT_DRIVER
+#endif
+
+
+/* Define SHORT_TERMLIST to select a few terminals. It is easier
+ * to define the macro and list desired terminals in this section.
+ * Sample configuration for a Unix workstation
+ */
+#ifdef SHORT_TERMLIST
+# include "dumb.trm"           /* dumb terminal */
+
+# ifdef GP_ENH_EST
+#  include "estimate.trm"      /* used for enhanced text processing */
+# endif
+
+# ifdef POSTSCRIPT_DRIVER
+#  ifdef  PSLATEX_DRIVER
+#   undef PSLATEX_DRIVER
+#  endif
+#  include "post.trm"          /* postscript */
+# endif
+
+# ifdef X11
+#  include "x11.trm"           /* X Window system */
+# endif                                /* X11 */
+# ifdef OS2
+#  include "pm.trm"            /* OS/2 Presentation Manager */
+# endif
+# ifdef _Windows
+#  include "win.trm"           /* MS-Windows */
+# endif
+#else /* include all applicable terminals not commented out */
+
+/****************************************************************************/
+/* Platform dependent part                                                  */
+/****************************************************************************/
+
+/* Amiga */
+#ifdef AMIGA
+# include "amiga.trm"
+#endif
+
+
+/* Atari ST and MTOS */
+#if defined(ATARI) || defined(MTOS)
+# include "atarivdi.trm"
+# ifdef MTOS
+#  include "multitos.trm"
+# endif
+# include "atariaes.trm"
+#endif
+
+
+/* Apple Macintosh */
+#ifdef _Macintosh
+# include "mac.trm"
+#endif
+
+
+/* BeOS */
+#ifdef __BEOS__
+# include "be.trm"
+#endif
+
+
+/****************************************************************************/
+/* MS-DOS and Windows */
+#if defined(MSDOS) || defined(_Windows) || defined(DOS386)
+
+/* MSDOS with emx-gcc compiler */
+# if defined(MSDOS) && defined(__EMX__)
+   /* Vesa-Cards */
+#  define EMXVESA
+#  include "emxvga.trm"
+# endif                                /* MSDOS && EMX */
+
+/* MSDOS with djgpp compiler */
+# if defined(DJGPP) && (!defined(DJSVGA) || (DJSVGA != 0))
+#  include "djsvga.trm"
+# endif
+
+/* MSDOS with Zortech-C++ Compiler */
+# ifdef __ZTC__
+#  include "fg.trm"
+# endif
+
+/* All other Compilers */
+# ifndef _Windows
+#  ifdef PC
+/* uncomment the next line to include SuperVGA support */
+#   define BGI_NAME "svga256"  /* the name of the SVGA.BGI for Borland C */
+/* this also triggers the inclusion of Super VGA support */
+#   include "pc.trm"           /* all PC types except MS WINDOWS */
+#  endif
+# else                         /* _Windows */
+#  include "win.trm"           /* MS-Windows */
+# endif                                /* _Windows */
+#endif /* MSDOS || _Windows */
+/****************************************************************************/
+
+
+/* NeXT */
+#ifdef NEXT
+# include "next.trm"
+#endif
+
+/* Apple Mac OS X Server 1.0 (Openstep Unix) */
+/* Apparently, Openstep code won't work on newer versions of
+ * MacOS X. If someone can fix this, and provide a proper
+ * configure test, let us know.
+ */
+/*
+ * #if defined(__APPLE__) && defined(__MACH__)
+ * # include "openstep.trm"
+ * #endif
+*/
+
+/* Apple Mac OS X */
+#ifdef HAVE_LIBAQUATERM
+/* support for AquaTerm.app */
+# include "aquaterm.trm"
+#endif
+
+/* OS/2 */
+#ifdef OS2
+/* presentation manager */
+# include "pm.trm"
+# ifdef EMXVESA
+/* works with DOS and OS/2 (windowed/full screen) */
+#  include "emxvga.trm"
+# endif
+#endif /* OS2 */
+
+
+/***************************************************************************/
+/* Terminals for various Unix platforms                                    */
+/***************************************************************************/
+
+/* Apollo Graphics Primitive Resource */
+#ifdef APOLLO
+/* with resizeable windows */
+# include "apollo.trm"
+#  ifdef GPR
+/* with fixed windows */
+#   include "gpr.trm"
+#  endif
+#endif /* Apollo */
+
+/* Iris */
+#ifdef IRIS
+# include "iris4d.trm"
+#endif
+
+
+/* Linux VGA */
+#ifdef LINUXVGA
+# include "linux.trm"
+
+/* Linux VGAGL */
+# if defined(VGAGL) && defined (THREEDKIT)
+#  include "vgagl.trm"
+# endif
+#endif /* LINUXVGA */
+
+/* MGR Window system */
+#ifdef MGR
+# include "mgr.trm"
+#endif
+
+/* Redwood Graphics Interface Protocol UNIPLEX */
+/* Metafile, requires POSIX */
+#ifdef RGIP
+# include "rgip.trm"
+#endif
+
+
+/* SCO CGI drivers */
+#ifdef SCO
+# include "cgi.trm"
+#endif
+
+/* SunView */
+#ifdef SUN
+# include "sun.trm"
+#endif
+
+
+/* VAX Windowing System requires UIS libraries */
+#ifdef UIS
+# include "vws.trm"
+#endif
+
+/* AT&T Unix-PC */
+#ifdef UNIXPC
+# include "unixpc.trm"
+#endif
+
+/****************************************************************************/
+/* Terminals not relevant for MSDOS, MS-Windows, ATARI or Amiga             */
+#if !(defined(MSDOS) || defined(_Windows) || defined(ATARI) || defined(MTOS) || defined(AMIGA))
+
+/* AED 512 and AED 767 graphics terminals */
+# include "aed.trm"
+
+# if defined(UNIXPLOT) || defined(GNUGRAPH)
+#  ifdef GNUGRAPH
+#   include "gnugraph.trm"
+#  else
+#   include "unixplot.trm"
+#  endif                       /* !GNUGRAPH */
+# endif                                /* UNIXPLOT || GNUGRAPH */
+
+/* gpic for groff */
+# include "gpic.trm"
+
+/* REGIS graphics language */
+# include "regis.trm"
+
+/* Tektronix 4106, 4107, 4109 and 420x terminals */
+# include "t410x.trm"
+
+/* a Tek 4010 and others including VT-style */
+# include "tek.trm"
+
+
+#endif /* !MSDOS && !_Windows && !_ATARI && !_MTOS && !AMIGA */
+/****************************************************************************/
+
+
+/****************************************************************************/
+/* These terminals can be used on any system */
+
+#ifdef X11
+# include "x11.trm"            /* X Window System */
+# include "xlib.trm"           /* dumps x11 commands to gpoutfile */
+#endif
+
+/* Adobe Illustrator Format */
+#include "ai.trm"
+
+/* Computer Graphics Metafile (eg ms office) */
+#include "cgm.trm"
+
+/* CorelDraw! eps format */
+#include "corel.trm"
+
+/* debugging terminal */
+#ifdef DEBUG
+# include "debug.trm"
+#endif
+
+/* dumb terminal */
+#include "dumb.trm"
+
+/* DXF format for use with AutoCad (Release 10.x) */
+#include "dxf.trm"
+
+/* Enhanced Metafile Format driver */
+#include "emf.trm"
+
+/* Roland DXY800A plotter */
+/* #include "dxy.trm" */
+/* QMS/EXCL laserprinter (Talaris 1590 and others) */
+/* #include "excl.trm" */
+
+/* fig graphics */
+#include "fig.trm"
+
+/* geographical info system */
+/* #include "grass.trm" */
+
+/* HP2623A and probably others */
+#include "hp26.trm"
+
+/* HP2647 and 2648 */
+#include "hp2648.trm"
+
+/* HP DeskJet 500 C */
+#include "hp500c.trm"
+
+/* HP7475, HP7220 plotters, and (hopefully) lots of others */
+#include "hpgl.trm"
+
+/* HP Laserjet II */
+#include "hpljii.trm"
+
+/* HP PrintJet */
+#include "hppj.trm"
+
+/* Imagen laser printers */
+#include "imagen.trm"
+
+/* Kyocera Prescribe printer */
+/* #include "kyo.trm" */
+
+/* Frame Maker MIF 3.00 format driver */
+#include "mif.trm"
+
+/* portable bit map */
+#include "pbm.trm"
+
+/* Adobe Portable Document Format (PDF) */
+/* NOTE THAT PDF REQUIRES A SEPARATE LIBRARY : see term/pdf.trm */
+#ifdef HAVE_LIBPDF
+# include "pdf.trm"
+#endif
+
+#if defined(HAVE_GD_PNG) || defined(HAVE_GD_JPEG) || defined(HAVE_GD_GIF)
+# include "gd.trm"
+#endif
+
+/* postscript */
+#ifdef POSTSCRIPT_DRIVER
+#include "post.trm"
+#endif
+
+/* QMS laser printers */
+#include "qms.trm"
+
+/* W3C Scalable Vector Graphics file */
+#include "svg.trm"
+
+/* x11 tgif tool */
+#include "tgif.trm"
+
+/* tcl/tk with perl extensions */
+#include "tkcanvas.trm"
+
+/* Vectrix 384 printer, also Tandy colour */
+/* #include "v384.trm" */
+
+/* wire printers */
+/* Epson LX-800, Star NL-10, NX-1000 and lots of others */
+#define EPSONP
+
+/* Epson-style 60-dot per inch printers */
+#define EPS60
+
+/* Epson-style 180-dot per inch (24 pin) printers */
+#define EPS180
+
+#define NEC
+#define OKIDATA
+#define STARC
+
+/* Tandy DMP-130 series 60-dot per inch graphics */
+#define TANDY60
+
+/* the common driver file for all of these */
+#include "epson.trm"
+
+
+/* TeX related terminals */
+#define EMTEX
+#define EEPIC
+
+/* latex and emtex */
+#include "latex.trm"
+
+/* latex/tex with picture in postscript */
+#ifdef PSLATEX_DRIVER
+#include "pslatex.trm"
+#endif
+
+/* EEPIC-extended LaTeX driver, for EEPIC users */
+#include "eepic.trm"
+
+/* TPIC specials for TeX */
+#include "tpic.trm"
+
+/* LaTeX picture environment with PSTricks macros */
+#include "pstricks.trm"
+
+/* TeXDraw drawing package for LaTeX */
+#include "texdraw.trm"
+
+/* METAFONT */
+#include "metafont.trm"
+
+/* METAPOST */
+#include "metapost.trm"
+
+#ifdef USE_GGI_DRIVER
+# include "ggi.trm"
+#endif
+
+#ifdef GP_ENH_EST
+#include "estimate.trm"
+#endif
+
+/* WXWIDGETS */
+#ifdef WXWIDGETS
+# include "wxt.trm"
+#endif
+
+#endif /* !SHORT_TERMLIST */