X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b59bf2db65896d128d72016c201dc1df9ff6c94e..2c1f73eecf5ebf3fb49955bea888ca7355e93c2a:/include/wx/imaggif.h?ds=sidebyside diff --git a/include/wx/imaggif.h b/include/wx/imaggif.h index 653f2bca50..14d31199a5 100644 --- a/include/wx/imaggif.h +++ b/include/wx/imaggif.h @@ -1,7 +1,9 @@ ///////////////////////////////////////////////////////////////////////////// // Name: imaggif.h -// Purpose: wxImage handler for GIFs (read-only) -// Author: Vaclav Slavik (of this header only) +// Purpose: wxImage GIF handler +// Author: Vaclav Slavik & Guillermo Rodriguez Garcia +// RCS-ID: $Id$ +// Copyright: (c) Guillermo Rodriguez Garcia // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -12,17 +14,15 @@ #pragma interface "imaggif.h" #endif -#include -#include -#include -#include -#include -#include +#include "wx/image.h" + //----------------------------------------------------------------------------- // wxGIFHandler //----------------------------------------------------------------------------- +#if wxUSE_GIF + class WXDLLEXPORT wxGIFHandler : public wxImageHandler { DECLARE_DYNAMIC_CLASS(wxGIFHandler) @@ -34,12 +34,18 @@ public: m_name = "GIF file"; m_extension = "gif"; m_type = wxBITMAP_TYPE_GIF; + m_mime = "image/gif"; }; - virtual bool LoadFile( wxImage *image, wxInputStream& stream ); - virtual bool SaveFile( wxImage *image, wxOutputStream& stream ); +#if wxUSE_STREAMS + virtual bool LoadFile( wxImage *image, wxInputStream& stream, bool verbose=TRUE, int index=0 ); + virtual bool SaveFile( wxImage *image, wxOutputStream& stream, bool verbose=TRUE ); + virtual bool DoCanRead( wxInputStream& stream ); +#endif }; +#endif + #endif - // _WX_IMAGGIF_H_ + // _WX_IMAGGIF_H_