Lines Matching refs:maBufferDevice

45 			if(maBufferDevice.GetOutputSizePixel() != getOutputDevice().GetOutputSizePixel())  in ImpPrepareBufferDevice()
49 maBufferDevice.SetOutputSizePixel(getOutputDevice().GetOutputSizePixel(), false); in ImpPrepareBufferDevice()
53 if(maBufferDevice.GetMapMode() != getOutputDevice().GetMapMode()) in ImpPrepareBufferDevice()
56 maBufferDevice.GetMapMode().GetScaleX() != getOutputDevice().GetMapMode().GetScaleX() in ImpPrepareBufferDevice()
57 || maBufferDevice.GetMapMode().GetScaleY() != getOutputDevice().GetMapMode().GetScaleY()); in ImpPrepareBufferDevice()
61 const Point& rOriginOld = maBufferDevice.GetMapMode().GetOrigin(); in ImpPrepareBufferDevice()
68 const Point aOriginOldPixel(maBufferDevice.LogicToPixel(rOriginOld)); in ImpPrepareBufferDevice()
69 const Point aOriginNewPixel(maBufferDevice.LogicToPixel(rOriginNew)); in ImpPrepareBufferDevice()
70 const Size aOutputSizePixel(maBufferDevice.GetOutputSizePixel()); in ImpPrepareBufferDevice()
73 const bool bMapModeWasEnabled(maBufferDevice.IsMapModeEnabled()); in ImpPrepareBufferDevice()
74 maBufferDevice.EnableMapMode(false); in ImpPrepareBufferDevice()
78 maBufferDevice.DrawOutDev( in ImpPrepareBufferDevice()
83 maBufferDevice.EnableMapMode(bMapModeWasEnabled); in ImpPrepareBufferDevice()
97 maBufferDevice.SetMapMode(getOutputDevice().GetMapMode()); in ImpPrepareBufferDevice()
101 maBufferDevice.SetDrawMode(getOutputDevice().GetDrawMode()); in ImpPrepareBufferDevice()
102 maBufferDevice.SetSettings(getOutputDevice().GetSettings()); in ImpPrepareBufferDevice()
103 maBufferDevice.SetAntialiasing(getOutputDevice().GetAntialiasing()); in ImpPrepareBufferDevice()
120 const bool bMapModeWasEnabledSource(maBufferDevice.IsMapModeEnabled()); in ImpRestoreBackground()
122 ((OverlayManagerBuffered*)this)->maBufferDevice.EnableMapMode(false); in ImpRestoreBackground()
149 maBufferDevice); in ImpRestoreBackground()
182 ((OverlayManagerBuffered*)this)->maBufferDevice.EnableMapMode(bMapModeWasEnabledSource); in ImpRestoreBackground()
210 const Rectangle aBufferDeviceRectanglePixel(Point(), maBufferDevice.GetOutputSizePixel()); in ImpSaveBackground()
215 const bool bMapModeWasEnabledSource(maBufferDevice.IsMapModeEnabled()); in ImpSaveBackground()
217 maBufferDevice.EnableMapMode(false); in ImpSaveBackground()
229 maBufferDevice.DrawOutDev( in ImpSaveBackground()
253 const Bitmap aBitmap(maBufferDevice.GetBitmap(aTopLeft, aSize)); in ImpSaveBackground()
301 maBufferDevice.EnableMapMode(bMapModeWasEnabledSource); in ImpSaveBackground()
337 const Size aDestinationSizePixel(maBufferDevice.GetOutputSizePixel());
347 maOutputBufferDevice.SetDrawMode(maBufferDevice.GetDrawMode());
348 maOutputBufferDevice.SetSettings(maBufferDevice.GetSettings());
349 maOutputBufferDevice.SetAntialiasing(maBufferDevice.GetAntialiasing());
384 const bool bMapModeWasEnabledDest(maBufferDevice.IsMapModeEnabled());
385 maBufferDevice.EnableMapMode(false);
390 maBufferDevice);
393 maBufferDevice.EnableMapMode(bMapModeWasEnabledDest);
532 maBufferDevice.CopyArea(rDestPt, rSrcPt, rSrcSize); in copyArea()