This allows the code to be used from wxBase with other image classes.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30921
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// used as default value for the pixel format in wxPixelIterator template
template <class T> struct wxPixelFormatFor;
// used as default value for the pixel format in wxPixelIterator template
template <class T> struct wxPixelFormatFor;
// wxPixelFormatFor is only defined for wxImage, attempt to use it with other
// classes (wxBitmap...) will result in compile errors which is exactly what we
// want
// wxPixelFormatFor is only defined for wxImage, attempt to use it with other
// classes (wxBitmap...) will result in compile errors which is exactly what we
// want
{
typedef wxImagePixelFormat Format;
};
{
typedef wxImagePixelFormat Format;
};
// ----------------------------------------------------------------------------
// wxPixelData
// ----------------------------------------------------------------------------
// wxPixelData
// wxPixelData specialization for wxImage: this is the simplest case as we
// don't have to care about different pixel formats here
template <>
// wxPixelData specialization for wxImage: this is the simplest case as we
// don't have to care about different pixel formats here
template <>
// wxPixelData specialization for wxBitmap: here things are more interesting as
// we also have to support different pixel formats
template <>
// wxPixelData specialization for wxBitmap: here things are more interesting as
// we also have to support different pixel formats
template <>
#ifdef __VISUALC__
// typedef-name 'foo' used as synonym for class-name 'bar'
#ifdef __VISUALC__
// typedef-name 'foo' used as synonym for class-name 'bar'
// some "predefined" pixel data classes
// some "predefined" pixel data classes
typedef wxPixelData<wxImage> wxImagePixelData;
typedef wxPixelData<wxImage> wxImagePixelData;
+#endif //wxUSE_IMAGE
+#if wxUSE_GUI
typedef wxPixelData<wxBitmap, wxNativePixelFormat> wxNativePixelData;
typedef wxPixelData<wxBitmap, wxAlphaPixelFormat> wxAlphaPixelData;
typedef wxPixelData<wxBitmap, wxNativePixelFormat> wxNativePixelData;
typedef wxPixelData<wxBitmap, wxAlphaPixelFormat> wxAlphaPixelData;
// ----------------------------------------------------------------------------
// wxPixelIterator
// ----------------------------------------------------------------------------
// wxPixelIterator