Mercurial > mercurial > hgweb_searcher03.cgi
view include/hhsdb.h @ 21:a2ad87cad48b
Enhanced the convenience of Cache dialog.
author | pyon@macmini |
---|---|
date | Wed, 17 Dec 2014 00:52:43 +0900 |
parents | bbd65edf71d4 |
children |
line wrap: on
line source
// Filename : hhsdb.h // Last Change: 12-Dec-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_UPDATE = wxID_HIGHEST + 130, }; #endif //__HHSDB_H__