Lines Matching refs:rOutDev
1026 void ScCsvGrid::ImplSetColumnClipRegion( OutputDevice& rOutDev, sal_uInt32 nColIndex ) in ImplSetColumnClipRegion() argument
1028 rOutDev.SetClipRegion( Region( Rectangle( in ImplSetColumnClipRegion()
1033 void ScCsvGrid::ImplDrawColumnHeader( OutputDevice& rOutDev, sal_uInt32 nColIndex, Color aFillColor… in ImplDrawColumnHeader() argument
1039 rOutDev.SetLineColor(); in ImplDrawColumnHeader()
1040 rOutDev.SetFillColor( aFillColor ); in ImplDrawColumnHeader()
1041 rOutDev.DrawRect( Rectangle( nX1, 0, nX2, nHdrHt ) ); in ImplDrawColumnHeader()
1043 rOutDev.SetFont( maHeaderFont ); in ImplDrawColumnHeader()
1044 rOutDev.SetTextColor( maHeaderTextColor ); in ImplDrawColumnHeader()
1045 rOutDev.SetTextFillColor(); in ImplDrawColumnHeader()
1046 rOutDev.DrawText( Point( nX1 + 1, 0 ), GetColumnTypeName( nColIndex ) ); in ImplDrawColumnHeader()
1048 rOutDev.SetLineColor( maHeaderGridColor ); in ImplDrawColumnHeader()
1049 rOutDev.DrawLine( Point( nX1, nHdrHt ), Point( nX2, nHdrHt ) ); in ImplDrawColumnHeader()
1050 rOutDev.DrawLine( Point( nX2, 0 ), Point( nX2, nHdrHt ) ); in ImplDrawColumnHeader()