Mercurial > mercurial > hgweb_searcher03.cgi
diff include/hhsdb.h @ 13:bbd65edf71d4
Implement Hhs DB update dialog.
author | pyon@macmini |
---|---|
date | Sat, 24 May 2014 10:25:13 +0900 |
parents | |
children | a2ad87cad48b |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/include/hhsdb.h Sat May 24 10:25:13 2014 +0900 @@ -0,0 +1,33 @@ +// Filename : hhsdb.h +// Last Change: 21-May-2014. +// + +#ifndef __HHSDB_H__ +#define __HHSDB_H__ + +#include "common.h" + +class HhsDialog : public wxDialog +{ + DECLARE_EVENT_TABLE() + private: + + protected: + wxFilePickerCtrl* m_filePicker; + wxButton* m_buttonUpdate; + wxButton* m_buttonCancel; + + public: + HhsDialog( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style ); + ~HhsDialog(); + void OnUpdate( wxCommandEvent& WXUNUSED(event) ); +}; + +enum +{ + ID_FPICKR = wxID_HIGHEST + 130, + ID_UPDATE, +}; + +#endif //__HHSDB_H__ +