InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
ITransformSwatchesCmdData.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: James Jardee-Borquist
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 __ITRANSFORMSWATCHESCMDDATA__
25 #define __ITRANSFORMSWATCHESCMDDATA__
26 
27 #if PRAGMA_ONCE
28 #endif
29 
30 #include "ICMSSettings.h"
31 #include "IPMUnknown.h"
32 
33 #include "ACEColorMgmtID.h"
34 
35 class ICMSProfile;
36 class ISwatchList;
37 
38 //========================================================================================
39 // CLASS ITransformSwatchesCmdData
40 //========================================================================================
41 
45 {
46 public:
47  enum { kDefaultIID = IID_ITRANSFORMSWATCHESCMDDATA };
48 
60  virtual void Set(IDataBase* pSrcDB,
61  const PMString& strSrcProfile,
62  IDataBase* pDstDB,
63  const PMString& strDstProfile,
64  ICMSSettings::renderingIntent inIntent,
65  bool16 inUseKPC,
66  uint32 inEngineCMS,
67  uint32 inEngineCMM,
68  ISwatchList* inSwatchList) = 0;
69 
72  virtual ICMSProfile *QuerySrcProfile() = 0;
75  virtual ICMSProfile *QueryDstProfile() = 0;
78  virtual ICMSSettings::renderingIntent GetIntent() const = 0;
81  virtual bool16 GetUseKPC() const = 0;
84  virtual uint32 GetEngineCMS() const = 0;
87  virtual uint32 GetEngineCMM() const = 0;
90  virtual ISwatchList *GetSwatchList() const = 0;
91 };
92 
93 #endif // __ITransformSwatchesCmdData__
94 
95 // End, ITransformSwatchesCmdData.h.