]>
Commit | Line | Data |
---|---|---|
424f5e27 | 1 | ///////////////////////////////////////////////////////////////////////////// |
ce7208d4 | 2 | // Name: wx/xpmdecod.h |
424f5e27 VS |
3 | // Purpose: wxXPMDecoder, XPM reader for wxImage and wxBitmap |
4 | // Author: Vaclav Slavik | |
5 | // CVS-ID: $Id$ | |
6 | // Copyright: (c) 2001 Vaclav Slavik | |
65571936 | 7 | // Licence: wxWindows licence |
424f5e27 VS |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
10 | #ifndef _WX_XPMDECOD_H_ | |
11 | #define _WX_XPMDECOD_H_ | |
12 | ||
2ecf902b | 13 | #include "wx/defs.h" |
424f5e27 | 14 | |
552796e0 | 15 | #if wxUSE_IMAGE && wxUSE_XPM |
424f5e27 | 16 | |
b5dbe15d VS |
17 | class WXDLLIMPEXP_FWD_CORE wxImage; |
18 | class WXDLLIMPEXP_FWD_BASE wxInputStream; | |
424f5e27 VS |
19 | |
20 | // -------------------------------------------------------------------------- | |
21 | // wxXPMDecoder class | |
22 | // -------------------------------------------------------------------------- | |
23 | ||
53a2db12 | 24 | class WXDLLIMPEXP_CORE wxXPMDecoder |
424f5e27 VS |
25 | { |
26 | public: | |
27 | // constructor, destructor, etc. | |
28 | wxXPMDecoder() {} | |
29 | ~wxXPMDecoder() {} | |
30 | ||
31 | #if wxUSE_STREAMS | |
32 | // Is the stream XPM file? | |
8faef7cc | 33 | // NOTE: this function modifies the current stream position |
424f5e27 | 34 | bool CanRead(wxInputStream& stream); |
03647350 | 35 | |
424f5e27 VS |
36 | // Read XPM file from the stream, parse it and create image from it |
37 | wxImage ReadFile(wxInputStream& stream); | |
38 | #endif | |
8faef7cc | 39 | |
424f5e27 | 40 | // Read directly from XPM data (as passed to wxBitmap ctor): |
452418c4 | 41 | wxImage ReadData(const char* const* xpm_data); |
03647350 | 42 | |
29b7b6ca PC |
43 | #ifdef __BORLANDC__ |
44 | // needed for Borland 5.5 | |
03647350 | 45 | wxImage ReadData(char** xpm_data) |
8faef7cc | 46 | { return ReadData(const_cast<const char* const*>(xpm_data)); } |
29b7b6ca | 47 | #endif |
424f5e27 VS |
48 | }; |
49 | ||
552796e0 | 50 | #endif // wxUSE_IMAGE && wxUSE_XPM |
424f5e27 | 51 | |
552796e0 | 52 | #endif // _WX_XPM_H_ |