1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxImage handler for Amiga IFF images
4 // Author: Steffen Gutmann
6 // Copyright: (c) Steffen Gutmann, 2002
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #ifndef _WX_IMAGE_IFF_H_
11 #define _WX_IMAGE_IFF_H_
15 //-----------------------------------------------------------------------------
17 //-----------------------------------------------------------------------------
19 #if wxUSE_IMAGE && wxUSE_IFF
21 class WXDLLIMPEXP_CORE wxIFFHandler
: public wxImageHandler
26 m_name
= wxT("IFF file");
27 m_extension
= wxT("iff");
28 m_type
= wxBITMAP_TYPE_IFF
;
29 m_mime
= wxT("image/x-iff");
33 virtual bool LoadFile(wxImage
*image
, wxInputStream
& stream
, bool verbose
=true, int index
=-1);
34 virtual bool SaveFile(wxImage
*image
, wxOutputStream
& stream
, bool verbose
=true);
36 virtual bool DoCanRead(wxInputStream
& stream
);
39 DECLARE_DYNAMIC_CLASS(wxIFFHandler
)
42 #endif // wxUSE_IMAGE && wxUSE_IFF
44 #endif // _WX_IMAGE_IFF_H_