comparison include/kana.h @ 0:0c0701a935f8

Start Development.
author pyon@macmini
date Sun, 21 Jul 2013 16:07:19 +0900
parents
children 7b6dab24f4b8
comparison
equal deleted inserted replaced
-1:000000000000 0:0c0701a935f8
1 // Filename : kana.h
2 // Last Change: 21-Jul-2013.
3 //
4 #ifndef __KANA_H__
5 #define __KANA_H__
6
7 #include "common.h"
8
9 class KanaDialog : public wxDialog
10 {
11 DECLARE_EVENT_TABLE()
12 private:
13
14 protected:
15
16 wxSearchCtrl* m_searchCtrl;
17 wxCheckBox* m_checkBox;
18 wxListCtrl* m_listCtrl;
19 wxButton* m_buttonCancel;
20 wxButton* m_buttonSet;
21
22 public:
23
24 KanaDialog( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style );
25 ~KanaDialog();
26
27 };
28
29 enum
30 {
31 ID_LISTKANA = wxID_HIGHEST + 20,
32 };
33
34 #endif //__KANA_H__
35