Home
last modified time | relevance | path

Searched refs:mrOutputDevice (Results 1 – 2 of 2) sorted by relevance

/trunk/main/svx/source/svdraw/
H A Dsdrpaintwindow.cxx34 : mrOutputDevice(rOriginal) in SdrPreRenderDevice()
45 if(maPreRenderDevice.GetOutputSizePixel() != mrOutputDevice.GetOutputSizePixel()) in PreparePreRenderDevice()
47 maPreRenderDevice.SetOutputSizePixel(mrOutputDevice.GetOutputSizePixel()); in PreparePreRenderDevice()
51 if(maPreRenderDevice.GetMapMode() != mrOutputDevice.GetMapMode()) in PreparePreRenderDevice()
53 maPreRenderDevice.SetMapMode(mrOutputDevice.GetMapMode()); in PreparePreRenderDevice()
57 maPreRenderDevice.SetDrawMode(mrOutputDevice.GetDrawMode()); in PreparePreRenderDevice()
58 maPreRenderDevice.SetSettings(mrOutputDevice.GetSettings()); in PreparePreRenderDevice()
64 const Region aRegionPixel(mrOutputDevice.LogicToPixel(rExpandedRegion)); in OutputPreRenderDevice()
69 sal_Bool bMapModeWasEnabledDest(mrOutputDevice.IsMapModeEnabled()); in OutputPreRenderDevice()
71 mrOutputDevice.EnableMapMode(sal_False); in OutputPreRenderDevice()
[all …]
/trunk/main/svx/inc/svx/
H A Dsdrpaintwindow.hxx46 OutputDevice& mrOutputDevice; member in SdrPreRenderDevice
58 OutputDevice& GetOriginalOutputDevice() const { return mrOutputDevice; } in GetOriginalOutputDevice()
68 OutputDevice& mrOutputDevice; member in SdrPaintWindow
102 OutputDevice& GetOutputDevice() const { return mrOutputDevice; } in GetOutputDevice()
114 sal_Bool OutputToPrinter() const { return (OUTDEV_PRINTER == mrOutputDevice.GetOutDevType()); } in OutputToPrinter()
117 sal_Bool OutputToWindow() const { return (OUTDEV_WINDOW == mrOutputDevice.GetOutDevType()); } in OutputToWindow()
120 …sal_Bool OutputToVirtualDevice() const { return (OUTDEV_VIRDEV == mrOutputDevice.GetOutDevType());… in OutputToVirtualDevice()
140 …if(mpPreRenderDevice) return mpPreRenderDevice->GetPreRenderDevice(); else return mrOutputDevice; } in GetTargetOutputDevice()