Lines Matching refs:pVDev

2603 sal_uInt16 lcl_DrawGraphic(VirtualDevice* pVDev, const SvxNumberFormat &rFmt, sal_uInt16 nXStart,  in lcl_DrawGraphic()  argument
2617 pGrf->Draw( pVDev, Point(nXStart,nYStart), in lcl_DrawGraphic()
2618 pVDev->PixelToLogic( aGSize ) ); in lcl_DrawGraphic()
2628 sal_uInt16 lcl_DrawBullet(VirtualDevice* pVDev, in lcl_DrawBullet() argument
2632 Font aTmpFont(pVDev->GetFont()); in lcl_DrawBullet()
2648 aBulletColor = Color(pVDev->GetFillColor().IsDark() ? COL_WHITE : COL_BLACK); in lcl_DrawBullet()
2649 else if(aBulletColor == pVDev->GetFillColor()) in lcl_DrawBullet()
2652 pVDev->SetFont( aFont ); in lcl_DrawBullet()
2656 pVDev->DrawText( Point(nXStart, nY), aText ); in lcl_DrawBullet()
2657 sal_uInt16 nRet = (sal_uInt16)pVDev->GetTextWidth(aText); in lcl_DrawBullet()
2659 pVDev->SetFont(aTmpFont); in lcl_DrawBullet()
2674 VirtualDevice* pVDev = new VirtualDevice(*this); in Paint() local
2675 pVDev->EnableRTL( IsRTLEnabled() ); in Paint()
2676 pVDev->SetMapMode(GetMapMode()); in Paint()
2677 pVDev->SetOutputSize( aSize ); in Paint()
2682 pVDev->SetLineColor(aLineColor); in Paint()
2683 pVDev->SetFillColor( aBackColor ); in Paint()
2684 pVDev->DrawRect(aRect); in Paint()
2775 nBulletWidth = rFmt.IsShowSymbol() ? lcl_DrawGraphic(pVDev, rFmt, in Paint()
2782 lcl_DrawBullet(pVDev, rFmt, nNumberXPos, nYStart, aStdFont.GetSize()) : 0; in Paint()
2786 pVDev->SetFont(aStdFont); in Paint()
2791 Font aSaveFont = pVDev->GetFont(); in Paint()
2799 pVDev->SetFont(aColorFont); in Paint()
2800 pVDev->DrawText( Point(nNumberXPos, nYStart), aText ); in Paint()
2801 pVDev->SetFont(aSaveFont); in Paint()
2802 nBulletWidth = (sal_uInt16)pVDev->GetTextWidth(aText); in Paint()
2809 pVDev->SetFont(aStdFont); in Paint()
2811 pVDev->DrawText( Point(nNumberXPos, nYStart), aText ); in Paint()
2812 nBulletWidth = nBulletWidth + (sal_uInt16)pVDev->GetTextWidth(aText); in Paint()
2852 pVDev->SetFillColor( aBackColor ); in Paint()
2853 pVDev->DrawRect( aRect1 ); in Paint()
2856 pVDev->DrawRect( aRect2 ); in Paint()
2864 long nWidth = pVDev->GetTextWidth(sMsg); in Paint()
2865 long nTextHeight = pVDev->GetTextHeight(); in Paint()
2905 nTextOffset = lcl_DrawGraphic(pVDev, rFmt, nXStart, nYStart, nWidthRelation); in Paint()
2913 nTextOffset = lcl_DrawBullet(pVDev, rFmt, nXStart, nYStart, aStdFont.GetSize()); in Paint()
2926 pVDev->SetFont(aColorFont); in Paint()
2931 pVDev->DrawText( Point(nXStart, nYStart), aText ); in Paint()
2932 pVDev->SetFont(aStdFont); in Paint()
2933 nTextOffset = (sal_uInt16)pVDev->GetTextWidth(aText); in Paint()
2940 pVDev->SetFont(aStdFont); in Paint()
2942 pVDev->DrawText( Point(nXStart + nTextOffset, nYStart), sMsg ); in Paint()
2949 pVDev->SetFillColor( aBlackColor ); in Paint()
2950 pVDev->SetLineColor( aBlackColor ); in Paint()
2955 pVDev->SetFillColor( aLineColor ); in Paint()
2956 pVDev->SetLineColor( aLineColor ); in Paint()
2959 pVDev->DrawRect(aRect1); in Paint()
2966 *pVDev ); in Paint()
2967 delete pVDev; in Paint()