view include/dirview.h @ 39:e0ebc6a4c4dc v2.7

Added tag v2.7 for changeset 044cc2f5af81
author pyon@macmini
date Fri, 25 Nov 2011 22:08:10 +0900
parents 044cc2f5af81
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__