diff include/kana.h @ 0:0c0701a935f8

Start Development.
author pyon@macmini
date Sun, 21 Jul 2013 16:07:19 +0900
parents
children 7b6dab24f4b8
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/include/kana.h	Sun Jul 21 16:07:19 2013 +0900
@@ -0,0 +1,35 @@
+// Filename   : kana.h
+// Last Change: 21-Jul-2013.
+//
+#ifndef __KANA_H__
+#define __KANA_H__
+
+#include "common.h"
+
+class KanaDialog : public wxDialog 
+{
+    DECLARE_EVENT_TABLE()
+	private:
+	
+	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();
+	
+};
+
+enum
+{
+    ID_LISTKANA = wxID_HIGHEST + 20,
+};
+
+#endif //__KANA_H__
+