qpaintengine.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the QtGui module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. #ifndef QPAINTENGINE_H
  40. #define QPAINTENGINE_H
  41. #include <QtCore/qnamespace.h>
  42. #include <QtCore/qobjectdefs.h>
  43. #include <QtCore/qscopedpointer.h>
  44. #include <QtGui/qpainter.h>
  45. QT_BEGIN_NAMESPACE
  46. class QFontEngine;
  47. class QLineF;
  48. class QPaintDevice;
  49. class QPaintEnginePrivate;
  50. class QPainterPath;
  51. class QPointF;
  52. class QPolygonF;
  53. class QRectF;
  54. struct QGlyphLayout;
  55. class QTextItemInt;
  56. class QPaintEngineState;
  57. class Q_GUI_EXPORT QTextItem {
  58. public:
  59. enum RenderFlag {
  60. RightToLeft = 0x1,
  61. Overline = 0x10,
  62. Underline = 0x20,
  63. StrikeOut = 0x40,
  64. Dummy = 0xffffffff
  65. };
  66. Q_DECLARE_FLAGS(RenderFlags, RenderFlag)
  67. qreal descent() const;
  68. qreal ascent() const;
  69. qreal width() const;
  70. RenderFlags renderFlags() const;
  71. QString text() const;
  72. QFont font() const;
  73. };
  74. Q_DECLARE_TYPEINFO(QTextItem, Q_PRIMITIVE_TYPE);
  75. class Q_GUI_EXPORT QPaintEngine
  76. {
  77. Q_DECLARE_PRIVATE(QPaintEngine)
  78. public:
  79. enum PaintEngineFeature {
  80. PrimitiveTransform = 0x00000001, // Can transform primitives brushes
  81. PatternTransform = 0x00000002, // Can transform pattern brushes
  82. PixmapTransform = 0x00000004, // Can transform pixmaps
  83. PatternBrush = 0x00000008, // Can fill with pixmaps and standard patterns
  84. LinearGradientFill = 0x00000010, // Can fill gradient areas
  85. RadialGradientFill = 0x00000020, // Can render radial gradients
  86. ConicalGradientFill = 0x00000040, // Can render conical gradients
  87. AlphaBlend = 0x00000080, // Can do source over alpha blend
  88. PorterDuff = 0x00000100, // Can do general porter duff compositions
  89. PainterPaths = 0x00000200, // Can fill, outline and clip paths
  90. Antialiasing = 0x00000400, // Can antialias lines
  91. BrushStroke = 0x00000800, // Can render brush based pens
  92. ConstantOpacity = 0x00001000, // Can render at constant opacity
  93. MaskedBrush = 0x00002000, // Can fill with textures that has an alpha channel or mask
  94. PerspectiveTransform = 0x00004000, // Can do perspective transformations
  95. BlendModes = 0x00008000, // Can do extended Porter&Duff composition
  96. ObjectBoundingModeGradients = 0x00010000, // Can do object bounding mode gradients
  97. RasterOpModes = 0x00020000, // Can do logical raster operations
  98. PaintOutsidePaintEvent = 0x20000000, // Engine is capable of painting outside paint events
  99. /* 0x10000000, // Used for emulating
  100. QGradient::StretchToDevice,
  101. defined in qpainter.cpp
  102. 0x40000000, // Used internally for emulating opaque backgrounds
  103. */
  104. AllFeatures = 0xffffffff // For convenience
  105. };
  106. Q_DECLARE_FLAGS(PaintEngineFeatures, PaintEngineFeature)
  107. enum DirtyFlag {
  108. DirtyPen = 0x0001,
  109. DirtyBrush = 0x0002,
  110. DirtyBrushOrigin = 0x0004,
  111. DirtyFont = 0x0008,
  112. DirtyBackground = 0x0010,
  113. DirtyBackgroundMode = 0x0020,
  114. DirtyTransform = 0x0040,
  115. DirtyClipRegion = 0x0080,
  116. DirtyClipPath = 0x0100,
  117. DirtyHints = 0x0200,
  118. DirtyCompositionMode = 0x0400,
  119. DirtyClipEnabled = 0x0800,
  120. DirtyOpacity = 0x1000,
  121. AllDirty = 0xffff
  122. };
  123. Q_DECLARE_FLAGS(DirtyFlags, DirtyFlag)
  124. enum PolygonDrawMode {
  125. OddEvenMode,
  126. WindingMode,
  127. ConvexMode,
  128. PolylineMode
  129. };
  130. explicit QPaintEngine(PaintEngineFeatures features=PaintEngineFeatures());
  131. virtual ~QPaintEngine();
  132. bool isActive() const { return active; }
  133. void setActive(bool newState) { active = newState; }
  134. virtual bool begin(QPaintDevice *pdev) = 0;
  135. virtual bool end() = 0;
  136. virtual void updateState(const QPaintEngineState &state) = 0;
  137. virtual void drawRects(const QRect *rects, int rectCount);
  138. virtual void drawRects(const QRectF *rects, int rectCount);
  139. virtual void drawLines(const QLine *lines, int lineCount);
  140. virtual void drawLines(const QLineF *lines, int lineCount);
  141. virtual void drawEllipse(const QRectF &r);
  142. virtual void drawEllipse(const QRect &r);
  143. virtual void drawPath(const QPainterPath &path);
  144. virtual void drawPoints(const QPointF *points, int pointCount);
  145. virtual void drawPoints(const QPoint *points, int pointCount);
  146. virtual void drawPolygon(const QPointF *points, int pointCount, PolygonDrawMode mode);
  147. virtual void drawPolygon(const QPoint *points, int pointCount, PolygonDrawMode mode);
  148. virtual void drawPixmap(const QRectF &r, const QPixmap &pm, const QRectF &sr) = 0;
  149. virtual void drawTextItem(const QPointF &p, const QTextItem &textItem);
  150. virtual void drawTiledPixmap(const QRectF &r, const QPixmap &pixmap, const QPointF &s);
  151. virtual void drawImage(const QRectF &r, const QImage &pm, const QRectF &sr,
  152. Qt::ImageConversionFlags flags = Qt::AutoColor);
  153. void setPaintDevice(QPaintDevice *device);
  154. QPaintDevice *paintDevice() const;
  155. void setSystemClip(const QRegion &baseClip);
  156. QRegion systemClip() const;
  157. void setSystemRect(const QRect &rect);
  158. QRect systemRect() const;
  159. virtual QPoint coordinateOffset() const;
  160. enum Type {
  161. X11,
  162. Windows,
  163. QuickDraw, CoreGraphics, MacPrinter,
  164. QWindowSystem,
  165. PostScript, // ### Qt 6: Remove, update documentation
  166. OpenGL,
  167. Picture,
  168. SVG,
  169. Raster,
  170. Direct3D,
  171. Pdf,
  172. OpenVG,
  173. OpenGL2,
  174. PaintBuffer,
  175. Blitter,
  176. Direct2D,
  177. User = 50, // first user type id
  178. MaxUser = 100 // last user type id
  179. };
  180. virtual Type type() const = 0;
  181. inline void fix_neg_rect(int *x, int *y, int *w, int *h);
  182. inline bool testDirty(DirtyFlags df);
  183. inline void setDirty(DirtyFlags df);
  184. inline void clearDirty(DirtyFlags df);
  185. bool hasFeature(PaintEngineFeatures feature) const { return gccaps & feature; }
  186. QPainter *painter() const;
  187. void syncState();
  188. inline bool isExtended() const { return extended; }
  189. protected:
  190. QPaintEngine(QPaintEnginePrivate &data, PaintEngineFeatures devcaps=PaintEngineFeatures());
  191. QPaintEngineState *state;
  192. PaintEngineFeatures gccaps;
  193. uint active : 1;
  194. uint selfDestruct : 1;
  195. uint extended : 1;
  196. QScopedPointer<QPaintEnginePrivate> d_ptr;
  197. private:
  198. void setAutoDestruct(bool autoDestr) { selfDestruct = autoDestr; }
  199. bool autoDestruct() const { return selfDestruct; }
  200. Q_DISABLE_COPY(QPaintEngine)
  201. friend class QPainterReplayer;
  202. friend class QFontEngineBox;
  203. friend class QFontEngineMac;
  204. friend class QFontEngineWin;
  205. friend class QMacPrintEngine;
  206. friend class QMacPrintEnginePrivate;
  207. friend class QFontEngineQPF2;
  208. friend class QPainter;
  209. friend class QPainterPrivate;
  210. friend class QWidget;
  211. friend class QWidgetPrivate;
  212. friend class QWin32PaintEngine;
  213. friend class QWin32PaintEnginePrivate;
  214. friend class QMacCGContext;
  215. friend class QPreviewPaintEngine;
  216. friend class QX11GLPlatformPixmap;
  217. };
  218. class Q_GUI_EXPORT QPaintEngineState
  219. {
  220. public:
  221. QPaintEngine::DirtyFlags state() const { return dirtyFlags; }
  222. QPen pen() const;
  223. QBrush brush() const;
  224. QPointF brushOrigin() const;
  225. QBrush backgroundBrush() const;
  226. Qt::BGMode backgroundMode() const;
  227. QFont font() const;
  228. QMatrix matrix() const;
  229. QTransform transform() const;
  230. Qt::ClipOperation clipOperation() const;
  231. QRegion clipRegion() const;
  232. QPainterPath clipPath() const;
  233. bool isClipEnabled() const;
  234. QPainter::RenderHints renderHints() const;
  235. QPainter::CompositionMode compositionMode() const;
  236. qreal opacity() const;
  237. QPainter *painter() const;
  238. bool brushNeedsResolving() const;
  239. bool penNeedsResolving() const;
  240. protected:
  241. friend class QPaintEngine;
  242. friend class QRasterPaintEngine;
  243. friend class QWidget;
  244. friend class QPainter;
  245. friend class QPainterPrivate;
  246. friend class QMacPrintEnginePrivate;
  247. QPaintEngine::DirtyFlags dirtyFlags;
  248. };
  249. //
  250. // inline functions
  251. //
  252. inline void QPaintEngine::fix_neg_rect(int *x, int *y, int *w, int *h)
  253. {
  254. if (*w < 0) {
  255. *w = -*w;
  256. *x -= *w - 1;
  257. }
  258. if (*h < 0) {
  259. *h = -*h;
  260. *y -= *h - 1;
  261. }
  262. }
  263. inline bool QPaintEngine::testDirty(DirtyFlags df) {
  264. Q_ASSERT(state);
  265. return state->dirtyFlags & df;
  266. }
  267. inline void QPaintEngine::setDirty(DirtyFlags df) {
  268. Q_ASSERT(state);
  269. state->dirtyFlags |= df;
  270. }
  271. inline void QPaintEngine::clearDirty(DirtyFlags df)
  272. {
  273. Q_ASSERT(state);
  274. state->dirtyFlags &= ~static_cast<uint>(df);
  275. }
  276. Q_DECLARE_OPERATORS_FOR_FLAGS(QTextItem::RenderFlags)
  277. Q_DECLARE_OPERATORS_FOR_FLAGS(QPaintEngine::PaintEngineFeatures)
  278. Q_DECLARE_OPERATORS_FOR_FLAGS(QPaintEngine::DirtyFlags)
  279. QT_END_NAMESPACE
  280. #endif // QPAINTENGINE_H