view include/dirview.h @ 38:044cc2f5af81 v2.4 v2.7

small fix.
author pyon@macmini
date Thu, 24 Nov 2011 22:26:15 +0900
parents 868ccd73e238
children ce5b61376fd0
line wrap: on
line source

// Filename   : dirview.h
// Last Change: 24-Nov-2011.
//

#ifndef __dirview__
#define __dirview__

#include "common.h"

class DirViewFrame : public wxFrame 
{
    DECLARE_EVENT_TABLE()
	private:
	
	protected:
		wxListCtrl*     m_listCtrl;
        wxButton*       m_buttonExplorer;
        wxButton*       m_buttonClose;
	
	public:
        wxString        m_dir;        
		
		DirViewFrame( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_FRAME_STYLE|wxTAB_TRAVERSAL );
		~DirViewFrame();
	
        void OnExplorer(wxCommandEvent& event);
        void OnClose(wxCommandEvent& event);
        void LoadListImage( void );
};

#endif //__dirview__