Mercurial > mercurial > hgweb_searcher03.cgi
diff include/hist.h @ 0:0c0701a935f8
Start Development.
author | pyon@macmini |
---|---|
date | Sun, 21 Jul 2013 16:07:19 +0900 |
parents | |
children | 7b6dab24f4b8 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/include/hist.h Sun Jul 21 16:07:19 2013 +0900 @@ -0,0 +1,34 @@ +// Filename : hist.h +// Last Change: 21-Jul-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 SetupHistoryList( void ); +}; + +enum +{ + ID_LISTHIST = wxID_HIGHEST + 30, +}; + + +#endif //__HIST_H__ +