Lines Matching refs:pDev
216 void SfxObjectShell::DoDraw( OutputDevice* pDev, in DoDraw() argument
222 MapMode aMod = pDev->GetMapMode(); in DoDraw()
225 aSize = pDev->LogicToLogic( aSize, &aWilliMode, &aMod ); in DoDraw()
234 DoDraw_Impl( pDev, rObjPos, aXF, aYF, rSetup, nAspect ); in DoDraw()
239 void SfxObjectShell::DoDraw_Impl( OutputDevice* pDev, in DoDraw_Impl() argument
253 Point aOrg = pDev->LogicToLogic( rViewPos, NULL, &aMapMode ); in DoDraw_Impl()
261 pDev->Push(); in DoDraw_Impl()
264 if( pDev->IsClipRegion() && pDev->GetOutDevType() != OUTDEV_PRINTER ) in DoDraw_Impl()
266 aRegion = pDev->GetClipRegion(); in DoDraw_Impl()
267 aRegion = pDev->LogicToPixel( aRegion ); in DoDraw_Impl()
269 pDev->SetRelativeMapMode( aMapMode ); in DoDraw_Impl()
271 GDIMetaFile * pMtf = pDev->GetConnectMetaFile(); in DoDraw_Impl()
274 if( pMtf->IsRecord() && pDev->GetOutDevType() != OUTDEV_PRINTER ) in DoDraw_Impl()
280 if( pDev->IsClipRegion() && pDev->GetOutDevType() != OUTDEV_PRINTER ) in DoDraw_Impl()
283 aRegion = pDev->PixelToLogic( aRegion ); in DoDraw_Impl()
284 pDev->SetClipRegion( aRegion ); in DoDraw_Impl()
287 pMtf->Record( pDev ); in DoDraw_Impl()
293 Draw( pDev, rSetup, nAspect ); in DoDraw_Impl()
297 pDev->Pop(); in DoDraw_Impl()