Lines Matching refs:pVDev

1035 sal_uInt16 lcl_DrawBullet(VirtualDevice* pVDev,  in lcl_DrawBullet()  argument
1039 Font aTmpFont(pVDev->GetFont()); in lcl_DrawBullet()
1044 pVDev->SetFont( aFont ); in lcl_DrawBullet()
1046 pVDev->DrawText( Point(nXStart, nYStart), aText ); in lcl_DrawBullet()
1047 sal_uInt16 nRet = (sal_uInt16)pVDev->GetTextWidth(aText); in lcl_DrawBullet()
1049 pVDev->SetFont(aTmpFont); in lcl_DrawBullet()
1055 sal_uInt16 lcl_DrawGraphic(VirtualDevice* pVDev, const SwNumFmt &rFmt, sal_uInt16 nXStart, in lcl_DrawGraphic() argument
1069 pGrf->Draw( pVDev, Point(nXStart,nYStart), in lcl_DrawGraphic()
1070 pVDev->PixelToLogic( aGSize ) ); in lcl_DrawGraphic()
1084 VirtualDevice* pVDev = new VirtualDevice(*this); in Paint() local
1085 pVDev->SetMapMode(GetMapMode()); in Paint()
1086 pVDev->SetOutputSize( aSize ); in Paint()
1089 pVDev->SetFillColor( GetSettings().GetStyleSettings().GetWindowColor() ); in Paint()
1090 pVDev->SetLineColor( GetSettings().GetStyleSettings().GetButtonTextColor() ); in Paint()
1091 pVDev->DrawRect(aRect); in Paint()
1180 nBulletWidth = lcl_DrawGraphic(pVDev, rFmt, in Paint()
1186 nBulletWidth = lcl_DrawBullet(pVDev, rFmt, nNumberXPos, nYStart, aStdFont.GetSize()); in Paint()
1190 pVDev->SetFont(aStdFont); in Paint()
1196 pVDev->DrawText( Point(nNumberXPos, nYStart), aText ); in Paint()
1197 nBulletWidth = (sal_uInt16)pVDev->GetTextWidth(aText); in Paint()
1204 pVDev->SetFont(aStdFont); in Paint()
1206 pVDev->DrawText( Point(nNumberXPos, nYStart), aText ); in Paint()
1207 nBulletWidth = nBulletWidth + (sal_uInt16)pVDev->GetTextWidth(aText); in Paint()
1249pVDev->SetFillColor( GetSettings().GetStyleSettings().GetWindowColor() ); // Color( COL_BLACK ) ); in Paint()
1250 pVDev->DrawRect( aRect1 ); in Paint()
1253 pVDev->DrawRect( aRect2 ); in Paint()
1292 lcl_DrawGraphic(pVDev, rFmt, nXStart, nYStart, nWidthRelation); in Paint()
1297 nTextOffset = lcl_DrawBullet(pVDev, rFmt, nXStart, nYStart, aStdFont.GetSize()); in Paint()
1302 pVDev->SetFont(aStdFont); in Paint()
1308 pVDev->DrawText( Point(nXStart, nYStart), aText ); in Paint()
1309 nTextOffset = (sal_uInt16)pVDev->GetTextWidth(aText); in Paint()
1313 pVDev->SetFont(aStdFont); in Paint()
1326 pVDev->DrawText( Point(nXStart + nTextOffset, nYStart), sMsg ); in Paint()
1332 *pVDev ); in Paint()
1333 delete pVDev; in Paint()