InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IInCopyPDFExptDialogData.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 the pdf export dialog in InCopy.
28 //
29 //========================================================================================
30 
31 #ifndef __IInCopyPDFExptDialogData__
32 #define __IInCopyPDFExptDialogData__
33 
34 #include "IPMUnknown.h"
35 #include "IInCopyPDFExptLayoutData.h"
36 #include "IInCopyPDFExptGalleyData.h"
37 #include "IInCopyGalleySettingData.h"
38 #include "IPDFExportPrefs.h"
39 
40 #include "UIDRef.h"
41 
45 {
46 public:
47  //galley or layout dialog panel flags
48  enum {
49  kLayoutPanel = 0,
50  kGalleyPanel = 1
51  };
52 
56  virtual void SetLayoutData(IInCopyPDFExptLayoutData* iData) = 0;
57 
61  virtual void SetGalleyData(IInCopyPDFExptGalleyData* iData) = 0;
62 
66  virtual void SetGalleySettingData(IInCopyGalleySettingData* iSettingData) = 0;
67 
71  virtual void SetCurrentPanel(const int32 panel) = 0;
72 
76  virtual void SetExportPrefs(IPDFExportPrefs* iData) = 0;
77 
82  virtual IInCopyPDFExptLayoutData* GetLayoutData() const = 0;
83 
88  virtual IInCopyPDFExptGalleyData* GetGalleyData() const = 0;
89 
95 
100  virtual IPDFExportPrefs* GetExportPrefs() const = 0;
101 
106  virtual int32 GetCurrentPanel() const = 0;
107 };
108 
109 #endif // __IInCopyPDFExptDialogData__