+ DECLARE_DYNAMIC_CLASS(wxComboBox)
+
+public:
+ wxComboBox() { m_inSetSelection = false; }
+ virtual ~wxComboBox();
+
+ inline wxComboBox(wxWindow *parent, wxWindowID id,
+ const wxString& value = wxEmptyString,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
+ int n = 0, const wxString choices[] = NULL,
+ long style = 0,
+ const wxValidator& validator = wxDefaultValidator,
+ const wxString& name = wxComboBoxNameStr)
+ {
+ m_inSetSelection = false;
+ Create(parent, id, value, pos, size, n, choices,
+ style, validator, name);
+ }
+
+ inline wxComboBox(wxWindow *parent, wxWindowID id,
+ const wxString& value,
+ const wxPoint& pos,
+ const wxSize& size,
+ const wxArrayString& choices,
+ long style = 0,
+ const wxValidator& validator = wxDefaultValidator,
+ const wxString& name = wxComboBoxNameStr)
+ {
+ m_inSetSelection = false;
+ Create(parent, id, value, pos, size, choices,
+ style, validator, name);
+ }