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