+ wxDataViewListModel *model = GetOwner()->GetModel();
+
+ size_t item_start = update.y / m_lineHeight;
+ size_t item_count = (update.height / m_lineHeight) + 1;
+
+ wxRect cell_rect;
+ cell_rect.x = 0;
+ cell_rect.height = m_lineHeight;
+ size_t cols = GetOwner()->GetNumberOfColumns();
+ size_t i;
+ for (i = 0; i < cols; i++)
+ {
+ wxDataViewColumn *col = GetOwner()->GetColumn( i );
+ wxDataViewCell *cell = col->GetCell();
+ cell_rect.width = col->GetWidth();
+
+ size_t item;
+ for (item = item_start; item <= item_start+item_count; item++)
+ {
+ cell_rect.y = item*m_lineHeight;
+ wxVariant value;
+ model->GetValue( value, col->GetModelColumn(), item );
+ cell->SetValue( value );
+ cell->Render( cell_rect, &dc, 0 );
+ }
+
+ cell_rect.x += cell_rect.width;
+ }