diff options
author | Jørgen Lind <jorgen.lind@nokia.com> | 2009-11-16 10:33:26 (GMT) |
---|---|---|
committer | Jørgen Lind <jorgen.lind@nokia.com> | 2009-11-25 09:55:59 (GMT) |
commit | 7dea84cd015538dc327e489113919d75c8e275bb (patch) | |
tree | 4255c5f05fb73ea17eb2a5fb2c078df190652256 /src/gui/painting/qgraphicssystem_p.h | |
parent | efa0d024fc262b89189c0589a0ee81fe083635b1 (diff) | |
download | Qt-7dea84cd015538dc327e489113919d75c8e275bb.zip Qt-7dea84cd015538dc327e489113919d75c8e275bb.tar.gz Qt-7dea84cd015538dc327e489113919d75c8e275bb.tar.bz2 |
Added QBlittablePixmapData
Is going to be used by everyone that reimplements QBlittable
Diffstat (limited to 'src/gui/painting/qgraphicssystem_p.h')
-rw-r--r-- | src/gui/painting/qgraphicssystem_p.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/painting/qgraphicssystem_p.h b/src/gui/painting/qgraphicssystem_p.h index 0b0dfb5..275afc0 100644 --- a/src/gui/painting/qgraphicssystem_p.h +++ b/src/gui/painting/qgraphicssystem_p.h @@ -55,6 +55,7 @@ #include "private/qpixmapdata_p.h" #include "private/qwindowsurface_p.h" +#include "private/qpaintengine_blitter_p.h" #include <qdebug.h> @@ -85,6 +86,7 @@ class Q_GUI_EXPORT QGraphicsSystem public: virtual QPixmapData *createPixmapData(QPixmapData::PixelType type) const = 0; virtual QWindowSurface *createWindowSurface(QWidget *widget) const = 0; + virtual QBlittable *createBlittable(const QRect &rect) { return 0; } virtual ~QGraphicsSystem() = 0; |