Mercurial > mercurial > hgweb_searcher03.cgi
view 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 source
// 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__