#include "wx/mstream.h"
#include "wx/wfstream.h"
#include "wx/quantize.h"
+#include "wx/stopwatch.h"
#if wxUSE_CLIPBOARD
#include "wx/dataobj.h"
void OnAbout( wxCommandEvent &event );
void OnNewFrame( wxCommandEvent &event );
void OnImageInfo( wxCommandEvent &event );
+ void OnThumbnail( wxCommandEvent &event );
+
#ifdef wxHAVE_RAW_BITMAP
void OnTestRawBitmap( wxCommandEvent &event );
#endif // wxHAVE_RAW_BITMAP
ID_ABOUT = wxID_ABOUT,
ID_NEW = 100,
ID_INFO,
- ID_SHOWRAW
+ ID_SHOWRAW,
+ ID_SHOWTHUMBNAIL
};
IMPLEMENT_DYNAMIC_CLASS( MyFrame, wxFrame )
EVT_MENU (ID_QUIT, MyFrame::OnQuit)
EVT_MENU (ID_NEW, MyFrame::OnNewFrame)
EVT_MENU (ID_INFO, MyFrame::OnImageInfo)
+ EVT_MENU (ID_SHOWTHUMBNAIL, MyFrame::OnThumbnail)
#ifdef wxHAVE_RAW_BITMAP
EVT_MENU (ID_SHOWRAW, MyFrame::OnTestRawBitmap)
#endif
menuImage->Append( ID_SHOWRAW, _T("Test &raw bitmap...\tCtrl-R"));
#endif
menuImage->AppendSeparator();
+ menuImage->Append( ID_SHOWTHUMBNAIL, _T("Test &thumbnail...\tCtrl-T"),
+ "Test scaling the image during load (try with JPEG)");
+ menuImage->AppendSeparator();
menuImage->Append( ID_ABOUT, _T("&About..."));
menuImage->AppendSeparator();
menuImage->Append( ID_QUIT, _T("E&xit\tCtrl-Q"));
return true;
}
+
+void MyFrame::OnThumbnail( wxCommandEvent &WXUNUSED(event) )
+{
+#if wxUSE_FILEDLG
+ wxString filename = wxFileSelector(_T("Select image file"));
+ if ( filename.empty() )
+ return;
+
+ static const int THUMBNAIL_WIDTH = 320;
+ static const int THUMBNAIL_HEIGHT = 240;
+
+ wxImage image;
+ image.SetOption(wxIMAGE_OPTION_MAX_WIDTH, THUMBNAIL_WIDTH);
+ image.SetOption(wxIMAGE_OPTION_MAX_HEIGHT, THUMBNAIL_HEIGHT);
+
+ wxStopWatch sw;
+ if ( !image.LoadFile(filename) )
+ {
+ wxLogError(_T("Couldn't load image from '%s'."), filename.c_str());
+ return;
+ }
+
+ const long loadTime = sw.Time();
+
+ MyImageFrame * const
+ frame = new MyImageFrame(this, filename, wxBitmap(image));
+ frame->Show();
+ wxLogStatus(frame, "Loaded \"%s\" in %ldms", filename, loadTime);
+#else
+ wxLogError( _T("Couldn't create file selector dialog") );
+ return;
+#endif // wxUSE_FILEDLG
+}
+