📄 qpaintengine_raster_p.h
字号:
/******************************************************************************** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved.**** This file is part of the QtGui module of the Qt Toolkit.**** This file may be used under the terms of the GNU General Public** License version 2.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 GNU** General Public Licensing requirements will be met:** http://www.trolltech.com/products/qt/opensource.html**** If you are unsure which license is appropriate for your use, please** review the following information:** http://www.trolltech.com/products/qt/licensing.html or contact the** sales department at sales@trolltech.com.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#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 "QtGui/qpaintengine.h"#include "QtGui/qpainterpath.h"#include "private/qdatabuffer_p.h"#include "private/qdrawhelper_p.h"#include "private/qpaintengine_p.h"#include "private/qstroker_p.h"#include <stdlib.h>class QFTOutlineMapper;class QRasterPaintEnginePrivate;class QRasterBuffer;class QClipData;/******************************************************************************* * QRasterPaintEngine */class QRasterPaintEngine : public QPaintEngine{ Q_DECLARE_PRIVATE(QRasterPaintEngine)public: QRasterPaintEngine(); ~QRasterPaintEngine(); bool begin(QPaintDevice *device); bool end(); void updateState(const QPaintEngineState &state); void updateMatrix(const QMatrix &matrix); void updateClipRegion(const QRegion ®ion, Qt::ClipOperation op); void updateClipPath(const QPainterPath &path, Qt::ClipOperation op); void drawPath(const QPainterPath &path); 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 drawEllipse(const QRectF &rect); void drawRects(const QRect *rects, int rectCount); void drawRects(const QRectF *rects, int rectCount); void drawPixmap(const QRectF &r, const QPixmap &pm, const QRectF &sr); void drawImage(const QRectF &r, const QImage &pm, const QRectF &sr, Qt::ImageConversionFlags falgs = 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);#ifdef Q_NO_USING_KEYWORD inline void drawPoints(const QPoint *points, int pointCount) { QPaintEngine::drawPoints(points, pointCount); } inline void drawEllipse(const QRect &rect) { QPaintEngine::drawEllipse(rect); }#else using QPaintEngine::drawPolygon; using QPaintEngine::drawPoints; using QPaintEngine::drawEllipse;#endif void setFlushOnEnd(bool flush); void flush(QPaintDevice *device, const QPoint &offset); void releaseBuffer(); QSize size() const;#ifndef QT_NO_DEBUG void saveBuffer(const QString &s) const;#endif#ifdef Q_WS_WIN HDC getDC() const; void releaseDC(HDC hdc) const;#endif#ifdef Q_WS_QWS //QWS hack void alphaPenBlt(const void* src, int bpl, bool mono, int rx,int ry,int w,int h); void qwsFillRect(int x, int y, int w, int h);#endif Type type() const { return Raster; } QPoint coordinateOffset() const;protected: QRasterPaintEngine(QRasterPaintEnginePrivate &d);private: void init();#if defined(Q_WS_WIN) bool drawTextInFontBuffer(const QRect &devRect, int xmin, int ymin, int xmax, int ymax, const QTextItem &textItem, bool clearType, qreal leftBearingReserve);#endif};/******************************************************************************* * QRasterPaintEnginePrivate */class QRasterPaintEnginePrivate : public QPaintEnginePrivate{ Q_DECLARE_PUBLIC(QRasterPaintEngine)public: void updateClip_helper(const QPainterPath &path, Qt::ClipOperation); void drawBitmap(const QPointF &pos, const QPixmap &image, QSpanData *fill); void rasterize(QT_FT_Outline *outline, ProcessSpans callback, void *userData, QRasterBuffer *rasterBuffer); QMatrix brushMatrix() const { QMatrix m(matrix); m.translate(brushOffset.x(), brushOffset.y()); return m; } QPointF brushOffset; QBrush brush; QPen pen; QMatrix matrix; QPaintDevice *device; QFTOutlineMapper *outlineMapper; QRasterBuffer *rasterBuffer;#ifdef Q_WS_WIN QRasterBuffer *fontRasterBuffer; uint clear_type_text : 1;#endif QPainterPath baseClip; QRect deviceRect; QSpanData penData; QSpanData brushData; QStroker basicStroker; QDashStroker *dashStroker; QStrokerOps *stroker; QT_FT_Raster *blackRaster; QT_FT_Raster *grayRaster; unsigned long rasterPoolSize; unsigned char *rasterPoolBase; qreal inverseScale; QDataBuffer<QLineF> cachedLines; int deviceDepth; uint txop; uint fast_pen : 1; uint antialiased : 1; uint bilinear : 1; uint flushOnEnd : 1; uint mono_surface : 1; uint int_xform : 1; uint user_clip_enabled : 1;};class QClipData {public: QClipData(int height); ~QClipData(); int clipSpanHeight; struct ClipLine { int count; QSpan *spans; } *clipLines; int allocated; int count; QSpan *spans; int xmin, xmax, ymin, ymax; void appendSpan(int x, int length, int y, int coverage); void appendSpans(const QSpan *s, int num); void fixup();};inline void QClipData::appendSpan(int x, int length, int y, int coverage){ if (count == allocated) { allocated *= 2; spans = (QSpan *)realloc(spans, allocated*sizeof(QSpan)); } spans[count].x = x; spans[count].len = length; spans[count].y = y; spans[count].coverage = coverage; ++count;}inline void QClipData::appendSpans(const QSpan *s, int num){ if (count + num >= allocated) { while (allocated < count + num) allocated *= 2; spans = (QSpan *)realloc(spans, allocated*sizeof(QSpan)); } memcpy(spans+count, s, num*sizeof(QSpan)); count += num;}/******************************************************************************* * QRasterBuffer */class QRasterBuffer{public:#if defined(Q_WS_WIN) QRasterBuffer() : clip(0), m_hdc(0), m_bitmap(0), m_width(0), m_height(0), m_buffer(0) { init(); } HDC hdc() const { return m_hdc; }#elif defined(Q_WS_X11) QRasterBuffer() : clip(0), m_width(0), m_height(0), m_buffer(0) { init(); }#elif defined(Q_WS_QWS) QRasterBuffer() : clip(0), m_width(0), m_height(0), m_buffer(0) { init(); }#elif defined(Q_WS_MAC) QRasterBuffer() : m_data(0), clip(0), m_width(0), m_height(0), m_buffer(0) { init(); }# if defined(QMAC_NO_COREGRAPHICS) GWorldPtr m_data;# else CGImageRef m_data;#endif#endif ~QRasterBuffer(); void init(); void prepare(QImage *image);#ifdef Q_WS_QWS void prepare(QPixmap *pix);#endif void prepare(int w, int h); void prepareBuffer(int w, int h);#ifdef Q_WS_WIN void setupHDC(bool clear_type);#endif void resetBuffer(int val=0); uchar *scanLine(int y) { Q_ASSERT(y>=0); Q_ASSERT(y<m_height); return m_buffer + y * bytes_per_line; }#ifndef QT_NO_DEBUG QImage clipImage() const; QImage bufferImage() const;#endif void flushToARGBImage(QImage *image) const; int width() const { return m_width; } int height() const { return m_height; } int bytesPerLine() const { return bytes_per_line; } uchar *buffer() const { return m_buffer; } QClipData *clip; QClipData *disabled_clip; bool clipEnabled; bool opaqueBackground; QPainter::CompositionMode compositionMode; QImage::Format format; DrawHelper *drawHelper; QImage tempImage; QBrush bgBrush; QImage colorizeBitmap(const QImage &image, const QColor &color); void resetClip() { delete clip; clip = 0; }private:#if defined(Q_WS_WIN) HDC m_hdc; HBITMAP m_bitmap;#endif int m_width; int m_height; int bytes_per_line; uchar *m_buffer;};#endif // QPAINTENGINE_RASTER_P_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -