]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/xpmdecod.h
Compile fixes
[wxWidgets.git] / include / wx / xpmdecod.h
... / ...
CommitLineData
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
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10#ifndef _WX_XPMDECOD_H_
11#define _WX_XPMDECOD_H_
12
13#include "wx/defs.h"
14
15#if wxUSE_IMAGE && wxUSE_XPM
16
17class WXDLLIMPEXP_CORE wxImage;
18class WXDLLIMPEXP_BASE wxInputStream;
19
20// --------------------------------------------------------------------------
21// wxXPMDecoder class
22// --------------------------------------------------------------------------
23
24class WXDLLEXPORT wxXPMDecoder
25{
26public:
27 // constructor, destructor, etc.
28 wxXPMDecoder() {}
29 ~wxXPMDecoder() {}
30
31#if wxUSE_STREAMS
32 // Is the stream XPM file?
33 bool CanRead(wxInputStream& stream);
34 // Read XPM file from the stream, parse it and create image from it
35 wxImage ReadFile(wxInputStream& stream);
36#endif
37 // Read directly from XPM data (as passed to wxBitmap ctor):
38 wxImage ReadData(const char* const* xpm_data);
39};
40
41#endif // wxUSE_IMAGE && wxUSE_XPM
42
43#endif // _WX_XPM_H_
44