]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/imaggif.cpp
Added wxFontEnumerator class for wxMSW, and fixed text validator for French
[wxWidgets.git] / src / common / imaggif.cpp
index f719a2ad41dee11920c89b8d39943a71aa890f49..f8c799a2559ec3cc25a53b2cc78cb2d4ed17bf8f 100644 (file)
@@ -3,6 +3,7 @@
 // Purpose:     wxGIFHandler
 // Author:      Vaclav Slavik & Guillermo Rodriguez Garcia
 // RCS-ID:      $Id$
+// Copyright:   (c) 1999 Vaclav Slavik & Guillermo Rodriguez Garcia
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #  include "wx/defs.h"
 #endif
 
-#if 1 // change this to #if wxUSE_GIF
+#if wxUSE_LIBGIF
 
 #include "wx/image.h"
 #include "wx/gifdecod.h"
 #include "wx/wfstream.h"
-#include "wx/module.h"
 #include "wx/log.h"
 
 #if !USE_SHARED_LIBRARIES
@@ -43,15 +43,22 @@ IMPLEMENT_DYNAMIC_CLASS(wxGIFHandler,wxImageHandler)
 bool wxGIFHandler::LoadFile( wxImage *image, wxInputStream& stream, bool verbose )
 {
     wxGIFDecoder *decod;
+    int error;
     bool ok;
 
     decod = new wxGIFDecoder(&stream, TRUE);
-    
-    if (decod->ReadGIF() != E_OK)
-    {
-        if (verbose)
-            wxLogDebug(_T("Error reading GIF"));
 
+    if ((error = decod->ReadGIF()) != E_OK)
+    {   
+        if (verbose)
+        {
+            switch (error)
+            {
+                case E_FORMATO: wxLogError(_T("wxGIFHandler: error in image format")); break;
+                case E_MEMORIA: wxLogError(_T("wxGIFHandler: couldn't allocate memory")); break;
+                default:        wxLogError(_T("wxGIFHandler: unknown error !!!"));
+            }
+        }
         delete decod;
         return FALSE;
     }
@@ -88,4 +95,4 @@ bool wxGIFHandler::CanRead( wxInputStream& stream )
   // wxUSE_STREAMS
 
 #endif
-  // wxUSE_GIF
+  // wxUSE_LIBGIF