X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ffb9247a85e83dcc4da631b76d0b86c0b2192676..8ee313d2bec36438f9f93d90e68e7e4253535b47:/include/wx/combo.h diff --git a/include/wx/combo.h b/include/wx/combo.h index 0a9359ac36..9c38cda211 100644 --- a/include/wx/combo.h +++ b/include/wx/combo.h @@ -774,6 +774,13 @@ public: // Gets displayed string representation of the value. virtual wxString GetStringValue() const = 0; + // Called to check if the popup - when an item container - actually + // has matching item. Case-sensitivity checking etc. is up to the + // implementation. If the found item matched the string, but is + // different, it should be written back to pItem. Default implementation + // always return true and does not alter trueItem. + virtual bool FindItem(const wxString& item, wxString* trueItem=NULL); + // This is called to custom paint in the combo control itself (ie. not the popup). // Default implementation draws value as string. virtual void PaintComboControl( wxDC& dc, const wxRect& rect );