]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/dataview.h
add GetSize also to wxGDIImage since wxBitmap under some ports derives from wxGDIImag...
[wxWidgets.git] / include / wx / generic / dataview.h
index f3c6057cbae39742a085d0e770bfbca8d784ac90..a10ee6606baaf2d99e24b500537c28a9f7e087bf 100644 (file)
@@ -389,8 +389,6 @@ class WXDLLIMPEXP_ADV wxDataViewCtrl: public wxDataViewCtrlBase,
 public:
     wxDataViewCtrl() : wxScrollHelperNative(this)
     {
-        //No sorting column at start, I think
-        m_sortingColumn = NULL;
         Init();
     }
 
@@ -400,7 +398,6 @@ public:
            const wxValidator& validator = wxDefaultValidator )
              : wxScrollHelperNative(this)
     {
-        m_sortingColumn = NULL;
         Create(parent, id, pos, size, style, validator );
     }
 
@@ -447,6 +444,8 @@ public:
 
     virtual void Expand( const wxDataViewItem & item );
     virtual void Collapse( const wxDataViewItem & item );
+    
+    virtual void SetFocus();
 
 protected:
     virtual int GetSelections( wxArrayInt & sel ) const; 
@@ -490,6 +489,7 @@ private:
 
 private:
     void OnSize( wxSizeEvent &event );
+    virtual wxSize GetSizeAvailableForScrollTarget(const wxSize& size);
 
     // we need to return a special WM_GETDLGCODE value to process just the
     // arrows but let the other navigation characters through