X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f40fdaa339e19bbdf60c9c065c82daae4ca77b36..da75a14e72a6455df1f580afd694070c4467449e:/include/wx/gtk1/listbox.h?ds=sidebyside diff --git a/include/wx/gtk1/listbox.h b/include/wx/gtk1/listbox.h index b8c980241f..92b6e8203e 100644 --- a/include/wx/gtk1/listbox.h +++ b/include/wx/gtk1/listbox.h @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: listbox.h +// Name: wx/gtk1/listbox.h // Purpose: wxListBox class declaration // Author: Robert Roebling // Id: $Id$ @@ -7,14 +7,9 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - #ifndef __GTKLISTBOXH__ #define __GTKLISTBOXH__ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma interface "listbox.h" -#endif - #include "wx/list.h" class WXDLLIMPEXP_BASE wxSortedArrayString; @@ -23,7 +18,7 @@ class WXDLLIMPEXP_BASE wxSortedArrayString; // wxListBox //----------------------------------------------------------------------------- -class wxListBox : public wxListBoxBase +class WXDLLIMPEXP_CORE wxListBox : public wxListBoxBase { public: // ctors and such @@ -37,7 +32,7 @@ public: const wxString& name = wxListBoxNameStr ) { #if wxUSE_CHECKLISTBOX - m_hasCheckBoxes = FALSE; + m_hasCheckBoxes = false; #endif // wxUSE_CHECKLISTBOX Create(parent, id, pos, size, n, choices, style, validator, name); } @@ -50,7 +45,7 @@ public: const wxString& name = wxListBoxNameStr ) { #if wxUSE_CHECKLISTBOX - m_hasCheckBoxes = FALSE; + m_hasCheckBoxes = false; #endif // wxUSE_CHECKLISTBOX Create(parent, id, pos, size, choices, style, validator, name); } @@ -75,13 +70,13 @@ public: virtual void Clear(); virtual void Delete(int n); - virtual int GetCount() const; + virtual size_t GetCount() const; virtual wxString GetString(int n) const; virtual void SetString(int n, const wxString& s); - virtual int FindString(const wxString& s) const; + virtual int FindString(const wxString& s, bool bCase = false) const; virtual bool IsSelected(int n) const; - virtual void SetSelection(int n, bool select = TRUE); + virtual void DoSetSelection(int n, bool select); virtual int GetSelection() const; virtual int GetSelections(wxArrayInt& aSelections) const; @@ -98,7 +93,7 @@ public: static wxVisualAttributes GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); - + // implementation from now on void GtkAddItem( const wxString &item, int pos=-1 );