InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IEPSPrefsCmdData.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: DBerggren
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 setting the EPS import preferences. Used for
25 // the kSetEPSPrefsCmdBoss command.
26 //
27 //========================================================================================
28 
29 #ifndef __IEPSPrefsCmdData__
30 #define __IEPSPrefsCmdData__
31 
32 #include "IPMUnknown.h"
33 #include "IEPSPreferences.h"
34 
38 {
39 public:
51  virtual void Set( const int32 importEPSmode = IEPSPreferences::kDontChange,
52  const int32 importEPSAddProColor = IEPSPreferences::kDontChange,
53  const int32 importEPSImportDCS = IEPSPreferences::kDontChange,
54  const int32 importEPSReadOPI = IEPSPreferences::kDontChange,
55  const int32 importEPSCreateFrame = IEPSPreferences::kDontChange,
56  const PMReal& importEPSDisplayRes = IEPSPreferences::kDontChange,
57  const int32 importEPSCreateProxy = IEPSPreferences::kDontChange) = 0;
58 
62  virtual void CopyPrefs(IEPSPreferences * copyPref)=0;
63 
67  virtual void SetImportEPSMode(const int32 importEPSmode) = 0;
68 
72  virtual void SetImportEPSAddProColor(const int32 importEPSAddProColor) = 0;
73 
77  virtual void SetImportEPSImportDCS(const int32 importEPSImportDCS) = 0;
78 
82  virtual void SetImportEPSReadOPI(const int32 importEPSReadOPI) = 0;
83 
87  virtual void SetImportEPSCreateFrame(const int32 createFrame) = 0;
88 
92  virtual void SetImportEPSDisplayRes(const PMReal& displayRes) = 0;
93 
97  virtual void SetImportEPSCreateProxy(const int32 createProxy) = 0;
98 
102  virtual int32 GetImportEPSMode(void) const = 0;
103 
107  virtual int32 GetImportEPSAddProColor(void) const = 0;
108 
112  virtual int32 GetImportEPSImportDCS(void) const = 0;
113 
117  virtual int32 GetImportEPSReadOPI(void) const = 0;
118 
122  virtual int32 GetImportEPSCreateFrame(void) const = 0;
123 
127  virtual PMReal GetImportEPSDisplayRes(void) const = 0;
128 
132  virtual int32 GetImportEPSCreateProxy(void) const = 0;
133 
134 };
135 
136 #endif