home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / g / gs252src.zip / GS252 / STATE.H < prev    next >
C/C++ Source or Header  |  1992-07-26  |  3KB  |  62 lines

  1. /* Copyright (C) 1989, 1992 Aladdin Enterprises.  All rights reserved.
  2.    Distributed by Free Software Foundation, Inc.
  3.  
  4. This file is part of Ghostscript.
  5.  
  6. Ghostscript is distributed in the hope that it will be useful, but
  7. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  8. to anyone for the consequences of using it or for whether it serves any
  9. particular purpose or works at all, unless he says so in writing.  Refer
  10. to the Ghostscript General Public License for full details.
  11.  
  12. Everyone is granted permission to copy, modify and redistribute
  13. Ghostscript, but only under the conditions described in the Ghostscript
  14. General Public License.  A copy of this license is supposed to have been
  15. given to you along with Ghostscript so you can know your rights and
  16. responsibilities.  It should be in a file named COPYING.  Among other
  17. things, the copyright notice and this notice must be preserved on all
  18. copies.  */
  19.  
  20. /* state.h */
  21. /* Ghostscript interpreter graphics state definition */
  22.  
  23. /* Note that from the interpreter's point of view, */
  24. /* the graphics state is opaque, i.e. the interpreter is */
  25. /* just another client of the library. */
  26.  
  27. /* The interpreter requires additional items in the graphics state. */
  28. /* These are "client data" from the library's point of view. */
  29. /* Note that they are all refs. */
  30. typedef struct int_gstate_s int_gstate;
  31. struct int_gstate_s {
  32.         /* Screen_proc is only relevant if setscreen was */
  33.         /* executed more recently than sethalftone */
  34.         /* (for this graphics context). */
  35.     ref screen_proc;        /* halftone screen procedure */
  36.     struct {
  37.         ref red, green, blue, gray;    /* transfer procedures */
  38.     } transfer_procs;
  39.     ref font;            /* font object (dictionary) */
  40.         /* Colorspace is only relevant if the current */
  41.         /* color space has parameters associated with it. */
  42.     ref colorspace;            /* color space (array) */
  43.         /* Pattern is only relevant if the current color space */
  44.         /* is a pattern space. */
  45.     ref pattern;            /* pattern (dictionary) */
  46.     ref colorrendering;        /* CIE color rendering dictionary */
  47.         /* Halftone is only relevant if sethalftone was executed */
  48.         /* more recently than setscreen for this graphics context. */
  49.         /* setscreen sets it to null. */
  50.     ref halftone;            /* halftone (dictionary) */
  51. };
  52. /* Enumerate the refs in an int_gstate. */
  53. #define int_gstate_map_refs(p,m)\
  54.  (m(&(p)->screen_proc), m(&(p)->transfer_procs.red),\
  55.   m(&(p)->transfer_procs.green), m(&(p)->transfer_procs.blue),\
  56.   m(&(p)->font), m(&(p)->colorspace), m(&(p)->pattern),\
  57.   m(&(p)->colorrendering), m(&(p)->halftone))
  58.  
  59. /* The current instances. */
  60. extern int_gstate istate;
  61. extern gs_state *igs;
  62.