]> git.saurik.com Git - wxWidgets.git/commitdiff
Set/GetExpanderColumn() should use wxDataViewColumn, not unsigned int
authorRobert Roebling <robert@roebling.de>
Sat, 25 Aug 2007 13:28:56 +0000 (13:28 +0000)
committerRobert Roebling <robert@roebling.de>
Sat, 25 Aug 2007 13:28:56 +0000 (13:28 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48380 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/dataviewctrl.tex
include/wx/dataview.h
src/generic/datavgen.cpp
src/gtk/dataview.cpp
src/mac/carbon/dataview.cpp

index acc6505b668e21b41426622d2fda9d2cf9ee497e..05520d13ce3627ff90d3bb58185c32dc01012ea2 100644 (file)
@@ -201,7 +201,7 @@ Call this to ensure that the given item is visible.
 
 \membersection{wxDataViewCtrl::GetExpanderColumn}\label{wxdataviewctrlgetexpandercolumn}
 
-\constfunc{unsigned int}{GetExpanderColumn}{\void}
+\constfunc{wxDataViewColumn *}{GetExpanderColumn}{\void}
 
 Returns column containing the expanders.
 
@@ -256,7 +256,7 @@ Select all items.
 
 \membersection{wxDataViewCtrl::SetExpanderColumn}\label{wxdataviewctrlsetexpandercolumn}
 
-\func{void}{SetExpanderColumn}{\param{unsigned int }{col}}
+\func{void}{SetExpanderColumn}{\param{wxDataViewColumn *}{col}}
 
 Set which column shall contain the tree-like expanders.
 
index 75342f2e67ac7c33bf110ffe11c39ec97b4e3f36..a7f18c765d8cc6eeaac1d4836068e14fb8336e2e 100644 (file)
@@ -465,9 +465,9 @@ public:
     virtual bool ClearColumns();
     virtual wxDataViewColumn* GetColumn( unsigned int pos ) const;
 
-    void SetExpanderColumn( unsigned int col )
+    void SetExpanderColumn( wxDataViewColumn *col )
         { m_expander_column = col ; DoSetExpanderColumn(); }
-    unsigned int GetExpanderColumn() const 
+    wxDataViewColumn *GetExpanderColumn() const 
         { return m_expander_column; }
 
     void SetIndent( int indent )
@@ -497,7 +497,7 @@ protected:
 private:
     wxDataViewModel        *m_model;
     wxList                  m_cols;
-    unsigned int m_expander_column;
+    wxDataViewColumn       *m_expander_column;
     int m_indent ;
        
 protected:
index 099433e4c9aadf760c0b26c3160618ec6009ed0e..2d8182e377523a752fec835f5aed2d58ba06887f 100644 (file)
@@ -2321,7 +2321,7 @@ void wxDataViewMainWindow::OnPaint( wxPaintEvent &WXUNUSED(event) )
             }
 
             wxDataViewItem dataitem = node->GetItem();
-            model->GetValue( value, dataitem, col->GetModelColumn());
+             model->GetValue( value, dataitem, col->GetModelColumn());
             cell->SetValue( value );
 
             // update the y offset
@@ -2329,7 +2329,7 @@ void wxDataViewMainWindow::OnPaint( wxPaintEvent &WXUNUSED(event) )
 
             //Draw the expander here.
             int indent = node->GetIndentLevel();
-            if( col->GetModelColumn() == GetOwner()->GetExpanderColumn() )
+            if( col == GetOwner()->GetExpanderColumn() )
             {
                 //Calculate the indent first
                 indent = cell_rect.x + GetOwner()->GetIndent() * indent;
index 6caab4aded704a23358418d5e604f396d8e0045a..1886cb9a88f5c2a30c491bcb8fb989a10931099e 100644 (file)
@@ -3116,6 +3116,8 @@ wxRect wxDataViewCtrl::GetItemRect( const wxDataViewItem &item,
 
 void wxDataViewCtrl::DoSetExpanderColumn()
 {
+    gtk_tree_view_set_expander_column( GTK_TREE_VIEW(m_treeview), 
+        GTK_TREE_VIEW_COLUMN( GetExpanderColumn()->GetGtkHandle() ) );
 }
 
 void wxDataViewCtrl::DoSetIndent()
index e72f73334594d35121f0d800febe30f4b0d0e24a..df0e175ccf92342fd6e502625571b06287d6bc0e 100644 (file)
@@ -779,7 +779,7 @@ bool wxDataViewCtrl::AppendColumn(wxDataViewColumn* dataViewColumnPtr)
     if (dataViewColumnPtr->IsSortable()) // if the current column is marked sortable this column will become the active sortable column, otherwise don't do anything
       MacDataViewListCtrlPtr->SetSortProperty(NewPropertyID);
 #endif
-    if (this->GetColumnCount()-1 == this->GetExpanderColumn()) // if the current column is marked expandable this column will become the active expandable column
+    if (dataViewColumnPtr == this->GetExpanderColumn()) // if the current column is marked expandable this column will become the active expandable column
       MacDataViewListCtrlPtr->SetDisclosureColumn(NewPropertyID,true);
 
    // make sure that the data is up-to-date...