comparison include/dirview.h @ 19:868ccd73e238 v2.2dev

directory viewer
author pyon@macmini
date Tue, 25 Oct 2011 07:48:39 +0900
parents
children 044cc2f5af81
comparison
equal deleted inserted replaced
18:f3463815c2c9 19:868ccd73e238
1 // Filename : dirview.h
2 // Last Change: 24-Oct-2011.
3 //
4
5 #ifndef __dirview__
6 #define __dirview__
7
8 #include "common.h"
9
10 class DirViewFrame : public wxFrame
11 {
12 private:
13
14 protected:
15 wxListCtrl* m_listCtrlAll;
16 wxListCtrl* m_listCtrlThumbnail;
17 wxStaticBitmap* m_bitmapPreview;
18
19 public:
20
21 DirViewFrame( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 500,300 ), long style = wxDEFAULT_FRAME_STYLE|wxTAB_TRAVERSAL );
22 ~DirViewFrame();
23
24 void DirViewFrame::OnThumbnail(wxListEvent& event);
25 void DirViewFrame::OnThumbnail(wxListEvent& event);
26 };
27
28 #endif //__dirview__
29