2001-04-28 23:30:24 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: xpmdecod.h
|
|
|
|
// Purpose: wxXPMDecoder, XPM reader for wxImage and wxBitmap
|
|
|
|
// Author: Vaclav Slavik
|
|
|
|
// CVS-ID: $Id$
|
|
|
|
// Copyright: (c) 2001 Vaclav Slavik
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
2001-04-28 23:30:24 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_XPMDECOD_H_
|
|
|
|
#define _WX_XPMDECOD_H_
|
|
|
|
|
2003-08-09 12:38:21 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
2001-04-28 23:30:24 +00:00
|
|
|
#pragma interface "xpmdecod.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/setup.h"
|
|
|
|
|
|
|
|
|
2004-06-16 21:02:29 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxImage;
|
|
|
|
class WXDLLIMPEXP_BASE wxInputStream;
|
2001-04-28 23:30:24 +00:00
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
// wxXPMDecoder class
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxXPMDecoder
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// constructor, destructor, etc.
|
|
|
|
wxXPMDecoder() {}
|
|
|
|
~wxXPMDecoder() {}
|
|
|
|
|
|
|
|
#if wxUSE_STREAMS
|
|
|
|
// Is the stream XPM file?
|
|
|
|
bool CanRead(wxInputStream& stream);
|
|
|
|
// Read XPM file from the stream, parse it and create image from it
|
|
|
|
wxImage ReadFile(wxInputStream& stream);
|
|
|
|
#endif
|
|
|
|
// Read directly from XPM data (as passed to wxBitmap ctor):
|
|
|
|
wxImage ReadData(const char **xpm_data);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _WX_GIFDECOD_H_
|
|
|
|
|