InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IInCopyPrintDialogData.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Cindy Chen
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 // The data interface for the print dialog in InDesign.
25 //
26 // Purpose:
27 // The data interface for print dialog in InCopy.
28 //
29 //========================================================================================
30 
31 #ifndef __IInCopyPrintDialogData__
32 #define __IInCopyPrintDialogData__
33 
34 #include "IPMUnknown.h"
35 #include "IInCopyLayoutPrintData.h"
36 #include "IInCopyGalleyPrintData.h"
37 #include "IInCopyGalleySettingData.h"
38 #include "IPrintData.h"
39 #include "UIDRef.h"
40 
44 {
45 public:
47  enum {
48  kLayoutPanel = 0,
49  kGalleyPanel = 1
50  };
51 
55  virtual void SetLayoutPrintData(IInCopyLayoutPrintData* iPrintData) = 0;
56 
60  virtual void SetPrintData(IPrintData* iPrintData) = 0;
61 
65  virtual void SetGalleyPrintData(IInCopyGalleyPrintData* iPrintData) = 0;
66 
70  virtual void SetGalleySettingData(IInCopyGalleySettingData* iSettingData) = 0;
71 
75  virtual void SetDocUIDRef(const UIDRef& docUIDRef) = 0;
76 
80  virtual void SetCurrentPanel(const int32 panel) = 0;
81 
85  virtual IInCopyLayoutPrintData* GetLayoutPrintData() const = 0;
86 
90  virtual IInCopyGalleyPrintData* GetGalleyPrintData() const = 0;
91 
96 
100  virtual IPrintData* GetPrintData() const = 0;
101 
105  virtual const UIDRef& GetDocUIDRef() const = 0;
106 
110  virtual int32 GetCurrentPanel() const = 0;
111 };
112 
113 #endif // __IInCopyPrintDialogData__