Mercurial > mercurial > hgweb_mover2.cgi
diff include/dirview.h @ 19:868ccd73e238 v2.2dev
directory viewer
author | pyon@macmini |
---|---|
date | Tue, 25 Oct 2011 07:48:39 +0900 |
parents | |
children | 044cc2f5af81 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/include/dirview.h Tue Oct 25 07:48:39 2011 +0900 @@ -0,0 +1,29 @@ +// Filename : dirview.h +// Last Change: 24-Oct-2011. +// + +#ifndef __dirview__ +#define __dirview__ + +#include "common.h" + +class DirViewFrame : public wxFrame +{ + private: + + protected: + wxListCtrl* m_listCtrlAll; + wxListCtrl* m_listCtrlThumbnail; + wxStaticBitmap* m_bitmapPreview; + + public: + + 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 ); + ~DirViewFrame(); + + void DirViewFrame::OnThumbnail(wxListEvent& event); + void DirViewFrame::OnThumbnail(wxListEvent& event); +}; + +#endif //__dirview__ +