]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/imaggif.h
compilation fix (sorry!)
[wxWidgets.git] / include / wx / imaggif.h
index 909a69c17a6a89ea7d8bd38afbe173a5499677c2..14d31199a59f18070ae00c6d06f03e3e6f625651 100644 (file)
@@ -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
 /////////////////////////////////////////////////////////////////////////////
 
 #pragma interface "imaggif.h"
 #endif
 
-#include <wx/setup.h>
-#include <wx/object.h>
-#include <wx/string.h>
-#include <wx/gdicmn.h>
-#include <wx/stream.h>
-#include <wx/image.h>
+#include "wx/image.h"
+
 
 //-----------------------------------------------------------------------------
 // wxGIFHandler
 //-----------------------------------------------------------------------------
 
+#if wxUSE_GIF
+
 class WXDLLEXPORT wxGIFHandler : public wxImageHandler
 {
   DECLARE_DYNAMIC_CLASS(wxGIFHandler)
@@ -37,10 +37,15 @@ public:
       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_