Mercurial > mercurial > hgweb_mover2.cgi
view 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 source
// 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__