InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
ProcessInkNames.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: ?
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 // ABSTRACT:
24 // This file defines the process ink names, which are used in the AddInkCmd
25 // and in the Print plugin.
26 //
27 //========================================================================================
28 
29 #ifndef __PROCESSINKNAMES__
30 #define __PROCESSINKNAMES__
31 
32 // Localization Note: It is important that the process ink name that
33 // an ink is initialized with (in \source\private\color\AddInkCmd.cpp)
34 // is the same name that it is compared against when printing - (in
35 // \source\components\print\PrintInitClientItemsCmd.cpp). As long as
36 // these two name match correctly, printing separations will be correct.
37 
38 // CMYK space
39 #define kProcessCyan "Process Cyan"
40 #define kProcessMagenta "Process Magenta"
41 #define kProcessYellow "Process Yellow"
42 #define kProcessBlack "Process Black"
43 
44 // HEX space
45 #define kHexachromeCyan "Hexachrome Cyan"
46 #define kHexachromeMagenta "Hexachrome Magenta"
47 #define kHexachromeYellow "Hexachrome Yellow"
48 #define kHexachromeBlack "Hexachrome Black"
49 #define kHexachromeOrange "Hexachrome Orange"
50 #define kHexachromeGreen "Hexachrome Green"
51 
52 // PS ink names
53 #define kPSCyan "Cyan"
54 #define kPSMagenta "Magenta"
55 #define kPSYellow "Yellow"
56 #define kPSBlack "Black"
57 #define kPSSeparationAll "All"
58 
59 #endif