]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dbgrid.h
added selecting-while-dragging
[wxWidgets.git] / include / wx / dbgrid.h
index af4145e7b53bceb58c8a624354366442a79ae53b..e5c9fa6b08a55b6386f33fe2f56fcd473afad94e 100644 (file)
@@ -78,6 +78,18 @@ public:
     //Recurse to find length.
     int Length() { return (m_next ? m_next->Length() +1 :  1); }
 
+    // Adds a new column info (2 step creation)
+    void AddColInfo (int colNo,
+                    wxString type,
+                    wxString title)
+    {
+        GetLast()->m_next = new wxDbGridColInfo (colNo, type, title, NULL);
+    }
+
+    // Searches last
+    wxDbGridColInfo *GetLast() { return (m_next ? m_next->GetLast() : this); }
+
+
     protected:
     wxDbGridColInfoBase  m_data;
     wxDbGridColInfo     *m_next;