Lines Matching refs:nNumRows
1300 void BrowseBox::RowInserted( long nRow, long nNumRows, sal_Bool bDoPaint, sal_Bool bKeepSelection ) in RowInserted() argument
1309 if ( nNumRows <= 0 ) in RowInserted()
1314 if (nNumRows > 1) in RowInserted()
1316 for (long i = 0; i < nNumRows; i++) in RowInserted()
1324 nRowCount += nNumRows; in RowInserted()
1341 pDataWin->Scroll( 0, GetDataRowHeight() * nNumRows, in RowInserted()
1352 Size( aSz.Width(), nNumRows * GetDataRowHeight() ) ) ); in RowInserted()
1357 nTopRow += nNumRows; in RowInserted()
1361 uRow.pSel->Insert( nRow, nNumRows ); in RowInserted()
1363 uRow.nSel += nNumRows; in RowInserted()
1369 GoToRow( nCurRow += nNumRows, sal_False, bKeepSelection ); in RowInserted()
1387 nRow + nNumRows, in RowInserted()
1416 void BrowseBox::RowRemoved( long nRow, long nNumRows, sal_Bool bDoPaint ) in RowRemoved() argument
1425 if ( nNumRows <= 0 ) in RowRemoved()
1440 nRowCount -= nNumRows; in RowRemoved()
1447 for ( long i = 0; i < nNumRows; i++ ) in RowRemoved()
1449 else if ( nRow < uRow.nSel && uRow.nSel >= nNumRows ) in RowRemoved()
1450 uRow.nSel -= nNumRows; in RowRemoved()
1459 nCurRow -= Min( nCurRow - nRow, nNumRows ); in RowRemoved()
1486 pDataWin->Scroll( 0, - (short) GetDataRowHeight() * nNumRows, in RowRemoved()
1488 aSz.Height() - nY + nNumRows*GetDataRowHeight() ) ), in RowRemoved()
1500 nNumRows * GetDataRowHeight() ) ); in RowRemoved()
1507 nTopRow = nTopRow >= nNumRows ? nTopRow-nNumRows : 0; in RowRemoved()
1559 nRow + nNumRows, in RowRemoved()
1567 for (sal_Int32 i = nRow+1 ; i <= (nRow+nNumRows) ; ++i) in RowRemoved()