forked from mirrors/0ad
71705b5aa4
This was SVN commit r2069.
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();
|
|
};
|