#include <gifutil.h>
Public Member Functions | |
PaletteIterator () | |
void | SetRed (const UINT32 nRed) |
void | SetGreen (const UINT32 nGreen) |
void | SetBlue (const UINT32 nBlue) |
void | SetTransparent (const UINT32 nTransparent) |
BOOL | operator< (const PaletteIterator &rhsIterator) |
PaletteIterator & | operator++ () |
Protected Attributes | |
LPRGBQUAD | m_pPalette |
Definition at line 140 of file gifutil.h.
|
Definition at line 143 of file gifutil.h. 00143 : m_pPalette(NULL) {}
|
|
Definition at line 160 of file gifutil.h. 00161 { 00162 ++m_pPalette; 00163 return *this; 00164 }
|
|
Definition at line 157 of file gifutil.h. 00158 { return m_pPalette < rhsIterator.m_pPalette; }
|
|
Definition at line 151 of file gifutil.h. 00152 { m_pPalette->rgbBlue = nBlue; }
|
|
Definition at line 148 of file gifutil.h. 00149 { m_pPalette->rgbGreen = nGreen; }
|
|
Definition at line 145 of file gifutil.h. 00146 { m_pPalette->rgbRed = nRed; }
|
|
Definition at line 154 of file gifutil.h. 00155 { m_pPalette->rgbReserved = nTransparent; }
|
|
|