mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-20 23:33:59 -07:00
13 lines
303 B
C++
13 lines
303 B
C++
#include "wx/textctrl.h"
|
|
|
|
class QuickTextCtrl : public wxTextCtrl
|
|
{
|
|
public:
|
|
QuickTextCtrl(wxWindow* parent, wxRect& location, const wxValidator& validator = wxDefaultValidator);
|
|
|
|
void OnKillFocus(wxFocusEvent& event);
|
|
void OnChar(wxKeyEvent& event);
|
|
|
|
private:
|
|
DECLARE_EVENT_TABLE();
|
|
};
|