cpp/TextBox.hpp
changeset 4 a3d29fb016c3
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cpp/TextBox.hpp	Sun Feb 13 08:27:44 2011 +0100
@@ -0,0 +1,13 @@
+#include <wx/textctrl.h>
+#include <wx/event.h>
+
+class wxTextBox : public wxTextCtrl
+{
+    private:
+        void OnKeyEvent(wxKeyEvent &e);
+
+    public:
+        wxTextBox(wxWindow *parent, int id, wxString text = _T(""));
+
+    DECLARE_EVENT_TABLE();
+};