Home
last modified time | relevance | path

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

/AOO41X/main/svx/source/svdraw/
H A Dsdrpaintwindow.cxx35 : mrOutputDevice(rOriginal) in SdrPreRenderDevice()
46 if(maPreRenderDevice.GetOutputSizePixel() != mrOutputDevice.GetOutputSizePixel()) in PreparePreRenderDevice()
48 maPreRenderDevice.SetOutputSizePixel(mrOutputDevice.GetOutputSizePixel()); in PreparePreRenderDevice()
52 if(maPreRenderDevice.GetMapMode() != mrOutputDevice.GetMapMode()) in PreparePreRenderDevice()
54 maPreRenderDevice.SetMapMode(mrOutputDevice.GetMapMode()); in PreparePreRenderDevice()
58 maPreRenderDevice.SetDrawMode(mrOutputDevice.GetDrawMode()); in PreparePreRenderDevice()
59 maPreRenderDevice.SetSettings(mrOutputDevice.GetSettings()); in PreparePreRenderDevice()
65 const Region aRegionPixel(mrOutputDevice.LogicToPixel(rExpandedRegion)); in OutputPreRenderDevice()
70 sal_Bool bMapModeWasEnabledDest(mrOutputDevice.IsMapModeEnabled()); in OutputPreRenderDevice()
72 mrOutputDevice.EnableMapMode(sal_False); in OutputPreRenderDevice()
[all …]
/AOO41X/main/svx/inc/svx/
H A Dsdrpaintwindow.hxx49 OutputDevice& mrOutputDevice; member in SdrPreRenderDevice
61 OutputDevice& GetOriginalOutputDevice() const { return mrOutputDevice; } in GetOriginalOutputDevice()
71 OutputDevice& mrOutputDevice; member in SdrPaintWindow
105 OutputDevice& GetOutputDevice() const { return mrOutputDevice; } in GetOutputDevice()
117 sal_Bool OutputToPrinter() const { return (OUTDEV_PRINTER == mrOutputDevice.GetOutDevType()); } in OutputToPrinter()
120 sal_Bool OutputToWindow() const { return (OUTDEV_WINDOW == mrOutputDevice.GetOutDevType()); } in OutputToWindow()
123 …sal_Bool OutputToVirtualDevice() const { return (OUTDEV_VIRDEV == mrOutputDevice.GetOutDevType());… in OutputToVirtualDevice()
143 …if(mpPreRenderDevice) return mpPreRenderDevice->GetPreRenderDevice(); else return mrOutputDevice; } in GetTargetOutputDevice()