mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-07-09 08:25:48 -07:00
13 lines
333 B
C++
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();
|
|
};
|