#include </home/zeitlin/src/wx/github/interface/wx/rawbmp.h>
The iterator of class wxPixelData.
Public Member Functions | |
void | Reset (const PixelData &data) |
Reset the iterator to point to (0, 0). | |
Iterator (PixelData &data) | |
Initializes the iterator to point to the origin of the given pixel data. | |
Iterator (wxBitmap &bmp, PixelData &data) | |
Initializes the iterator to point to the origin of the given Bitmap. | |
Iterator () | |
Default constructor. | |
bool | IsOk () const |
Return true if this iterator is valid. | |
Iterator & | operator++ () |
Advance the iterator to the next pixel, prefix version. | |
Iterator | operator++ (int) |
Advance the iterator to the next pixel, postfix (hence less efficient -- don't use it unless you absolutely must) version. | |
void | Offset (const PixelData &data, int x, int y) |
Move x pixels to the right and y down. | |
void | OffsetX (const PixelData &data, int x) |
Move x pixels to the right. | |
void | OffsetY (const PixelData &data, int y) |
Move y rows to the bottom. | |
void | MoveTo (const PixelData &data, int x, int y) |
Go to the given position. | |
ChannelType & | Red () |
Data Access: Access to individual colour components. | |
ChannelType & | Green () |
Data Access: Access to individual colour components. | |
ChannelType & | Blue () |
Data Access: Access to individual colour components. | |
ChannelType & | Alpha () |
Data Access: Access to individual colour components. |
wxPixelData< Image, PixelFormat >::Iterator::Iterator | ( | PixelData & | data | ) |
Initializes the iterator to point to the origin of the given pixel data.
wxPixelData< Image, PixelFormat >::Iterator::Iterator | ( | wxBitmap & | bmp, |
PixelData & | data | ||
) |
Initializes the iterator to point to the origin of the given Bitmap.
wxPixelData< Image, PixelFormat >::Iterator::Iterator | ( | ) |
Default constructor.
ChannelType& wxPixelData< Image, PixelFormat >::Iterator::Alpha | ( | ) |
Data Access: Access to individual colour components.
ChannelType& wxPixelData< Image, PixelFormat >::Iterator::Blue | ( | ) |
Data Access: Access to individual colour components.
ChannelType& wxPixelData< Image, PixelFormat >::Iterator::Green | ( | ) |
Data Access: Access to individual colour components.
bool wxPixelData< Image, PixelFormat >::Iterator::IsOk | ( | ) | const |
Return true if this iterator is valid.
void wxPixelData< Image, PixelFormat >::Iterator::MoveTo | ( | const PixelData & | data, |
int | x, | ||
int | y | ||
) |
Go to the given position.
void wxPixelData< Image, PixelFormat >::Iterator::Offset | ( | const PixelData & | data, |
int | x, | ||
int | y | ||
) |
Move x pixels to the right and y down.
void wxPixelData< Image, PixelFormat >::Iterator::OffsetX | ( | const PixelData & | data, |
int | x | ||
) |
Move x pixels to the right.
void wxPixelData< Image, PixelFormat >::Iterator::OffsetY | ( | const PixelData & | data, |
int | y | ||
) |
Move y rows to the bottom.
Iterator wxPixelData< Image, PixelFormat >::Iterator::operator++ | ( | int | ) |
Advance the iterator to the next pixel, postfix (hence less efficient -- don't use it unless you absolutely must) version.
Iterator& wxPixelData< Image, PixelFormat >::Iterator::operator++ | ( | ) |
Advance the iterator to the next pixel, prefix version.
ChannelType& wxPixelData< Image, PixelFormat >::Iterator::Red | ( | ) |
Data Access: Access to individual colour components.
void wxPixelData< Image, PixelFormat >::Iterator::Reset | ( | const PixelData & | data | ) |
Reset the iterator to point to (0, 0).