Lines Matching refs:maBufferDevice
43 if(maBufferDevice.GetOutputSizePixel() != getOutputDevice().GetOutputSizePixel()) in ImpPrepareBufferDevice()
47 maBufferDevice.SetOutputSizePixel(getOutputDevice().GetOutputSizePixel(), false); in ImpPrepareBufferDevice()
51 if(maBufferDevice.GetMapMode() != getOutputDevice().GetMapMode()) in ImpPrepareBufferDevice()
54 … maBufferDevice.GetMapMode().GetScaleX() != getOutputDevice().GetMapMode().GetScaleX() in ImpPrepareBufferDevice()
55 … || maBufferDevice.GetMapMode().GetScaleY() != getOutputDevice().GetMapMode().GetScaleY()); in ImpPrepareBufferDevice()
59 const Point& rOriginOld = maBufferDevice.GetMapMode().GetOrigin(); in ImpPrepareBufferDevice()
66 const Point aOriginOldPixel(maBufferDevice.LogicToPixel(rOriginOld)); in ImpPrepareBufferDevice()
67 const Point aOriginNewPixel(maBufferDevice.LogicToPixel(rOriginNew)); in ImpPrepareBufferDevice()
68 const Size aOutputSizePixel(maBufferDevice.GetOutputSizePixel()); in ImpPrepareBufferDevice()
71 const bool bMapModeWasEnabled(maBufferDevice.IsMapModeEnabled()); in ImpPrepareBufferDevice()
72 maBufferDevice.EnableMapMode(false); in ImpPrepareBufferDevice()
76 maBufferDevice.DrawOutDev( in ImpPrepareBufferDevice()
81 maBufferDevice.EnableMapMode(bMapModeWasEnabled); in ImpPrepareBufferDevice()
95 maBufferDevice.SetMapMode(getOutputDevice().GetMapMode()); in ImpPrepareBufferDevice()
99 maBufferDevice.SetDrawMode(getOutputDevice().GetDrawMode()); in ImpPrepareBufferDevice()
100 maBufferDevice.SetSettings(getOutputDevice().GetSettings()); in ImpPrepareBufferDevice()
101 maBufferDevice.SetAntialiasing(getOutputDevice().GetAntialiasing()); in ImpPrepareBufferDevice()
118 const bool bMapModeWasEnabledSource(maBufferDevice.IsMapModeEnabled()); in ImpRestoreBackground()
120 ((OverlayManagerBuffered*)this)->maBufferDevice.EnableMapMode(false); in ImpRestoreBackground()
147 maBufferDevice); in ImpRestoreBackground()
180 ((OverlayManagerBuffered*)this)->maBufferDevice.EnableMapMode(bMapModeWasEnabledSource); in ImpRestoreBackground()
208 … const Rectangle aBufferDeviceRectanglePixel(Point(), maBufferDevice.GetOutputSizePixel()); in ImpSaveBackground()
213 const bool bMapModeWasEnabledSource(maBufferDevice.IsMapModeEnabled()); in ImpSaveBackground()
215 maBufferDevice.EnableMapMode(false); in ImpSaveBackground()
227 maBufferDevice.DrawOutDev( in ImpSaveBackground()
251 const Bitmap aBitmap(maBufferDevice.GetBitmap(aTopLeft, aSize)); in ImpSaveBackground()
299 maBufferDevice.EnableMapMode(bMapModeWasEnabledSource); in ImpSaveBackground()
335 const Size aDestinationSizePixel(maBufferDevice.GetOutputSizePixel());
345 maOutputBufferDevice.SetDrawMode(maBufferDevice.GetDrawMode());
346 maOutputBufferDevice.SetSettings(maBufferDevice.GetSettings());
347 maOutputBufferDevice.SetAntialiasing(maBufferDevice.GetAntialiasing());
382 const bool bMapModeWasEnabledDest(maBufferDevice.IsMapModeEnabled());
383 maBufferDevice.EnableMapMode(false);
388 maBufferDevice);
391 maBufferDevice.EnableMapMode(bMapModeWasEnabledDest);
530 maBufferDevice.CopyArea(rDestPt, rSrcPt, rSrcSize); in copyArea()