X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9b1414681c6134c9d70b0d9cd58b89b07ae41249..2f27c88987b5bea88ea2520e342ef2a0767021bc:/include/wx/msw/wince/choicece.h diff --git a/include/wx/msw/wince/choicece.h b/include/wx/msw/wince/choicece.h index 75aedb775f..e7f6781e60 100644 --- a/include/wx/msw/wince/choicece.h +++ b/include/wx/msw/wince/choicece.h @@ -16,10 +16,6 @@ // headers // ---------------------------------------------------------------------------- -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma interface "choicece.h" -#endif - #include "wx/defs.h" #if wxUSE_CHOICE @@ -91,13 +87,18 @@ public: virtual int GetSelection() const; virtual void SetSelection(int n); - virtual int FindString(const wxString& s) const; + virtual int FindString(const wxString& s, bool bCase = false) const; virtual wxString GetString(int n) const; virtual void SetString(int n, const wxString& s); // get the subclassed window proc of the buddy list of choices WXFARPROC GetBuddyWndProc() const { return m_wndProcBuddy; } + // return the choice object whose buddy is the given window or NULL + static wxChoice *GetChoiceForListBox(WXHWND hwndBuddy); + + virtual bool MSWCommand(WXUINT param, WXWORD id); + protected: virtual void DoSetItemClientData( int n, void* clientData ); virtual void* DoGetItemClientData( int n ) const;