#include <impcol.h>
Public Member Functions | |
NewColourInfo () | |
Public Attributes | |
IndexedColourType | Type |
BOOL | Inherits [4] |
FIXED24 | TintValue |
FIXED24 | ShadeValue |
BOOL | TintIsShade |
BOOL | WebNativeColour |
IndexedColour * | pParentCol |
INT32 | RecordNumber |
UINT32 | EntryNumber |
Definition at line 207 of file impcol.h.
|
Definition at line 119 of file impcol.cpp. 00120 { 00121 // Initially a normal colour 00122 Type = COLOURTYPE_NORMAL; 00123 00124 // If linked, defaults to no inheritance. 00125 for (INT32 i = 0; i < 4; i++) 00126 Inherits[i] = FALSE; 00127 00128 // If tinted, then no change in colour 00129 TintValue = 100.0; 00130 00131 // By default tints are normal tints, not shades. 00132 TintIsShade = FALSE; 00133 00134 // New bits for native/web file filter 00135 // By default we are not defining a web or native style colour 00136 WebNativeColour = FALSE; 00137 // By default this colour has not been imported yet so flag this in our variables 00138 pParentCol = NULL; 00139 RecordNumber = 0L; 00140 EntryNumber = 0L; 00141 }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|