]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/listbase.h
support SDK < 10.6, fixes #14902
[wxWidgets.git] / include / wx / listbase.h
index 85450e236ced47cdafe709dc426f679aa2a69a6f..4aa0d5f0465c6ce44ccab9626d93ff993d6fa0d0 100644 (file)
@@ -16,6 +16,7 @@
 #include "wx/font.h"
 #include "wx/gdicmn.h"
 #include "wx/event.h"
+#include "wx/control.h"
 
 class WXDLLIMPEXP_FWD_CORE wxImageList;
 
@@ -410,6 +411,13 @@ public:
 
     // All these methods can only be used in report view mode.
 
+    // Appends a new column.
+    //
+    // Returns the index of the newly inserted column or -1 on error.
+    long AppendColumn(const wxString& heading,
+                      int format = wxLIST_FORMAT_LEFT,
+                      int width = -1);
+
     // Add a new column to the control at the position "col".
     //
     // Returns the index of the newly inserted column or -1 on error.
@@ -417,7 +425,7 @@ public:
     long InsertColumn(long col,
                       const wxString& heading,
                       int format = wxLIST_FORMAT_LEFT,
-                      int width = -1);
+                      int width = wxLIST_AUTOSIZE);
 
     // Delete the given or all columns.
     virtual bool DeleteColumn(int col) = 0;
@@ -446,6 +454,10 @@ public:
     bool InReportView() const { return HasFlag(wxLC_REPORT); }
     bool IsVirtual() const { return HasFlag(wxLC_VIRTUAL); }
 
+    // Enable or disable beep when incremental match doesn't find any item.
+    // Only implemented in the generic version currently.
+    virtual void EnableBellOnNoMatch(bool WXUNUSED(on) = true) { }
+
 protected:
     // Real implementations methods to which our public forwards.
     virtual long DoInsertColumn(long col, const wxListItem& info) = 0;