]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/imagiff.h
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_
14 #pragma interface "imagiff.h"
19 //-----------------------------------------------------------------------------
21 //-----------------------------------------------------------------------------
23 #if wxUSE_IMAGE && wxUSE_IFF
25 class WXDLLEXPORT wxIFFHandler
: public wxImageHandler
27 DECLARE_DYNAMIC_CLASS(wxIFFHandler
)
32 m_name
= wxT("IFF file");
33 m_extension
= wxT("iff");
34 m_type
= wxBITMAP_TYPE_IFF
;
35 m_mime
= wxT("image/x-iff");
39 virtual bool LoadFile(wxImage
*image
, wxInputStream
& stream
, bool verbose
=TRUE
, int index
=-1);
40 virtual bool SaveFile(wxImage
*image
, wxOutputStream
& stream
, bool verbose
=TRUE
);
41 virtual bool DoCanRead(wxInputStream
& stream
);
45 #endif // wxUSE_IMAGE && wxUSE_IFF
47 #endif // _WX_IMAGE_IFF_H_