summaryrefslogtreecommitdiffstats
path: root/src/printsupport/kernel/qprintdevice_p.h
diff options
context:
space:
mode:
authorAlbert Astals Cid <albert.astals.cid@kdab.com>2017-12-04 13:23:49 +0100
committerAlbert Astals Cid <albert.astals.cid@kdab.com>2017-12-13 08:17:44 +0000
commit70f6a35c8f0b6a73f4d568532e1365cd3e8ff8dd (patch)
tree225b00919565a260eb674bb49615c4f5489abca7 /src/printsupport/kernel/qprintdevice_p.h
parente5312f9ca5d38230e397d05190e623b083724bf5 (diff)
Introduce QPrintDevice::property/setProperty
So we can access QPlatformPrintDevice internals if needed Change-Id: Ib37c5717713f37262ef12d7b61793d80f05baf4a Reviewed-by: Liang Qi <liang.qi@qt.io>
Diffstat (limited to 'src/printsupport/kernel/qprintdevice_p.h')
-rw-r--r--src/printsupport/kernel/qprintdevice_p.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/printsupport/kernel/qprintdevice_p.h b/src/printsupport/kernel/qprintdevice_p.h
index 1e0d3983e9..1a26d3afcf 100644
--- a/src/printsupport/kernel/qprintdevice_p.h
+++ b/src/printsupport/kernel/qprintdevice_p.h
@@ -131,6 +131,13 @@ public:
QPrint::ColorMode defaultColorMode() const;
QList<QPrint::ColorMode> supportedColorModes() const;
+ enum PrintDevicePropertyKey {
+ PDPK_CustomBase = 0xff00
+ };
+
+ QVariant property(PrintDevicePropertyKey key) const;
+ bool setProperty(PrintDevicePropertyKey key, const QVariant &value);
+
#ifndef QT_NO_MIMETYPE
QList<QMimeType> supportedMimeTypes() const;
#endif