• 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 defs:numCols

332     void UpdateAttrCols( size_t pos, int numCols );
2747 void wxGridCellAttrData::UpdateAttrCols( size_t pos, int numCols )
2756 if ( numCols > 0 )
2759 coords.SetCol(col + numCols);
2761 else if (numCols < 0)
2764 if ((size_t)col >= pos - numCols)
2767 coords.SetCol(col + numCols);
3036 void wxGridCellAttrProvider::UpdateAttrCols( size_t pos, int numCols )
3040 m_data->m_cellAttrs.UpdateAttrCols( pos, numCols );
3042 m_data->m_colAttrs.UpdateAttrRowsOrCols( pos, numCols );
3319 size_t WXUNUSED(numCols) )
3326 bool wxGridTableBase::AppendCols( size_t WXUNUSED(numCols) )
3334 size_t WXUNUSED(numCols) )
3475 wxGridStringTable::wxGridStringTable( int numRows, int numCols )
3481 sa.Alloc( numCols );
3482 sa.Add( wxEmptyString, numCols );
3533 int numRows, numCols;
3538 numCols = m_data[0].GetCount();
3542 for ( col = 0; col < numCols; col++ )
3651 bool wxGridStringTable::InsertCols( size_t pos, size_t numCols )
3662 return AppendCols( numCols );
3667 m_colLabels.Insert( wxEmptyString, pos, numCols );
3670 for ( i = pos; i < pos + numCols; i++ )
3676 for ( col = pos; col < pos + numCols; col++ )
3687 numCols );
3695 bool wxGridStringTable::AppendCols( size_t numCols )
3713 m_data[row].Add( wxEmptyString, numCols );
3720 numCols );
3728 bool wxGridStringTable::DeleteCols( size_t pos, size_t numCols )
3742 (unsigned long)numCols,
3754 if ( numCols > curNumCols - colID )
3756 numCols = curNumCols - colID;
3763 // element and not numCols, so account for it
3771 if ( numCols >= curNumCols )
3777 m_data[row].RemoveAt( colID, numCols );
3786 numCols );
4478 bool wxGrid::CreateGrid( int numRows, int numCols,
4486 m_numCols = numCols;
5048 int numCols = msg.GetCommandInt2();
5049 m_numCols += numCols;
5055 for ( i = 0; i < m_numCols - numCols; i++ )
5058 m_colAt[i] += numCols;
5061 m_colAt.Insert( pos, pos, numCols );
5064 for ( i = pos + 1; i < (int)pos + numCols; i++ )
5072 m_colWidths.Insert( m_defaultColWidth, pos, numCols );
5073 m_colRights.Insert( 0, pos, numCols );
5098 m_selection->UpdateCols( pos, numCols );
5101 attrProvider->UpdateAttrCols( pos, numCols );
5113 int numCols = msg.GetCommandInt();
5115 m_numCols += numCols;
5119 m_colAt.Add( 0, numCols );
5131 m_colWidths.Add( m_defaultColWidth, numCols );
5132 m_colRights.Add( 0, numCols );
5167 int numCols = msg.GetCommandInt2();
5168 m_numCols -= numCols;
5174 m_colAt.RemoveAt( pos, numCols );
5181 m_colAt[colPos] -= numCols;
5187 m_colWidths.RemoveAt( pos, numCols );
5188 m_colRights.RemoveAt( pos, numCols );
5212 m_selection->UpdateCols( pos, -((int)numCols) );
5216 attrProvider->UpdateAttrCols( pos, -((int)numCols) );
6793 bool wxGrid::InsertCols( int pos, int numCols, bool WXUNUSED(updateLabels) )
6808 bool done = m_table->InsertCols( pos, numCols );
6817 bool wxGrid::AppendCols( int numCols, bool WXUNUSED(updateLabels) )
6829 bool done = m_table->AppendCols( numCols );
6838 bool wxGrid::DeleteCols( int pos, int numCols, bool WXUNUSED(updateLabels) )
6853 bool done = m_table->DeleteCols( pos, numCols );