cpp/TextBox.hpp
author viric <viriketo@gmail.com>
Mon, 03 Sep 2012 23:35:31 +0200
branchgo
changeset 7 d5750f4e6e8c
parent 4 a3d29fb016c3
permissions -rw-r--r--
Adding a first attempt at go code

#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();
};