Go to the source code of this file.
Classes | |
class | ColourPlate |
The ColourPlate class is used as a descriptor defining how a colour context should separate/filter a colour as it is converted. More... | |
Enumerations | |
enum | ColourPlateType { COLOURPLATE_NONE, COLOURPLATE_COMPOSITE, COLOURPLATE_CYAN, COLOURPLATE_MAGENTA, COLOURPLATE_YELLOW, COLOURPLATE_KEY, COLOURPLATE_SPOT } |
enum | ScreenType { SCRTYPE_NONE, SCRTYPE_SPOT1, SCRTYPE_SPOT2, SCRTYPE_TRIPLESPOT1, SCRTYPE_TRIPLESPOT2, SCRTYPE_ELLIPTICAL, SCRTYPE_LINE, SCRTYPE_CROSSHATCH, SCRTYPE_MEZZOTINT, SCRTYPE_SQUARE, SCRTYPE_DITHER } |
enumeration of the screen types we support inside a plate More... |
|
Definition at line 110 of file colplate.h. 00111 { 00112 COLOURPLATE_NONE, // No colour plate (normal rendering operation) 00113 00114 COLOURPLATE_COMPOSITE, // Composite print-preview (colour matching) 00115 00116 COLOURPLATE_CYAN, // Process colour separation plates 00117 COLOURPLATE_MAGENTA, 00118 COLOURPLATE_YELLOW, 00119 COLOURPLATE_KEY, 00120 00121 COLOURPLATE_SPOT // Spot colour separation plate 00122 } ColourPlateType;
|
|
enumeration of the screen types we support inside a plate
Definition at line 136 of file colplate.h. 00137 { 00138 SCRTYPE_NONE, 00139 SCRTYPE_SPOT1, 00140 SCRTYPE_SPOT2, 00141 SCRTYPE_TRIPLESPOT1, 00142 SCRTYPE_TRIPLESPOT2, 00143 SCRTYPE_ELLIPTICAL, 00144 SCRTYPE_LINE, 00145 SCRTYPE_CROSSHATCH, 00146 SCRTYPE_MEZZOTINT, 00147 SCRTYPE_SQUARE, 00148 SCRTYPE_DITHER 00149 };
|