bool wxBitmapComboBox::Create(wxWindow *parent, wxWindowID id, const wxString& value, const wxPoint& pos, const wxSize& size, int n, const wxString choices[], long style, const wxValidator& validator, const wxString& name) { if ( !wxComboBox::Create(parent, id, value, pos, size, n, choices, style, validator, name) ) return false; UpdateInternals(); return true; }
bool wxBitmapComboBox::Create(wxWindow *parent, wxWindowID id, const wxString& value, const wxPoint& pos, const wxSize& size, const wxArrayString& choices, long style, const wxValidator& validator, const wxString& name) { if ( !wxOwnerDrawnComboBox::Create(parent, id, value, pos, size, choices, style, validator, name) ) { return false; } UpdateInternals(); return true; }
bool wxBitmapComboBox::SetFont(const wxFont& font) { bool res = wxComboBox::SetFont(font); UpdateInternals(); return res; }