Lines Matching refs:rArea

127 bool TableLayouter::getCellArea( const CellPos& rPos, basegfx::B2IRectangle& rArea ) const  in getCellArea()
141 rArea = basegfx::B2IRectangle( x, y, x + aCellSize.getX(), y + aCellSize.getY() ); in getCellArea()
539 void TableLayouter::LayoutTableWidth( Rectangle& rArea, bool bFit ) in LayoutTableWidth() argument
617 if( !bFit && !aOptimalColumns.empty() && (nCurrentWidth < rArea.getWidth()) ) in LayoutTableWidth()
619 sal_Int32 nLeft = rArea.getWidth() - nCurrentWidth; in LayoutTableWidth()
667 if( bFit && (nCurrentWidth != rArea.getWidth()) ) in LayoutTableWidth()
668 distribute( maColumns, rArea.getWidth() - nCurrentWidth ); in LayoutTableWidth()
686 rArea.SetSize( Size( nNewWidth, rArea.GetHeight() ) ); in LayoutTableWidth()
687 updateCells( rArea ); in LayoutTableWidth()
692 void TableLayouter::LayoutTableHeight( Rectangle& rArea, bool bFit ) in LayoutTableHeight() argument
768 if( !bFit && !aOptimalRows.empty() && (nCurrentHeight < rArea.getHeight()) ) in LayoutTableHeight()
770 sal_Int32 nLeft = rArea.getHeight() - nCurrentHeight; in LayoutTableHeight()
817 if( bFit && nCurrentHeight != rArea.getHeight() ) in LayoutTableHeight()
818 distribute( maRows, rArea.getHeight() - nCurrentHeight ); in LayoutTableHeight()
834 rArea.SetSize( Size( rArea.GetWidth(), nNewHeight ) ); in LayoutTableHeight()
835 updateCells( rArea ); in LayoutTableHeight()
1112 void TableLayouter::DistributeColumns( ::Rectangle& rArea, sal_Int32 nFirstCol, sal_Int32 nLastCol ) in DistributeColumns() argument
1140 LayoutTable( rArea, true, false ); in DistributeColumns()
1151 void TableLayouter::DistributeRows( ::Rectangle& rArea, sal_Int32 nFirstRow, sal_Int32 nLastRow ) in DistributeRows() argument
1175 rArea.nBottom += nNeededHeight - nAllHeight; in DistributeRows()
1192 LayoutTable( rArea, false, true ); in DistributeRows()