/**************************************************************************** ** ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtGui module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef QPAINTENGINE_RASTER_P_H #define QPAINTENGINE_RASTER_P_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists for the convenience // of other Qt classes. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include "private/qpaintengineex_p.h" #include "QtGui/qpainterpath.h" #include "private/qdatabuffer_p.h" #include "private/qdrawhelper_p.h" #include "private/qpaintengine_p.h" #include "private/qrasterizer_p.h" #include "private/qstroker_p.h" #include "private/qpainter_p.h" #include "private/qtextureglyphcache_p.h" #include "private/qoutlinemapper_p.h" #include QT_BEGIN_NAMESPACE class QOutlineMapper; class QRasterPaintEnginePrivate; class QRasterBuffer; class QClipData; class QRasterPaintEngineState : public QPainterState { public: QRasterPaintEngineState(QRasterPaintEngineState &other); QRasterPaintEngineState(); ~QRasterPaintEngineState(); QPen lastPen; QSpanData penData; QStrokerOps *stroker; uint strokeFlags; QBrush lastBrush; QSpanData brushData; uint fillFlags; uint pixmapFlags; int intOpacity; qreal txscale; QClipData *clip; // QRect clipRect; // QRegion clipRegion; // QPainter::RenderHints hints; // QPainter::CompositionMode compositionMode; uint dirty; struct Flags { uint has_clip_ownership : 1; // should delete the clip member.. uint fast_pen : 1; // cosmetic 1-width pens, using midpoint drawlines uint non_complex_pen : 1; // can use rasterizer, rather than stroker uint antialiased : 1; uint bilinear : 1; uint legacy_rounding : 1; uint fast_text : 1; uint int_xform : 1; uint tx_noshear : 1; uint fast_images : 1; }; union { Flags flags; uint flag_bits; }; }; /******************************************************************************* * QRasterPaintEngine */ class Q_GUI_EXPORT QRasterPaintEngine : public QPaintEngineEx { Q_DECLARE_PRIVATE(QRasterPaintEngine) public: QRasterPaintEngine(QPaintDevice *device); ~QRasterPaintEngine(); bool begin(QPaintDevice *device); bool end(); void penChanged(); void brushChanged(); void brushOriginChanged(); void opacityChanged(); void compositionModeChanged(); void renderHintsChanged(); void transformChanged(); void clipEnabledChanged(); void setState(QPainterState *s); QPainterState *createState(QPainterState *orig) const; inline QRasterPaintEngineState *state() { return static_cast(QPaintEngineEx::state()); } inline const QRasterPaintEngineState *state() const { return static_cast(QPaintEngineEx::state()); } void updateBrush(const QBrush &brush); void updatePen(const QPen &pen); void updateMatrix(const QTransform &matrix); void drawPolygon(const QPointF *points, int pointCount, PolygonDrawMode mode); void drawPolygon(const QPoint *points, int pointCount, PolygonDrawMode mode); void fillPath(const QPainterPath &path, QSpanData *fillData); void fillPolygon(const QPointF *points, int pointCount, PolygonDrawMode mode); void drawEllipse(const QRectF &rect); void fillRect(const QRectF &rect, const QBrush &brush); void fillRect(const QRectF &rect, const QColor &color); void drawRects(const QRect *rects, int rectCount); void drawRects(const QRectF *rects, int rectCount); void drawPixmap(const QPointF &p, const QPixmap &pm); void drawPixmap(const QRectF &r, const QPixmap &pm, const QRectF &sr); void drawImage(const QPointF &p, const QImage &img); void drawImage(const QRectF &r, const QImage &pm, const QRectF &sr, Qt::ImageConversionFlags flags = Qt::AutoColor); void drawTiledPixmap(const QRectF &r, const QPixmap &pm, const QPointF &sr); void drawTextItem(const QPointF &p, const QTextItem &textItem); void drawLines(const QLine *line, int lineCount); void drawLines(const QLineF *line, int lineCount); void drawPoints(const QPointF *points, int pointCount); void drawPoints(const QPoint *points, int pointCount); void stroke(const QVectorPath &path, const QPen &pen); void fill(const QVectorPath &path, const QBrush &brush); void clip(const QVectorPath &path, Qt::ClipOperation op); void clip(const QRect &rect, Qt::ClipOperation op); void clip(const QRegion ®ion, Qt::ClipOperation op); inline const QClipData *clipData() const; void drawStaticTextItem(QStaticTextItem *textItem); virtual bool drawCachedGlyphs(int numGlyphs, const glyph_t *glyphs, const QFixedPoint *positions, QFontEngine *fontEngine); enum ClipType { RectClip, ComplexClip }; ClipType clipType() const; QRect clipBoundingRect() const; void releaseBuffer(); QSize size() const; #ifndef QT_NO_DEBUG void saveBuffer(const QString &s) const; #endif #ifdef Q_OS_WIN void setDC(HDC hdc); HDC getDC() const; void releaseDC(HDC hdc) const; static bool clearTypeFontsEnabled(); #endif QRasterBuffer *rasterBuffer(); void alphaPenBlt(const void* src, int bpl, int depth, int rx,int ry,int w,int h); Type type() const { return Raster; } QPoint coordinateOffset() const; bool supportsTransformations(QFontEngine *fontEngine) const; bool supportsTransformations(QFontEngine *fontEngine, const QTransform &m) const; protected: QRasterPaintEngine(QRasterPaintEnginePrivate &d, QPaintDevice *); private: friend struct QSpanData; friend class QBlitterPaintEngine; friend class QBlitterPaintEnginePrivate; void init(); void fillRect(const QRectF &rect, QSpanData *data); void drawBitmap(const QPointF &pos, const QImage &image, QSpanData *fill); bool setClipRectInDeviceCoords(const QRect &r, Qt::ClipOperation op); QRect toNormalizedFillRect(const QRectF &rect); inline void ensureBrush(const QBrush &brush) { if (!qbrush_fast_equals(state()->lastBrush, brush) || (brush.style() != Qt::NoBrush && state()->fillFlags)) updateBrush(brush); } inline void ensureBrush() { ensureBrush(state()->brush); } inline void ensurePen(const QPen &pen) { if (!qpen_fast_equals(state()->lastPen, pen) || (pen.style() != Qt::NoPen && state()->strokeFlags)) updatePen(pen); } inline void ensurePen() { ensurePen(state()->pen); } void updateOutlineMapper(); inline void ensureOutlineMapper(); void updateRasterState(); inline void ensureRasterState() { if (state()->dirty) updateRasterState(); } }; /******************************************************************************* * QRasterPaintEnginePrivate */ class QRasterPaintEnginePrivate : public QPaintEngineExPrivate { Q_DECLARE_PUBLIC(QRasterPaintEngine) public: QRasterPaintEnginePrivate(); void rasterizeLine_dashed(QLineF line, qreal width, int *dashIndex, qreal *dashOffset, bool *inDash); void rasterize(QT_FT_Outline *outline, ProcessSpans callback, QSpanData *spanData, QRasterBuffer *rasterBuffer); void rasterize(QT_FT_Outline *outline, ProcessSpans callback, void *userData, QRasterBuffer *rasterBuffer); void updateMatrixData(QSpanData *spanData, const QBrush &brush, const QTransform &brushMatrix); void systemStateChanged(); void drawImage(const QPointF &pt, const QImage &img, SrcOverBlendFunc func, const QRect &clip, int alpha, const QRect &sr = QRect()); QTransform brushMatrix() const { Q_Q(const QRasterPaintEngine); const QRasterPaintEngineState *s = q->state(); QTransform m(s->matrix); m.translate(s->brushOrigin.x(), s->brushOrigin.y()); return m; } bool isUnclipped_normalized(const QRect &rect) const; bool isUnclipped(const QRect &rect, int penWidth) const; bool isUnclipped(const QRectF &rect, int penWidth) const; ProcessSpans getPenFunc(const QRectF &rect, const QSpanData *data) const; ProcessSpans getBrushFunc(const QRect &rect, const QSpanData *data) const; ProcessSpans getBrushFunc(const QRectF &rect, const QSpanData *data) const; inline const QClipData *clip() const; void initializeRasterizer(QSpanData *data); void recalculateFastImages(); bool canUseFastImageBlending(QPainter::CompositionMode mode, const QImage &image) const; QPaintDevice *device; QScopedPointer outlineMapper; QScopedPointer rasterBuffer; #if defined (Q_OS_WIN) HDC hdc; #endif QRect deviceRect; QStroker basicStroker; QScopedPointer dashStroker; QScopedPointer grayRaster; QDataBuffer cachedLines; QSpanData image_filler; QSpanData image_filler_xform; QSpanData solid_color_filler; QFontEngineGlyphCache::Type glyphCacheType; QScopedPointer baseClip; int deviceDepth; uint mono_surface : 1; uint outlinemapper_xform_dirty : 1; QScopedPointer rasterizer; }; class QClipData { public: QClipData(int height); ~QClipData(); int clipSpanHeight; struct ClipLine { int count; QSpan *spans; } *m_clipLines; void initialize(); inline ClipLine *clipLines() { if (!m_clipLines) initialize(); return m_clipLines; } inline QSpan *spans() { if (!m_spans) initialize(); return m_spans; } int allocated; int count; QSpan *m_spans; int xmin, xmax, ymin, ymax; QRect clipRect; QRegion clipRegion; uint enabled : 1; uint hasRectClip : 1; uint hasRegionClip : 1; void appendSpan(int x, int length, int y, int coverage); void appendSpans(const QSpan *s, int num); // ### Should optimize and actually kill the QSpans if the rect is // ### a subset of The current region. Thus the "fast" clipspan // ### callback can be used void setClipRect(const QRect &rect); void setClipRegion(const QRegion ®ion); void fixup(); }; inline void QClipData::appendSpan(int x, int length, int y, int coverage) { Q_ASSERT(m_spans); // initialize() has to be called prior to adding spans.. if (count == allocated) { allocated *= 2; m_spans = (QSpan *)realloc(m_spans, allocated*sizeof(QSpan)); } m_spans[count].x = x; m_spans[count].len = length; m_spans[count].y = y; m_spans[count].coverage = coverage; ++count; } inline void QClipData::appendSpans(const QSpan *s, int num) { Q_ASSERT(m_spans); if (count + num > allocated) { do { allocated *= 2; } while (count + num > allocated); m_spans = (QSpan *)realloc(m_spans, allocated*sizeof(QSpan)); } memcpy(m_spans+count, s, num*sizeof(QSpan)); count += num; } /******************************************************************************* * QRasterBuffer */ class QRasterBuffer { public: QRasterBuffer() : m_width(0), m_height(0), m_buffer(0) { init(); } ~QRasterBuffer(); void init(); QImage::Format prepare(QImage *image); QImage::Format prepare(QPixmap *pix); void prepare(int w, int h); void prepareBuffer(int w, int h); void resetBuffer(int val=0); uchar *scanLine(int y) { Q_ASSERT(y>=0); Q_ASSERT(youtlinemapper_xform_dirty) updateOutlineMapper(); } inline const QClipData *QRasterPaintEnginePrivate::clip() const { Q_Q(const QRasterPaintEngine); if (q->state() && q->state()->clip && q->state()->clip->enabled) return q->state()->clip; return baseClip.data(); } inline const QClipData *QRasterPaintEngine::clipData() const { Q_D(const QRasterPaintEngine); if (state() && state()->clip && state()->clip->enabled) return state()->clip; return d->baseClip.data(); } QT_END_NAMESPACE #endif // QPAINTENGINE_RASTER_P_H