X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4e324a3fbfdac39f15ba0b96b97e1f3035ce8dd7..fbf618dff87a9e4a88d5be458cecc50309b30af3:/include/wx/gtk1/combobox.h diff --git a/include/wx/gtk1/combobox.h b/include/wx/gtk1/combobox.h index 7265f891e5..5f33b99a53 100644 --- a/include/wx/gtk1/combobox.h +++ b/include/wx/gtk1/combobox.h @@ -1,21 +1,16 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: combobox.h +// Name: wx/gtk/combobox.h // Purpose: // Author: Robert Roebling // Created: 01/02/97 // Id: $Id$ // Copyright: (c) 1998 Robert Roebling -// Licence: wxWindows licence +// 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 @@ -26,20 +21,20 @@ // classes //----------------------------------------------------------------------------- -class wxComboBox; +class WXDLLIMPEXP_CORE wxComboBox; //----------------------------------------------------------------------------- // global data //----------------------------------------------------------------------------- -extern const wxChar* wxComboBoxNameStr; -extern const wxChar* wxEmptyString; +extern WXDLLIMPEXP_CORE const wxChar* wxComboBoxNameStr; +extern WXDLLIMPEXP_BASE const wxChar* wxEmptyString; //----------------------------------------------------------------------------- // wxComboBox //----------------------------------------------------------------------------- -class wxComboBox : public wxControl, public wxComboBoxBase +class WXDLLIMPEXP_CORE wxComboBox : public wxControl, public wxComboBoxBase { public: inline wxComboBox() {} @@ -88,15 +83,14 @@ 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(); } void SetSelection( int n ); - void Select( int n ) { return SetSelection( n ); } - bool SetStringSelection( const wxString &string ); void SetString(int n, const wxString &text); wxString GetValue() const; @@ -111,7 +105,7 @@ public: void SetInsertionPoint( long pos ); void SetInsertionPointEnd() { SetInsertionPoint( -1 ); } long GetInsertionPoint() const; - long GetLastPosition() const; + virtual wxTextPos GetLastPosition() const; void Remove(long from, long to) { Replace(from, to, wxEmptyString); } void Replace( long from, long to, const wxString& value ); void SetSelection( long from, long to );