Mercurial > mercurial > hgweb_searcher03.cgi
view include/hhsdb.h @ 22:92188f60323d default tip
Implement Masking function on Preview Dialog.
author | pyon@macmini |
---|---|
date | Sat, 04 Apr 2015 17:23:46 +0900 |
parents | a2ad87cad48b |
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__