InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IImportEPSCmdData.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 // Command data for importing EPS/AI files.
25 //
26 //========================================================================================
27 
28 #ifndef __IImportEPSCmdData__
29 #define __IImportEPSCmdData__
30 
31 #include "IPMUnknown.h"
32 
33 class IDataBase;
34 class IPMStream;
35 class PMReal;
36 
40 {
41 public:
54  virtual void Set( IDataBase* db,
55  const UID uid,
56  const PMReal& targetRes,
57  IPMStream* pStreamToImport,
58  const UIFlags uiFlags,
59  const bool16 bAddProColor,
60  const bool16 bImportDCS,
61  const bool16 bReadOPI,
62  const bool16 bCreateFrame,
63  UID uidPreview) = 0;
64 
68  virtual IDataBase* GetEPSDB() const = 0;
69 
73  virtual UID GetEPSUID() const = 0;
74 
78  virtual PMReal GetTargetRes() const = 0;
79 
83  virtual IPMStream* GetStream() const = 0;
84 
88  virtual UIFlags GetUIFlags() const = 0;
89 
93  virtual bool16 GetAddProColor() const = 0;
94 
98  virtual bool16 GetImportDCS() const = 0;
99 
103  virtual bool16 GetReadOPI() const = 0;
104 
108  virtual bool16 GetCreateFrame() const = 0;
109 
113  virtual UID GetPreview() const = 0;
114 };
115 
116 #endif