0ad/source/tools/atlas/AtlasUI/CustomControls/EditableListCtrl/QuickComboBox.h

14 lines
333 B
C
Raw Normal View History

#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();
};