InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IEPSPreferences.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 // Stores the current EPS import preferences. These preferences should
25 // be set using the kSetEPSPrefsCmdBoss command.
26 //
27 //========================================================================================
28 
29 #ifndef __IEPSPreferences__
30 #define __IEPSPreferences__
31 
32 #include "IPMUnknown.h"
33 #include "PMReal.h"
34 
39 {
40 public:
43  enum
44  {
48 
56 
63 
70 
78 
85 
95  };
96 
100  virtual void SetImportPref(const int32 importPref) = 0;
101 
105  virtual void SetAddProcessColors(const int32 addProColor) = 0;
106 
110  virtual void SetImportDCS(const int32 importDCS) = 0;
111 
115  virtual void SetReadOPI(const int32 readOPI) = 0;
116 
120  virtual void SetCreateFrame(const int32 createFrame) = 0;
121 
125  virtual void SetDisplayRes(const PMReal& displayRes) = 0;
126 
130  virtual void SetCreateProxy(const int32 createProxy) = 0;
131 
135  virtual int32 GetImportPref() const = 0;
136 
140  virtual int32 GetAddProcessColors() const = 0;
141 
145  virtual int32 GetImportDCS() const = 0;
146 
150  virtual int32 GetReadOPI() const = 0;
151 
155  virtual int32 GetCreateFrame() const = 0;
156 
160  virtual PMReal GetDisplayRes() const = 0;
161 
165  virtual int32 GetCreateProxy() const = 0;
166 
167 };
168 
169 #endif