X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/20123d495814b8b8543bf43fbd63aa7ec21e5d78..da75a14e72a6455df1f580afd694070c4467449e:/include/wx/gtk/combobox.h?ds=inline diff --git a/include/wx/gtk/combobox.h b/include/wx/gtk/combobox.h index 0b9a462b52..5852b7403c 100644 --- a/include/wx/gtk/combobox.h +++ b/include/wx/gtk/combobox.h @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: combobox.h +// Name: wx/gtk/combobox.h // Purpose: // Author: Robert Roebling // Created: 01/02/97 @@ -8,14 +8,9 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - #ifndef __GTKCOMBOBOXH__ #define __GTKCOMBOBOXH__ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma interface "combobox.h" -#endif - #include "wx/defs.h" #if wxUSE_COMBOBOX @@ -32,7 +27,7 @@ class WXDLLIMPEXP_CORE wxComboBox; // global data //----------------------------------------------------------------------------- -extern WXDLLIMPEXP_CORE const wxChar* wxComboBoxNameStr; +extern WXDLLEXPORT_DATA(const wxChar) wxComboBoxNameStr[]; extern WXDLLIMPEXP_BASE const wxChar* wxEmptyString; //----------------------------------------------------------------------------- @@ -88,12 +83,12 @@ public: void Clear(); void Delete( int n ); - virtual int FindString( const wxString &item ) const; + virtual int FindString(const wxString& s, bool bCase = false) const; int GetSelection() const; + int GetCurrentSelection() const; wxString GetString( int n ) const; wxString GetStringSelection() const; - int GetCount() const; - int Number() const { return GetCount(); } + virtual size_t GetCount() const; void SetSelection( int n ); void SetString(int n, const wxString &text); @@ -156,7 +151,6 @@ public: void EnableEvents(); GtkWidget* GetConnectWidget(); bool IsOwnGtkWindow( GdkWindow *window ); - void DoApplyWidgetStyle(GtkRcStyle *style); wxCONTROL_ITEMCONTAINER_CLIENTDATAOBJECT_RECAST @@ -164,6 +158,7 @@ public: GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); protected: + void DoApplyWidgetStyle(GtkRcStyle *style); virtual int DoAppend(const wxString& item); virtual int DoInsert(const wxString& item, int pos);