home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 January: Mac OS SDK / Dev.CD Jan 98 SDK2.toast / Development Kits (Disc 2) / QuickDraw GX / Programming Stuff / GX Libraries / JobFormatModeLibrary.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-06-16  |  1.1 KB  |  39 lines  |  [TEXT/MPS ]

  1.  
  2. /*
  3.     File:        JobFormatModeLibrary.h
  4.  
  5.     Contains:    This file defines interfaces to the printing JobFormatMode library.
  6.  
  7.     Version:    Quickdraw GX 1.1
  8.  
  9.     Written by:    Dave Hersey
  10.  
  11.     Copyright:    © 1994-1995 by Apple Computer, Inc., all rights reserved.
  12.  
  13.     File Ownership:
  14.  
  15.         DRI:                 Dave Hersey
  16.  
  17.         Other Contact:        Ron Voss
  18.  
  19.         Technology:         QuickDraw GX
  20.  
  21.     Change History (most recent first):
  22.  
  23.          <1>      6/6/95    DH        First checked in.
  24. */
  25.  
  26. #ifndef        _JOBFORMATMODELIBRARY_
  27. #define        _JOBFORMATMODELIBRARY_
  28.  
  29. #include <GXPrinting.h>
  30.  
  31. /* Job format mode routines */
  32.  
  33. gxPositionConstraintTableHdl        GetJobFormatLineConstraint(gxJob theJob, gxPositionConstraintTableHdl thePositionsTable);
  34. gxFontTableHdl                            GetJobFormatFonts(gxJob theJob, gxFontTableHdl theFontTable);
  35. gxStyleNameTableHdl                    GetJobFormatFontCommonStyles(gxJob theJob, gxFont theFont, gxStyleNameTableHdl theStyleNameTable);
  36. gxPositionConstraintTableHdl        GetJobFormatFontConstraint(gxJob theJob, gxFont theFont, gxPositionConstraintTableHdl thePositionsTable);
  37. gxStyle                                    SetStyleJobFormatCommonStyle(gxJob theJob, Str255 theStyleName, gxStyle theStyle);
  38.  
  39. #endif