• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/generic/

Lines Matching refs:m_table

3445     m_table = (wxGridTableBase *) NULL;
3454 m_table = table;
4367 delete m_table;
4368 else if ( m_table && m_table->GetView() == this )
4369 m_table->SetView(NULL);
4392 m_table = (wxGridTableBase *) NULL;
4488 m_table = new wxGridStringTable( m_numRows, m_numCols );
4489 m_table->SetView( this );
4525 if (m_table)
4527 m_table->SetView(0);
4529 delete m_table;
4530 m_table = NULL;
4553 m_table = table;
4554 m_table->SetView( this );
4936 wxGridCellAttrProvider * attrProvider = m_table->GetAttrProvider();
5019 wxGridCellAttrProvider * attrProvider = m_table->GetAttrProvider();
5099 wxGridCellAttrProvider * attrProvider = m_table->GetAttrProvider();
5213 wxGridCellAttrProvider * attrProvider = m_table->GetAttrProvider();
6485 if (m_table)
6545 if (m_table)
6711 if ( m_table )
6716 m_table->Clear();
6732 if ( m_table )
6737 bool done = m_table->InsertRows( pos, numRows );
6757 if ( m_table )
6759 bool done = m_table && m_table->AppendRows( numRows );
6779 if ( m_table )
6784 bool done = m_table->DeleteRows( pos, numRows );
6803 if ( m_table )
6808 bool done = m_table->InsertCols( pos, numCols );
6827 if ( m_table )
6829 bool done = m_table->AppendCols( numCols );
6848 if ( m_table )
6853 bool done = m_table->DeleteCols( pos, numCols );
7550 if ( m_table )
7570 if ( m_table )
7576 m_table->SetValue( row, col, GetCellValue(row, col) );
7640 if (m_table && m_table->IsEmptyCell(row, col))
7658 if (!m_table->IsEmptyCell(row + l, j))
8608 if ((maxWidth > rect.width) && (col < m_numCols) && m_table)
8618 if (m_table->IsEmptyCell( row, i ) &&
9285 if ( m_table &&
9292 if ( m_table->IsEmptyCell(row, col) )
9300 if ( !(m_table->IsEmptyCell(row, col)) )
9304 else if ( m_table->IsEmptyCell(row - 1, col) )
9312 if ( !(m_table->IsEmptyCell(row, col)) )
9323 if ( m_table->IsEmptyCell(row, col) )
9351 if ( m_table &&
9358 if ( m_table->IsEmptyCell(row, col) )
9366 if ( !(m_table->IsEmptyCell(row, col)) )
9370 else if ( m_table->IsEmptyCell(row + 1, col) )
9378 if ( !(m_table->IsEmptyCell(row, col)) )
9389 if ( m_table->IsEmptyCell(row, col) )
9417 if ( m_table &&
9424 if ( m_table->IsEmptyCell(row, col) )
9432 if ( !(m_table->IsEmptyCell(row, col)) )
9436 else if ( m_table->IsEmptyCell(row, col - 1) )
9444 if ( !(m_table->IsEmptyCell(row, col)) )
9455 if ( m_table->IsEmptyCell(row, col) )
9483 if ( m_table &&
9490 if ( m_table->IsEmptyCell(row, col) )
9498 if ( !(m_table->IsEmptyCell(row, col)) )
9502 else if ( m_table->IsEmptyCell(row, col + 1) )
9510 if ( !(m_table->IsEmptyCell(row, col)) )
9521 if ( m_table->IsEmptyCell(row, col) )
9574 if ( m_table )
9576 return m_table->GetRowLabelValue( row );
9588 if ( m_table )
9590 return m_table->GetColLabelValue( col );
9783 if ( m_table )
9785 m_table->SetRowLabelValue( row, s );
9802 if ( m_table )
9804 m_table->SetColLabelValue( col, s );
10110 if ( !m_table )
10115 return m_table->CanHaveAttributes();
10179 attr = m_table ? m_table->GetAttr(row, col, wxGridCellAttr::Any)
10204 wxCHECK_MSG( m_table, attr, _T("must have a table") );
10206 attr = m_table->GetAttr(row, col, wxGridCellAttr::Cell);
10213 m_table->SetAttr(attr, row, col);
10246 wxGridCellAttr *attr = m_table->GetAttr(-1, col, wxGridCellAttr::Col );
10264 m_table->SetAttr(attr, row, col);
10277 m_table->SetRowAttr(attr, row);
10290 m_table->SetColAttr(attr, col);
10452 wxString typeName = m_table->GetTypeName(row, col);
10458 wxString typeName = m_table->GetTypeName(row, col);
11064 if ( m_table )
11066 m_table->SetValue( row, col, s );