mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-07-07 07:25:47 -07:00
12 lines
305 B
C
12 lines
305 B
C
|
|
class QuickComboBox : public wxComboBox
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
QuickComboBox(wxWindow* parent, wxRect& location, const wxArrayString& choices, const wxValidator& validator = wxDefaultValidator);
|
||
|
|
|
||
|
|
void OnKillFocus(wxFocusEvent& event);
|
||
|
|
void OnChar(wxKeyEvent& event);
|
||
|
|
|
||
|
|
private:
|
||
|
|
DECLARE_EVENT_TABLE();
|
||
|
|
};
|