1999-12-15 17:38:02 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2009-04-05 08:52:22 -04:00
|
|
|
// Name: wx/imaggif.h
|
1999-12-15 17:38:02 -05:00
|
|
|
// Purpose: wxImage GIF handler
|
|
|
|
// Author: Vaclav Slavik & Guillermo Rodriguez Garcia
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Guillermo Rodriguez Garcia
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
1999-12-15 17:38:02 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_IMAGGIF_H_
|
|
|
|
#define _WX_IMAGGIF_H_
|
|
|
|
|
|
|
|
#include "wx/image.h"
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxGIFHandler
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#if wxUSE_GIF
|
|
|
|
|
2008-03-26 11:06:00 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxGIFHandler : public wxImageHandler
|
1999-12-15 17:38:02 -05:00
|
|
|
{
|
|
|
|
public:
|
2002-12-04 09:11:26 -05:00
|
|
|
inline wxGIFHandler()
|
|
|
|
{
|
|
|
|
m_name = wxT("GIF file");
|
|
|
|
m_extension = wxT("gif");
|
|
|
|
m_type = wxBITMAP_TYPE_GIF;
|
|
|
|
m_mime = wxT("image/gif");
|
|
|
|
}
|
1999-12-15 17:38:02 -05:00
|
|
|
|
|
|
|
#if wxUSE_STREAMS
|
2009-04-05 08:52:22 -04:00
|
|
|
virtual bool LoadFile(wxImage *image, wxInputStream& stream,
|
|
|
|
bool verbose = true, int index = -1);
|
|
|
|
virtual bool SaveFile(wxImage *image, wxOutputStream& stream,
|
|
|
|
bool verbose=true);
|
2009-06-01 07:43:36 -04:00
|
|
|
|
2006-02-08 16:47:09 -05:00
|
|
|
protected:
|
2009-06-01 07:43:36 -04:00
|
|
|
virtual int DoGetImageCount(wxInputStream& stream);
|
2009-04-05 08:52:22 -04:00
|
|
|
virtual bool DoCanRead(wxInputStream& stream);
|
|
|
|
#endif // wxUSE_STREAMS
|
2002-12-04 09:11:26 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxGIFHandler)
|
1999-12-15 17:38:02 -05:00
|
|
|
};
|
|
|
|
|
2009-04-05 08:52:22 -04:00
|
|
|
#endif // wxUSE_GIF
|
1999-12-15 17:38:02 -05:00
|
|
|
|
2009-04-05 08:52:22 -04:00
|
|
|
#endif // _WX_IMAGGIF_H_
|
1999-12-15 17:38:02 -05:00
|
|
|
|