view include/dirview.h @ 24:5c99c6fa50df v2.2dev v2.2

fix changing selected image color
author pyon@macmini
date Wed, 02 Nov 2011 20:47:18 +0900
parents 868ccd73e238
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__