2001-04-22 22:21:21 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: imaggif.h
|
|
|
|
// Purpose: wxImage XPM handler
|
|
|
|
// Author: Vaclav Slavik
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 2001 Vaclav Slavik
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
2001-04-22 22:21:21 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_IMAGXPM_H_
|
|
|
|
#define _WX_IMAGXPM_H_
|
|
|
|
|
2003-08-09 12:38:21 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
2001-04-22 22:21:21 +00:00
|
|
|
#pragma interface "imagxpm.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/image.h"
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxXPMHandler
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxXPMHandler : public wxImageHandler
|
|
|
|
{
|
|
|
|
public:
|
2002-12-04 14:11:26 +00:00
|
|
|
inline wxXPMHandler()
|
|
|
|
{
|
|
|
|
m_name = wxT("XPM file");
|
|
|
|
m_extension = wxT("xpm");
|
|
|
|
m_type = wxBITMAP_TYPE_XPM;
|
|
|
|
m_mime = wxT("image/xpm");
|
|
|
|
}
|
2001-04-22 22:21:21 +00:00
|
|
|
|
|
|
|
#if wxUSE_STREAMS
|
2004-09-16 18:13:32 +00:00
|
|
|
virtual bool LoadFile( wxImage *image, wxInputStream& stream, bool verbose=true, int index=-1 );
|
|
|
|
virtual bool SaveFile( wxImage *image, wxOutputStream& stream, bool verbose=true );
|
2002-12-04 14:11:26 +00:00
|
|
|
virtual bool DoCanRead( wxInputStream& stream );
|
2001-04-22 22:21:21 +00:00
|
|
|
#endif
|
2002-12-04 14:11:26 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxXPMHandler)
|
2001-04-22 22:21:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_IMAGXPM_H_
|
|
|
|
|