19
|
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
|