#endif
#ifdef __WXMSW__
-#include <wx/pnghand.h>
-// #include <wx/xpmhand.h>
+#include "wx/pnghand.h"
+#endif
+#ifdef __WXGTK__
+#include "wx/image.h"
#endif
#include "pngdemo.h"
{
#ifdef __WXMSW__
wxBitmap::AddHandler(new wxPNGFileHandler);
-// wxBitmap::AddHandler(new wxXPMFileHandler);
-// wxBitmap::AddHandler(new wxXPMDataHandler);
+#endif
+#ifdef __WXGTK__
+ wxImage::AddHandler(new wxPNGHandler);
#endif
// Create the main frame window
}
}
-// Define the behaviour for the frame closing
-// - must delete all frames except for the main one.
-bool MyFrame::OnClose(void)
-{
- Show(FALSE);
-
- return TRUE;
-}