]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/listbox.h
show the function in which the assert failure occured if the compiler supports it
[wxWidgets.git] / include / wx / gtk1 / listbox.h
index 8612b6ccf4ad13805bfca8ba95888427f96dc00f..92b6e8203e8175d4001132d08cc3a639715c051d 100644 (file)
@@ -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;
@@ -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,10 +70,10 @@ 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 DoSetSelection(int n, bool select);
@@ -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 );