home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wxos2240.zip / wxWindows-2.4.0 / include / wx / imagiff.h < prev    next >
C/C++ Source or Header  |  2002-10-24  |  1KB  |  49 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // Name:        imagiff.h
  3. // Purpose:     wxImage handler for Amiga IFF images
  4. // Author:      Steffen Gutmann
  5. // RCS-ID:      $Id: imagiff.h,v 1.3.2.1 2002/10/23 17:32:02 RR Exp $
  6. // Copyright:   (c) Steffen Gutmann, 2002
  7. // Licence:     wxWindows licence
  8. /////////////////////////////////////////////////////////////////////////////
  9.  
  10. #ifndef _WX_IMAGE_IFF_H_
  11. #define _WX_IMAGE_IFF_H_
  12.  
  13. #if defined(__GNUG__) && !defined(__APPLE__)
  14. #pragma interface "imagiff.h"
  15. #endif
  16.  
  17. #include "wx/image.h"
  18.  
  19. //-----------------------------------------------------------------------------
  20. // wxIFFHandler
  21. //-----------------------------------------------------------------------------
  22.  
  23. #if wxUSE_IMAGE && wxUSE_IFF
  24.  
  25. class WXDLLEXPORT wxIFFHandler : public wxImageHandler
  26. {
  27. public:
  28.     wxIFFHandler()
  29.     {
  30.         m_name = wxT("IFF file");
  31.         m_extension = wxT("iff");
  32.         m_type = wxBITMAP_TYPE_IFF;
  33.         m_mime = wxT("image/x-iff");
  34.     }
  35.  
  36. #if wxUSE_STREAMS
  37.     virtual bool LoadFile(wxImage *image, wxInputStream& stream, bool verbose=TRUE, int index=-1);
  38.     virtual bool SaveFile(wxImage *image, wxOutputStream& stream, bool verbose=TRUE);
  39.     virtual bool DoCanRead(wxInputStream& stream);
  40. #endif
  41.  
  42. private:
  43.     DECLARE_DYNAMIC_CLASS(wxIFFHandler)
  44. };
  45.  
  46. #endif // wxUSE_IMAGE && wxUSE_IFF
  47.  
  48. #endif // _WX_IMAGE_IFF_H_
  49.