home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / pc / pm65sdk / sourcecode / pagemakerclasslibrary / commands / pspaceoptions.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-04  |  705 b   |  37 lines

  1. /*
  2.  *--- PSpaceOptions.h -----------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 4:19 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PSpaceOptions__
  10. #define __PSpaceOptions__
  11.  
  12. #include "PMTypes.h"
  13.  
  14. class PGetSpaceOptions;
  15.  
  16. class PSpaceOptions
  17. {
  18.  
  19. public:
  20.  
  21.     PSpaceOptions
  22.       (    PMBool    bAutoKerning,
  23.         short    dPtThreshold,
  24.         short    cLeading,
  25.         short    dAutoleading);
  26.     
  27.     PSpaceOptions(const PGetSpaceOptions& spaceOpts);
  28.  
  29. private:
  30.  
  31.     PSpaceOptions();
  32. };
  33.  
  34. #endif
  35.  
  36. // end of PSpaceOptions.h
  37.