]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/imagjpeg.h
implement images support for wxButton under XP and later
[wxWidgets.git] / include / wx / imagjpeg.h
index 465947e67a0a3feabbbbf7586a208a29b14db04e..873942e00ad07716a3df9327d56b68c92bfaad04 100644 (file)
 #ifndef _WX_IMAGJPEG_H_
 #define _WX_IMAGJPEG_H_
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "imagjpeg.h"
-#endif
-
 #include "wx/defs.h"
 
 //-----------------------------------------------------------------------------
 
 #include "wx/image.h"
 
-class WXDLLEXPORT wxJPEGHandler: public wxImageHandler
+class WXDLLIMPEXP_CORE wxJPEGHandler: public wxImageHandler
 {
 public:
     inline wxJPEGHandler()
     {
         m_name = wxT("JPEG file");
         m_extension = wxT("jpg");
+        m_altExtensions.Add(wxT("jpeg"));
+        m_altExtensions.Add(wxT("jpe"));
         m_type = wxBITMAP_TYPE_JPEG;
         m_mime = wxT("image/jpeg");
     }
@@ -38,6 +36,7 @@ public:
 #if wxUSE_STREAMS
     virtual bool LoadFile( wxImage *image, wxInputStream& stream, bool verbose=true, int index=-1 );
     virtual bool SaveFile( wxImage *image, wxOutputStream& stream, bool verbose=true );
+protected:
     virtual bool DoCanRead( wxInputStream& stream );
 #endif