]>
Commit | Line | Data |
---|---|---|
424f5e27 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: xpmdecod.h | |
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 | |
424f5e27 | 15 | |
62a9d04c VS |
16 | class WXDLLIMPEXP_CORE wxImage; |
17 | class WXDLLIMPEXP_BASE wxInputStream; | |
424f5e27 VS |
18 | |
19 | // -------------------------------------------------------------------------- | |
20 | // wxXPMDecoder class | |
21 | // -------------------------------------------------------------------------- | |
22 | ||
23 | class WXDLLEXPORT wxXPMDecoder | |
24 | { | |
25 | public: | |
26 | // constructor, destructor, etc. | |
27 | wxXPMDecoder() {} | |
28 | ~wxXPMDecoder() {} | |
29 | ||
30 | #if wxUSE_STREAMS | |
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); | |
35 | #endif | |
36 | // Read directly from XPM data (as passed to wxBitmap ctor): | |
37 | wxImage ReadData(const char **xpm_data); | |
38 | }; | |
39 | ||
40 | ||
424f5e27 VS |
41 | #endif // _WX_GIFDECOD_H_ |
42 |