Lines Matching refs:pOutDev

249 void EditEngine::Draw( OutputDevice* pOutDev, const Rectangle& rOutRect )  in Draw()  argument
252 Draw( pOutDev, rOutRect, Point( 0, 0 ) ); in Draw()
255 void EditEngine::Draw( OutputDevice* pOutDev, const Point& rStartPos, short nOrientation ) in Draw() argument
261 if( pOutDev->GetConnectMetaFile() ) in Draw()
262 pOutDev->Push(); in Draw()
269 pImpEditEngine->Paint( pOutDev, aBigRec, aStartPos, sal_False, nOrientation ); in Draw()
270 if( pOutDev->GetConnectMetaFile() ) in Draw()
271 pOutDev->Pop(); in Draw()
274 void EditEngine::Draw( OutputDevice* pOutDev, const Rectangle& rOutRect, const Point& rStartDocPos ) in Draw() argument
276 Draw( pOutDev, rOutRect, rStartDocPos, sal_True ); in Draw()
279 void EditEngine::Draw( OutputDevice* pOutDev, const Rectangle& rOutRect, const Point& rStartDocPos,… in Draw() argument
290 Rectangle aOutRect( pOutDev->LogicToPixel( rOutRect ) ); in Draw()
291 aOutRect = pOutDev->PixelToLogic( aOutRect ); in Draw()
305 sal_Bool bClipRegion = pOutDev->IsClipRegion(); in Draw()
306 sal_Bool bMetafile = pOutDev->GetConnectMetaFile() ? sal_True : sal_False; in Draw()
307 Region aOldRegion = pOutDev->GetClipRegion(); in Draw()
310 if ( pOutDev->GetOutDevType() == OUTDEV_PRINTER ) in Draw()
328 pOutDev->Push(); in Draw()
345 if ( pOutDev->GetOutDevType() == OUTDEV_PRINTER ) in Draw()
348 aPixSz = pOutDev->PixelToLogic( aPixSz ); in Draw()
352 pOutDev->IntersectClipRegion( aClipRect ); in Draw()
356 pImpEditEngine->Paint( pOutDev, aOutRect, aStartPos ); in Draw()
359 pOutDev->Pop(); in Draw()
361 pOutDev->SetClipRegion( aOldRegion ); in Draw()
363 pOutDev->SetClipRegion(); in Draw()