0ad/source/tools/atlas/AtlasUI/CustomControls/EditableListCtrl/QuickComboBox.h
2005-03-24 12:53:48 +00:00

13 lines
333 B
C++

#include "wx/combobox.h"
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();
};