Home
last modified time | relevance | path

Searched refs:nTopRow (Results 1 – 7 of 7) sorted by relevance

/AOO42X/main/svtools/source/brwbox/
H A Dbrwbox1.cxx115 nTopRow = 0; in ConstructImpl()
1161 long nTmpMin = Min( (long)(nTopRow + nRows), (long)(nRowCount - 1) ); in ScrollRows()
1165 if ( nNewTopRow == nTopRow ) in ScrollRows()
1174 nTmpMin = Min( (long)(nTopRow + nRows), (long)(nRowCount - 1) ); in ScrollRows()
1181 long nDeltaY = GetDataRowHeight() * ( nNewTopRow - nTopRow ); in ScrollRows()
1182 long nOldTopRow = nTopRow; in ScrollRows()
1183 nTopRow = nNewTopRow; in ScrollRows()
1188 pVScroll->SetThumbPos( nTopRow ); in ScrollRows()
1199 if ( nTopRow - nOldTopRow ) in ScrollRows()
1205 return nTopRow - nOldTopRow; in ScrollRows()
[all …]
H A Dbrwbox2.cxx354 long nBottomRow = nTopRow + in ToggleSelection()
362 if ( nRow < nTopRow ) in ToggleSelection()
366 Point( nOfsX, (nRow-nTopRow)*GetDataRowHeight() ), in ToggleSelection()
445 (nCurRow - nTopRow) * GetDataRowHeight() + 1 ), in DrawCursor()
643 VisibleRowsChanged(nTopRow, nVisibleRows); in Resize()
948 nRelRow <= nRelBottomRow && (sal_uLong)nTopRow+nRelRow < (sal_uLong)nRowCount; in ImplPaintData()
953 … DBG_ASSERT( (sal_uInt16)(nTopRow+nRelRow) < nRowCount, "BrowseBox::ImplPaintData: invalid seek" ); in ImplPaintData()
954 if ( (nTopRow+long(nRelRow)) < 0 || (sal_uInt16)(nTopRow+nRelRow) >= nRowCount ) in ImplPaintData()
958 sal_uLong nRow = nTopRow+nRelRow; in ImplPaintData()
1205 ? nTopRow || ( nRowCount > nMaxRows ) in UpdateScrollbars()
[all …]
H A Ddatwin.cxx346 long nRow = nRelRow < 0 ? -1 : nRelRow + pBox->nTopRow; in CreateBrowseEvent()
/AOO42X/main/sw/source/filter/xml/
H A Dxmltbli.cxx1944 sal_uInt32 nTopRow, in MakeTableBox() argument
1970 sal_uInt32 nStartRow = nTopRow; in MakeTableBox()
1973 for( i = nTopRow; i < nBottomRow; i++ ) in MakeTableBox()
1984 if( bSplit && (nStartRow>nTopRow || i+1UL<nBottomRow) ) in MakeTableBox()
2001 nStartRow = nTopRow; in MakeTableBox()
2205 sal_uInt32 nTopRow, in MakeTableLine() argument
2212 if( !pUpper && 0UL==nTopRow ) in MakeTableLine()
2230 const OUString& rStyleName = (*pRows)[(sal_uInt16)nTopRow]->GetStyleName(); in MakeTableLine()
2231 if( 1UL == (nBottomRow - nTopRow) && in MakeTableLine()
2245 for( sal_uInt32 nRow=nTopRow; nRow<nBottomRow; nRow++ ) in MakeTableLine()
[all …]
H A Dxmltbli.hxx107 sal_uInt32 nTopRow, sal_uInt32 nLeftCol,
110 sal_uInt32 nTopRow, sal_uInt32 nLeftCol,
113 sal_uInt32 nTopRow, sal_uInt32 nLeftCol,
/AOO42X/main/sw/source/filter/html/
H A Dhtmltab.cxx529 sal_uInt16 nTopRow, sal_uInt16 nLeftCol,
535 sal_uInt16 nTopRow, sal_uInt16 nLeftCol,
1691 sal_uInt16 nTopRow, sal_uInt16 nLeftCol, in MakeTableLine() argument
1695 if( this==pTopTable && !pUpper && 0==nTopRow ) in MakeTableLine()
1702 HTMLTableRow *pTopRow = (*pRows)[nTopRow]; in MakeTableLine()
1706 if( this == pTopTable || nTopRow>0 || nBottomRow<nRows ) in MakeTableLine()
1726 if( nTopRow==nBottomRow-1 && (nRowHeight || pBGBrushItem) ) in MakeTableLine()
1737 nRowHeight += GetTopCellSpace( nTopRow, 1, sal_False ) + in MakeTableLine()
1738 GetBottomCellSpace( nTopRow, 1, sal_False ); in MakeTableLine()
1771 HTMLTableCell *pCell = GetCell(nTopRow,nCol); in MakeTableLine()
[all …]
/AOO42X/main/svtools/inc/svtools/
H A Dbrwbox.hxx266 long nTopRow; // no. of first visible row (0...) member in BrowseBox
397 long GetTopRow() { return nTopRow; } in GetTopRow()