diff options
author | Jan-Marek Glogowski <glogow@fbihome.de> | 2018-10-23 14:01:24 +0200 |
---|---|---|
committer | Jan-Marek Glogowski <glogow@fbihome.de> | 2018-10-24 14:42:26 +0200 |
commit | 6217cfd414ee86b160313c0a71b7d62e1eb3db14 (patch) | |
tree | 1471e49de2c68a0cc4d0f42bfb37dc8bffb883bf /vcl/inc/salgdi.hxx | |
parent | a27d9845935149005342c74736a961068e6bf242 (diff) |
Introduce OutputDevice type OUTDEV_PDF
Originally I thought mpPDFWriter can be used to create PDF from
any OutputDevice, but it's actually just set for the internal
VirtualDevice of the PDF writer.
So this gets rid of all the special mpPDFWriter and GetPDFWriter()
handling and replaces it with checks for OUTDEV_PDF. But since
ImplPDFWriter used to be a OUTDEV_VIRDEV, this also introduces
OutputDevice::IsVirtual(), which now replaces most of the direct
OUTDEV_VIRDEV checks.
Change-Id: I11824143b6b8833ecc81119762448cbdf1145dbc
Reviewed-on: https://gerrit.libreoffice.org/62257
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de>
Diffstat (limited to 'vcl/inc/salgdi.hxx')
-rw-r--r-- | vcl/inc/salgdi.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vcl/inc/salgdi.hxx b/vcl/inc/salgdi.hxx index 19fac921d2fb..eb96cfa22a13 100644 --- a/vcl/inc/salgdi.hxx +++ b/vcl/inc/salgdi.hxx @@ -665,6 +665,7 @@ protected: /// flags which hold the SetAntialiasing() value from OutputDevice bool m_bAntiAliasB2DDraw : 1; + inline long GetDeviceWidth(const OutputDevice* pOutDev) const; }; #endif // INCLUDED_VCL_INC_SALGDI_HXX |