mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-19 06:43:58 -07:00
11 lines
264 B
C++
11 lines
264 B
C++
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();
|
|
};
|