Mercurial > mercurial > hgweb_searcher03.cgi
view include/kana.h @ 8:4967d1e2b30c
Alert when not mask in batch print mode.
author | pyon@macmini |
---|---|
date | Fri, 01 Nov 2013 18:44:37 +0900 |
parents | c066fde99517 |
children |
line wrap: on
line source
// Filename : kana.h // Last Change: 05-Aug-2013. // #ifndef __KANA_H__ #define __KANA_H__ #include "common.h" class KanaDialog : public wxDialog { DECLARE_EVENT_TABLE() private: wxString m_hhsno; protected: wxSearchCtrl* m_searchCtrl; wxCheckBox* m_checkBox; wxListCtrl* m_listCtrl; wxButton* m_buttonCancel; wxButton* m_buttonSet; public: KanaDialog( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style ); ~KanaDialog(); void OnSearch( wxCommandEvent& WXUNUSED(event) ); void OnFuzzyCheck( wxCommandEvent& WXUNUSED(event) ); void OnSelectItem( wxListEvent& event ); void OnSet( wxCommandEvent& WXUNUSED(event) ); void UpdateList( void ); // Accessor wxString GetHhsNo() const { return m_hhsno; } }; enum { ID_SEARCHKANA = wxID_HIGHEST + 20, ID_LISTKANA, ID_FUZZY, ID_SETKANA, }; #endif //__KANA_H__