X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..3c115835b39194fd6c6852c96f5a9cccd2cc9aaa:/include/wx/ctrlsub.h diff --git a/include/wx/ctrlsub.h b/include/wx/ctrlsub.h index 3f60c85585..cf5c943c07 100644 --- a/include/wx/ctrlsub.h +++ b/include/wx/ctrlsub.h @@ -44,7 +44,22 @@ public: virtual wxString GetString(int n) const = 0; wxArrayString GetStrings() const; virtual void SetString(int n, const wxString& s) = 0; - virtual int FindString(const wxString& s) const = 0; + + // finding string natively is either case sensitive or insensitive + // but never both so fall back to this base version for not + // supported search type + virtual int FindString(const wxString& s, bool bCase = false) const + { + int count = GetCount(); + + for ( int i = 0; i < count ; i ++ ) + { + if (GetString(i).IsSameAs( s , bCase )) + return i; + } + + return wxNOT_FOUND; + } // selection @@ -119,12 +134,6 @@ public: bool HasClientUntypedData() const { return m_clientDataItemsType == wxClientData_Void; } -#if WXWIN_COMPATIBILITY_2_2 - // compatibility - these functions are deprecated, use the new ones - // instead - wxDEPRECATED( int Number() const ); -#endif // WXWIN_COMPATIBILITY_2_2 - protected: virtual int DoAppend(const wxString& item) = 0; virtual int DoInsert(const wxString& item, int pos) = 0; @@ -188,6 +197,7 @@ protected: virtual void SetInitialBestSize(const wxSize& WXUNUSED(size)) { } private: + DECLARE_ABSTRACT_CLASS(wxControlWithItems) DECLARE_NO_COPY_CLASS(wxControlWithItems) }; @@ -196,16 +206,6 @@ private: // inline functions // ---------------------------------------------------------------------------- -#if WXWIN_COMPATIBILITY_2_2 - -inline int wxItemContainer::Number() const -{ - return GetCount(); -} - -#endif // WXWIN_COMPATIBILITY_2_2 - #endif // wxUSE_CONTROLS #endif // _WX_CTRLSUB_H_BASE_ -