1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxXPMDecoder, XPM reader for wxImage and wxBitmap
4 // Author: Vaclav Slavik
6 // Copyright: (c) 2001 Vaclav Slavik
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #ifndef _WX_XPMDECOD_H_
11 #define _WX_XPMDECOD_H_
16 class WXDLLIMPEXP_CORE wxImage
;
17 class WXDLLIMPEXP_BASE wxInputStream
;
19 // --------------------------------------------------------------------------
21 // --------------------------------------------------------------------------
23 class WXDLLEXPORT wxXPMDecoder
26 // constructor, destructor, etc.
31 // Is the stream XPM file?
32 bool CanRead(wxInputStream
& stream
);
33 // Read XPM file from the stream, parse it and create image from it
34 wxImage
ReadFile(wxInputStream
& stream
);
36 // Read directly from XPM data (as passed to wxBitmap ctor):
37 wxImage
ReadData(const char **xpm_data
);
41 #endif // _WX_GIFDECOD_H_