Lines Matching refs:aTabCols
1463 SwTabCols aTabCols; in AdjustCellWidth() local
1464 GetTabCols( aTabCols, 0, (SwCellFrm*)pBoxFrm ); in AdjustCellWidth()
1466 if ( ! aTabCols.Count() ) in AdjustCellWidth()
1469 const sal_uInt8 nTmp = (sal_uInt8)Max( sal_uInt16(255), sal_uInt16(aTabCols.Count() + 1) ); in AdjustCellWidth()
1474 for ( i = 0; i <= aTabCols.Count(); ++i ) in AdjustCellWidth()
1479 ::lcl_CalcColValues( aWish, aTabCols, pStart, pEnd, sal_True ); in AdjustCellWidth()
1487 ::lcl_CalcColValues( aMins, aTabCols, pStart, pEnd, sal_False ); in AdjustCellWidth()
1495 for ( i = 0; i <= aTabCols.Count(); ++i ) in AdjustCellWidth()
1501 nWish = static_cast<sal_uInt16>( nWish + aTabCols[i] - aTabCols.GetLeft() ); in AdjustCellWidth()
1502 else if ( i == aTabCols.Count() ) in AdjustCellWidth()
1503 nWish = static_cast<sal_uInt16>(nWish + aTabCols.GetRight() - aTabCols[i-1] ); in AdjustCellWidth()
1505 nWish = static_cast<sal_uInt16>(nWish + aTabCols[i] - aTabCols[i-1] ); in AdjustCellWidth()
1515 const sal_uInt16 nOldRight = static_cast<sal_uInt16>(aTabCols.GetRight()); in AdjustCellWidth()
1524 for ( i = 0; i <= aTabCols.Count(); ++i ) in AdjustCellWidth()
1535 if( aTabCols.Count() ) in AdjustCellWidth()
1536 nDiff -= aTabCols[0] - aTabCols.GetLeft(); in AdjustCellWidth()
1538 nDiff -= aTabCols.GetRight() - aTabCols.GetLeft(); in AdjustCellWidth()
1540 else if ( i == aTabCols.Count() ) in AdjustCellWidth()
1541 nDiff -= aTabCols.GetRight() - aTabCols[i-1]; in AdjustCellWidth()
1543 nDiff -= aTabCols[i] - aTabCols[i-1]; in AdjustCellWidth()
1545 long nTabRight = aTabCols.GetRight() + nDiff; in AdjustCellWidth()
1549 if ( !bBalance && nTabRight > aTabCols.GetRightMax() ) in AdjustCellWidth()
1551 const long nTmpD = nTabRight - aTabCols.GetRightMax(); in AdjustCellWidth()
1555 for ( sal_uInt16 i2 = i; i2 < aTabCols.Count(); ++i2 ) in AdjustCellWidth()
1556 aTabCols[i2] += nDiff; in AdjustCellWidth()
1557 aTabCols.SetRight( nTabRight ); in AdjustCellWidth()
1562 const sal_uInt16 nNewRight = static_cast<sal_uInt16>(aTabCols.GetRight()); in AdjustCellWidth()
1568 SetTabCols( aTabCols, sal_False, 0, (SwCellFrm*)pBoxFrm ); in AdjustCellWidth()