Lines Matching refs:pVDev

445                             VirtualDevice* pVDev = new VirtualDevice;  in playMetafile()  local
446 if( pVDev->SetOutputSizePixel( aDstSizePixel ) ) in playMetafile()
454 pVDev->SetMapMode( aMapMode ); in playMetafile()
455 Size aDstSize( pVDev->PixelToLogic( aDstSizePixel ) ); in playMetafile()
468 aTmpMtf.Play( pVDev, aPoint, aDstSize ); in playMetafile()
471 pVDev->EnableMapMode( sal_False ); in playMetafile()
472 aPaint = pVDev->GetBitmap( aPoint, aDstSizePixel ); in playMetafile()
473 pVDev->EnableMapMode( sal_True ); in playMetafile()
476 pVDev->SetLineColor( COL_BLACK ); in playMetafile()
477 pVDev->SetFillColor( COL_BLACK ); in playMetafile()
478 pVDev->DrawRect( Rectangle( aPoint, aDstSize ) ); in playMetafile()
479pVDev->SetDrawMode( DRAWMODE_WHITELINE | DRAWMODE_WHITEFILL | DRAWMODE_WHITETEXT | in playMetafile()
482 aTmpMtf.Play( pVDev, aPoint, aDstSize ); in playMetafile()
484 pVDev->EnableMapMode( sal_False ); in playMetafile()
485 aMask = pVDev->GetBitmap( aPoint, aDstSizePixel ); in playMetafile()
486 pVDev->EnableMapMode( sal_True ); in playMetafile()
489 pVDev->SetDrawMode( DRAWMODE_GRAYGRADIENT ); in playMetafile()
490pVDev->DrawGradient( Rectangle( aPoint, aDstSize ), rTransparenceGradient ); in playMetafile()
491 pVDev->SetDrawMode( DRAWMODE_DEFAULT ); in playMetafile()
492 pVDev->EnableMapMode( sal_False ); in playMetafile()
493 pVDev->DrawMask( aPoint, aDstSizePixel, aMask, Color( COL_WHITE ) ); in playMetafile()
494 aAlpha = pVDev->GetBitmap( aPoint, aDstSizePixel ); in playMetafile()
497 delete pVDev; in playMetafile()