]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/imagpng.h
Temporary fix for link error to ~wxZipOutputStream()
[wxWidgets.git] / include / wx / imagpng.h
index 1bd7247687df66a421eb89c09ccd6b9ccb6a2c3a..73c465a90d6eb0a3096cbc66db2e592e636643f3 100644 (file)
 #pragma interface "imagpng.h"
 #endif
 
-#include "wx/image.h"
+#include "wx/defs.h"
 
 //-----------------------------------------------------------------------------
 // wxPNGHandler
 //-----------------------------------------------------------------------------
 
 #if wxUSE_LIBPNG
+
+#include "wx/image.h"
+
+#define wxIMAGE_OPTION_PNG_FORMAT    wxT("PngFormat")
+#define wxIMAGE_OPTION_PNG_BITDEPTH  wxT("PngBitDepth")
+
+enum
+{
+    wxPNG_TYPE_COLOUR = 0,
+    wxPNG_TYPE_GREY = 2,
+    wxPNG_TYPE_GREY_RED = 3
+};
+
 class WXDLLEXPORT wxPNGHandler: public wxImageHandler
 {
 public:
@@ -41,8 +54,9 @@ public:
 private:
     DECLARE_DYNAMIC_CLASS(wxPNGHandler)
 };
-#endif
 
+#endif
+  // wxUSE_LIBPNG
 
 #endif
   // _WX_IMAGPNG_H_