Go to the source code of this file.
Classes | |
class | ColourListComponentClass |
Provide a class that will add Colour List components to new documents. More... | |
class | ColourListComponent |
Provide a component that is linked to a ColourList object. This allows us to save out colour lists using the serialisation facilities of the DocComponent base class. More... | |
Enumerations | |
enum | ColCompCopyResult { CCCOPY_FAILED = 0, CCCOPY_NEWCOLOUR, CCCOPY_MERGEDCOLOUR } |
enum | ExportColourType { EXPORT_COLOURTYPE_NORMAL = 0, EXPORT_COLOURTYPE_SPOT, EXPORT_COLOURTYPE_TINT, EXPORT_COLOURTYPE_LINKED, EXPORT_COLOURTYPE_SHADE } |
|
Definition at line 143 of file colcomp.h. 00144 { 00145 CCCOPY_FAILED = 0, // FALSE 00146 CCCOPY_NEWCOLOUR, 00147 CCCOPY_MERGEDCOLOUR 00148 } ColCompCopyResult;
|
|
Definition at line 153 of file colcomp.h. 00154 { 00155 EXPORT_COLOURTYPE_NORMAL = 0, // The colour is a perfectly normal colour 00156 EXPORT_COLOURTYPE_SPOT, // The colour is a Spot Colour 00157 EXPORT_COLOURTYPE_TINT, // The colour is a Tint (or a shade, a special type of tint) 00158 EXPORT_COLOURTYPE_LINKED, // The colour is a Linked colour 00159 EXPORT_COLOURTYPE_SHADE // The colour is a Shade 00160 } ExportColourType;
|