InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IInCopyImportOptions.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: craig rainwater
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 
24 #ifndef __IInCopyImportOptions__
25 #define __IInCopyImportOptions__
26 
27 #include "IPMUnknown.h"
28 #include "IXMLOutStream.h"
29 #include "IInCopyImportSupport.h"
30 
31 #include "InCopySharedID.h"
32 
33 
51 {
52  public:
53  enum { kDefaultIID = IID_IINCOPYIMPORTOPTIONS };
54 
55  //----------------------------------------------------------------------------------------
56 
64  virtual void Set(
65  bool16 importStyleTable,
66  bool16 importSwatchList,
67  bool16 importXMPData = kTrue,
68  bool16 importXMLTagList = kTrue,
69  IInCopyImportSupport* importSupport = nil
70  ) = 0;
71 
75  virtual void ImportSupport(
76  IInCopyImportSupport* importSupport
77  ) = 0;
78 
83  virtual IInCopyImportSupport* ImportSupport() const = 0;
84 
88  virtual void ImportStyleTable(
89  bool16 importStyleTable
90  ) = 0;
91 
96  virtual bool16 ImportStyleTable() const = 0;
97 
101  virtual void ImportSwatchList(
102  bool16 importSwatchList
103  ) = 0;
104 
109  virtual bool16 ImportSwatchList() const = 0;
110 
115  virtual void ImportXMPData(
116  bool16 importXMPData
117  ) = 0;
118 
124  virtual bool16 ImportXMPData() const = 0;
125 
130  virtual bool16 ImportXMLTagList() const = 0;
131 };
132 #endif // __IInCopyImportOptions__