InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IPrintInsertPSProcProvider.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: David Berggren
6 //
7 // $Author$
8 //
9 // $DateTime$
10 //
11 // $Revision$
12 //
13 // $Change$
14 //
15 // Copyright 1997-2010 Adobe Systems Incorporated. All rights reserved.
16 //
17 // NOTICE: Adobe permits you to use, modify, and distribute this file in accordance
18 // with the terms of the Adobe license agreement accompanying it. If you have received
19 // this file from a source other than Adobe, then your use, modification, or
20 // distribution of it requires the prior written permission of Adobe.
21 //
22 //
23 // Purpose:
24 // Provider interface for setting up or changing the print parameters, prior to
25 // or during the printing process.
26 //
27 //========================================================================================
28 
29 #ifndef __IPrintInsertPSProcProvider__
30 #define __IPrintInsertPSProcProvider__
31 
32 #include "IPMUnknown.h"
33 #include "IXferBytes.h"
34 
35 class IPrintData;
36 class IOutputPages;
37 class IPrintJobData;
38 class IInkList;
39 class ITrapStyleListMgr;
40 
44 {
45 public:
49  /* Document Level */
58 
59  /* Page Level */
68  };
69 
77  virtual void Setup (IPrintData *iPrintData,
78  IOutputPages *iOutputPages,
79  IPrintJobData *iPrintJobData,
80  IInkList *iInkList,
81  ITrapStyleListMgr *iTrapListMgr) = 0;
82 
89  virtual void GetInsertPSProcName (PMString& psProcName) = 0;
90 
96  virtual void GetClientData (void **clientData) = 0;
97 
107  virtual void PrintInsertPSProc(
108  bool8& bReturn,
109  DocumentSection docSec,
110  bool32 pre,
111  IXferBytes& pASCIIStream,
112  IXferBytes& pBinaryStream,
113  void *clientData
114  ) = 0;
115 };
116 
117 #endif