home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / fontutils-0.6-base.tgz / fontutils-0.6-base.tar / fsf / fontutils / bzrto / psutil.h < prev    next >
C/C++ Source or Header  |  1992-10-19  |  2KB  |  67 lines

  1. /* psutil.h: utility routines for PostScript output (used for both Type 1 and
  2.    Type 3 format).
  3.  
  4. Copyright (C) 1992 Free Software Foundation, Inc.
  5.  
  6. This program 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.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. #ifndef PSUTIL_H
  21. #define PSUTIL_H
  22.  
  23. #include <stdio.h>
  24. #include "tfm.h"
  25. #include "types.h"
  26.  
  27.  
  28. /* Global information about a PostScript font.  */
  29. typedef struct
  30. {
  31.   string family_name;
  32.   string font_name;
  33.   real interword_space;
  34.   int italic_angle; /* In degrees.  */
  35.   boolean monospace_p;
  36.   int underline_position, underline_thickness; /* In 1000 units/em.  */
  37.   int unique_id;
  38.   string version;
  39.   string weight;
  40. } ps_font_info_type;
  41.  
  42.  
  43. /* Return the information that goes in the FontInfo dictionary, as well
  44.    as a few other miscellanous things.  */
  45. extern ps_font_info_type ps_set_font_info (void);
  46.  
  47. /* Output the starting boilerplate that is the same for Type 1 and Type
  48.    3 fonts to the file F, using the other args for information.  */
  49. extern void ps_start_font (FILE *f, ps_font_info_type ps_info,
  50.                            string comment);
  51.  
  52. /* Output an encoding vector, using CHAR_OUTPUT_P to tell which
  53.    characters exist in the font.  */
  54. extern void ps_output_encoding (FILE *, boolean char_output_p[]);
  55.  
  56. /* Return the name corresponding to character code N in `encoding_info'.  */
  57. extern string ps_encoding_name (charcode_type n);
  58.  
  59. /* Given the name NAME of a character, find its number in the current
  60.    encoding vector.  If NAME is not defined, return -1.  */
  61. extern int ps_encoding_number (string name);
  62.  
  63. /* User option; see psutil.c.  */
  64. extern string ps_global_info;
  65.  
  66. #endif /* not PSUTIL_H */
  67.