Lines Matching refs:rOutDev
48 void DeviceHelper::init( const OutDevProviderSharedPtr& rOutDev ) in init() argument
50 mpOutDev = rOutDev; in init()
59 OutputDevice& rOutDev = mpOutDev->getOutDev(); in getPhysicalResolution() local
60 const MapMode aOldMapMode( rOutDev.GetMapMode() ); in getPhysicalResolution()
61 rOutDev.SetMapMode( MapMode(MAP_MM) ); in getPhysicalResolution()
62 const Size aPixelSize( rOutDev.LogicToPixel(Size(1,1)) ); in getPhysicalResolution()
63 rOutDev.SetMapMode( aOldMapMode ); in getPhysicalResolution()
74 OutputDevice& rOutDev = mpOutDev->getOutDev(); in getPhysicalSize() local
75 const MapMode aOldMapMode( rOutDev.GetMapMode() ); in getPhysicalSize()
76 rOutDev.SetMapMode( MapMode(MAP_MM) ); in getPhysicalSize()
77 const Size aLogSize( rOutDev.PixelToLogic(rOutDev.GetOutputSizePixel()) ); in getPhysicalSize()
78 rOutDev.SetMapMode( aOldMapMode ); in getPhysicalSize()
224 OutputDevice& rOutDev = mpOutDev->getOutDev(); in dumpScreenContent() local
225 bool bOldMap( rOutDev.IsMapModeEnabled() ); in dumpScreenContent()
226 rOutDev.EnableMapMode( sal_False ); in dumpScreenContent()
227 … WriteDIB(rOutDev.GetBitmap(aEmptyPoint, rOutDev.GetOutputSizePixel()), aStream, false, true); in dumpScreenContent()
228 rOutDev.EnableMapMode( bOldMap ); in dumpScreenContent()