view include/hist.h @ 1:7b6dab24f4b8

Gui parts complete.
author pyon@macmini
date Sun, 04 Aug 2013 21:42:49 +0900
parents 0c0701a935f8
children c066fde99517
line wrap: on
line source

// Filename   : hist.h
// Last Change: 02-Aug-2013.
//
#ifndef __HIST_H__
#define __HIST_H__

#include "common.h"

class HistDialog : public wxDialog 
{
    DECLARE_EVENT_TABLE()
	private:
	
	protected:
		wxListCtrl* m_listCtrl;
		wxButton*   m_buttonCancel;
		wxButton*   m_buttonSet;
	
	public:
		
		HistDialog( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style );
		~HistDialog();
        
        void OnSelectItem( wxListEvent& WXUNUSED(event) );
        void OnSet( wxCommandEvent& WXUNUSED(event) );
        void ReadHistoryList( void );    
};

enum
{
    ID_LISTHIST = wxID_HIGHEST + 30,
    ID_SETHIST,
};


#endif //__HIST_H__