Mercurial > mercurial > hgweb_searcher03.cgi
diff include/index.h @ 0:0c0701a935f8
Start Development.
author | pyon@macmini |
---|---|
date | Sun, 21 Jul 2013 16:07:19 +0900 |
parents | |
children | c066fde99517 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/include/index.h Sun Jul 21 16:07:19 2013 +0900 @@ -0,0 +1,34 @@ +// Filename : index.h +// Last Change: 21-Jul-2013. +// + +#ifndef __INDEX_H__ +#define __INDEX_H__ + +#include "common.h" + +class IndexDialog : public wxDialog +{ + DECLARE_EVENT_TABLE() + private: + + protected: + wxListCtrl* m_listCtrl; + wxCalendarCtrl* m_calendar; + wxButton* m_buttonMake; + wxButton* m_buttonClose; + + public: + + IndexDialog( wxWindow*, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style ); + ~IndexDialog(); + +}; + +enum { + ID_CALNENDER = wxID_HIGHEST + 60, + ID_MKINDEX, +}; + +#endif //__INDEX_H__ +