qpainter.h 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932
  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 QPAINTER_H
  40. #define QPAINTER_H
  41. #include <QtCore/qnamespace.h>
  42. #include <QtCore/qrect.h>
  43. #include <QtCore/qpoint.h>
  44. #include <QtCore/qscopedpointer.h>
  45. #include <QtGui/qpixmap.h>
  46. #include <QtGui/qimage.h>
  47. #include <QtGui/qtextoption.h>
  48. #ifndef QT_INCLUDE_COMPAT
  49. #include <QtGui/qpolygon.h>
  50. #include <QtGui/qpen.h>
  51. #include <QtGui/qbrush.h>
  52. #include <QtGui/qmatrix.h>
  53. #include <QtGui/qtransform.h>
  54. #include <QtGui/qfontinfo.h>
  55. #include <QtGui/qfontmetrics.h>
  56. #endif
  57. QT_BEGIN_NAMESPACE
  58. class QBrush;
  59. class QFontInfo;
  60. class QFontMetrics;
  61. class QPaintDevice;
  62. class QPainterPath;
  63. class QPainterPrivate;
  64. class QPen;
  65. class QPolygon;
  66. class QTextItem;
  67. class QTextEngine;
  68. class QMatrix;
  69. class QTransform;
  70. class QStaticText;
  71. class QGlyphRun;
  72. class QPainterPrivateDeleter;
  73. class Q_GUI_EXPORT QPainter
  74. {
  75. Q_DECLARE_PRIVATE(QPainter)
  76. Q_GADGET
  77. Q_FLAGS(RenderHint RenderHints)
  78. public:
  79. enum RenderHint {
  80. Antialiasing = 0x01,
  81. TextAntialiasing = 0x02,
  82. SmoothPixmapTransform = 0x04,
  83. HighQualityAntialiasing = 0x08,
  84. NonCosmeticDefaultPen = 0x10,
  85. Qt4CompatiblePainting = 0x20
  86. };
  87. Q_DECLARE_FLAGS(RenderHints, RenderHint)
  88. class PixmapFragment {
  89. public:
  90. qreal x;
  91. qreal y;
  92. qreal sourceLeft;
  93. qreal sourceTop;
  94. qreal width;
  95. qreal height;
  96. qreal scaleX;
  97. qreal scaleY;
  98. qreal rotation;
  99. qreal opacity;
  100. static PixmapFragment Q_GUI_EXPORT create(const QPointF &pos, const QRectF &sourceRect,
  101. qreal scaleX = 1, qreal scaleY = 1,
  102. qreal rotation = 0, qreal opacity = 1);
  103. };
  104. enum PixmapFragmentHint {
  105. OpaqueHint = 0x01
  106. };
  107. Q_DECLARE_FLAGS(PixmapFragmentHints, PixmapFragmentHint)
  108. QPainter();
  109. explicit QPainter(QPaintDevice *);
  110. ~QPainter();
  111. QPaintDevice *device() const;
  112. bool begin(QPaintDevice *);
  113. bool end();
  114. bool isActive() const;
  115. void initFrom(const QPaintDevice *device);
  116. enum CompositionMode {
  117. CompositionMode_SourceOver,
  118. CompositionMode_DestinationOver,
  119. CompositionMode_Clear,
  120. CompositionMode_Source,
  121. CompositionMode_Destination,
  122. CompositionMode_SourceIn,
  123. CompositionMode_DestinationIn,
  124. CompositionMode_SourceOut,
  125. CompositionMode_DestinationOut,
  126. CompositionMode_SourceAtop,
  127. CompositionMode_DestinationAtop,
  128. CompositionMode_Xor,
  129. //svg 1.2 blend modes
  130. CompositionMode_Plus,
  131. CompositionMode_Multiply,
  132. CompositionMode_Screen,
  133. CompositionMode_Overlay,
  134. CompositionMode_Darken,
  135. CompositionMode_Lighten,
  136. CompositionMode_ColorDodge,
  137. CompositionMode_ColorBurn,
  138. CompositionMode_HardLight,
  139. CompositionMode_SoftLight,
  140. CompositionMode_Difference,
  141. CompositionMode_Exclusion,
  142. // ROPs
  143. RasterOp_SourceOrDestination,
  144. RasterOp_SourceAndDestination,
  145. RasterOp_SourceXorDestination,
  146. RasterOp_NotSourceAndNotDestination,
  147. RasterOp_NotSourceOrNotDestination,
  148. RasterOp_NotSourceXorDestination,
  149. RasterOp_NotSource,
  150. RasterOp_NotSourceAndDestination,
  151. RasterOp_SourceAndNotDestination,
  152. RasterOp_NotSourceOrDestination,
  153. RasterOp_SourceOrNotDestination,
  154. RasterOp_ClearDestination,
  155. RasterOp_SetDestination,
  156. RasterOp_NotDestination
  157. };
  158. void setCompositionMode(CompositionMode mode);
  159. CompositionMode compositionMode() const;
  160. const QFont &font() const;
  161. void setFont(const QFont &f);
  162. QFontMetrics fontMetrics() const;
  163. QFontInfo fontInfo() const;
  164. void setPen(const QColor &color);
  165. void setPen(const QPen &pen);
  166. void setPen(Qt::PenStyle style);
  167. const QPen &pen() const;
  168. void setBrush(const QBrush &brush);
  169. void setBrush(Qt::BrushStyle style);
  170. const QBrush &brush() const;
  171. // attributes/modes
  172. void setBackgroundMode(Qt::BGMode mode);
  173. Qt::BGMode backgroundMode() const;
  174. QPoint brushOrigin() const;
  175. inline void setBrushOrigin(int x, int y);
  176. inline void setBrushOrigin(const QPoint &);
  177. void setBrushOrigin(const QPointF &);
  178. void setBackground(const QBrush &bg);
  179. const QBrush &background() const;
  180. qreal opacity() const;
  181. void setOpacity(qreal opacity);
  182. // Clip functions
  183. QRegion clipRegion() const;
  184. QPainterPath clipPath() const;
  185. void setClipRect(const QRectF &, Qt::ClipOperation op = Qt::ReplaceClip);
  186. void setClipRect(const QRect &, Qt::ClipOperation op = Qt::ReplaceClip);
  187. inline void setClipRect(int x, int y, int w, int h, Qt::ClipOperation op = Qt::ReplaceClip);
  188. void setClipRegion(const QRegion &, Qt::ClipOperation op = Qt::ReplaceClip);
  189. void setClipPath(const QPainterPath &path, Qt::ClipOperation op = Qt::ReplaceClip);
  190. void setClipping(bool enable);
  191. bool hasClipping() const;
  192. QRectF clipBoundingRect() const;
  193. void save();
  194. void restore();
  195. // XForm functions
  196. void setMatrix(const QMatrix &matrix, bool combine = false);
  197. const QMatrix &matrix() const;
  198. const QMatrix &deviceMatrix() const;
  199. void resetMatrix();
  200. void setTransform(const QTransform &transform, bool combine = false);
  201. const QTransform &transform() const;
  202. const QTransform &deviceTransform() const;
  203. void resetTransform();
  204. void setWorldMatrix(const QMatrix &matrix, bool combine = false);
  205. const QMatrix &worldMatrix() const;
  206. void setWorldTransform(const QTransform &matrix, bool combine = false);
  207. const QTransform &worldTransform() const;
  208. QMatrix combinedMatrix() const;
  209. QTransform combinedTransform() const;
  210. void setMatrixEnabled(bool enabled);
  211. bool matrixEnabled() const;
  212. void setWorldMatrixEnabled(bool enabled);
  213. bool worldMatrixEnabled() const;
  214. void scale(qreal sx, qreal sy);
  215. void shear(qreal sh, qreal sv);
  216. void rotate(qreal a);
  217. void translate(const QPointF &offset);
  218. inline void translate(const QPoint &offset);
  219. inline void translate(qreal dx, qreal dy);
  220. QRect window() const;
  221. void setWindow(const QRect &window);
  222. inline void setWindow(int x, int y, int w, int h);
  223. QRect viewport() const;
  224. void setViewport(const QRect &viewport);
  225. inline void setViewport(int x, int y, int w, int h);
  226. void setViewTransformEnabled(bool enable);
  227. bool viewTransformEnabled() const;
  228. // drawing functions
  229. void strokePath(const QPainterPath &path, const QPen &pen);
  230. void fillPath(const QPainterPath &path, const QBrush &brush);
  231. void drawPath(const QPainterPath &path);
  232. inline void drawPoint(const QPointF &pt);
  233. inline void drawPoint(const QPoint &p);
  234. inline void drawPoint(int x, int y);
  235. void drawPoints(const QPointF *points, int pointCount);
  236. inline void drawPoints(const QPolygonF &points);
  237. void drawPoints(const QPoint *points, int pointCount);
  238. inline void drawPoints(const QPolygon &points);
  239. inline void drawLine(const QLineF &line);
  240. inline void drawLine(const QLine &line);
  241. inline void drawLine(int x1, int y1, int x2, int y2);
  242. inline void drawLine(const QPoint &p1, const QPoint &p2);
  243. inline void drawLine(const QPointF &p1, const QPointF &p2);
  244. void drawLines(const QLineF *lines, int lineCount);
  245. inline void drawLines(const QVector<QLineF> &lines);
  246. void drawLines(const QPointF *pointPairs, int lineCount);
  247. inline void drawLines(const QVector<QPointF> &pointPairs);
  248. void drawLines(const QLine *lines, int lineCount);
  249. inline void drawLines(const QVector<QLine> &lines);
  250. void drawLines(const QPoint *pointPairs, int lineCount);
  251. inline void drawLines(const QVector<QPoint> &pointPairs);
  252. inline void drawRect(const QRectF &rect);
  253. inline void drawRect(int x1, int y1, int w, int h);
  254. inline void drawRect(const QRect &rect);
  255. void drawRects(const QRectF *rects, int rectCount);
  256. inline void drawRects(const QVector<QRectF> &rectangles);
  257. void drawRects(const QRect *rects, int rectCount);
  258. inline void drawRects(const QVector<QRect> &rectangles);
  259. void drawEllipse(const QRectF &r);
  260. void drawEllipse(const QRect &r);
  261. inline void drawEllipse(int x, int y, int w, int h);
  262. inline void drawEllipse(const QPointF &center, qreal rx, qreal ry);
  263. inline void drawEllipse(const QPoint &center, int rx, int ry);
  264. void drawPolyline(const QPointF *points, int pointCount);
  265. inline void drawPolyline(const QPolygonF &polyline);
  266. void drawPolyline(const QPoint *points, int pointCount);
  267. inline void drawPolyline(const QPolygon &polygon);
  268. void drawPolygon(const QPointF *points, int pointCount, Qt::FillRule fillRule = Qt::OddEvenFill);
  269. inline void drawPolygon(const QPolygonF &polygon, Qt::FillRule fillRule = Qt::OddEvenFill);
  270. void drawPolygon(const QPoint *points, int pointCount, Qt::FillRule fillRule = Qt::OddEvenFill);
  271. inline void drawPolygon(const QPolygon &polygon, Qt::FillRule fillRule = Qt::OddEvenFill);
  272. void drawConvexPolygon(const QPointF *points, int pointCount);
  273. inline void drawConvexPolygon(const QPolygonF &polygon);
  274. void drawConvexPolygon(const QPoint *points, int pointCount);
  275. inline void drawConvexPolygon(const QPolygon &polygon);
  276. void drawArc(const QRectF &rect, int a, int alen);
  277. inline void drawArc(const QRect &, int a, int alen);
  278. inline void drawArc(int x, int y, int w, int h, int a, int alen);
  279. void drawPie(const QRectF &rect, int a, int alen);
  280. inline void drawPie(int x, int y, int w, int h, int a, int alen);
  281. inline void drawPie(const QRect &, int a, int alen);
  282. void drawChord(const QRectF &rect, int a, int alen);
  283. inline void drawChord(int x, int y, int w, int h, int a, int alen);
  284. inline void drawChord(const QRect &, int a, int alen);
  285. void drawRoundedRect(const QRectF &rect, qreal xRadius, qreal yRadius,
  286. Qt::SizeMode mode = Qt::AbsoluteSize);
  287. inline void drawRoundedRect(int x, int y, int w, int h, qreal xRadius, qreal yRadius,
  288. Qt::SizeMode mode = Qt::AbsoluteSize);
  289. inline void drawRoundedRect(const QRect &rect, qreal xRadius, qreal yRadius,
  290. Qt::SizeMode mode = Qt::AbsoluteSize);
  291. void drawRoundRect(const QRectF &r, int xround = 25, int yround = 25);
  292. inline void drawRoundRect(int x, int y, int w, int h, int = 25, int = 25);
  293. inline void drawRoundRect(const QRect &r, int xround = 25, int yround = 25);
  294. void drawTiledPixmap(const QRectF &rect, const QPixmap &pm, const QPointF &offset = QPointF());
  295. inline void drawTiledPixmap(int x, int y, int w, int h, const QPixmap &, int sx=0, int sy=0);
  296. inline void drawTiledPixmap(const QRect &, const QPixmap &, const QPoint & = QPoint());
  297. #ifndef QT_NO_PICTURE
  298. void drawPicture(const QPointF &p, const QPicture &picture);
  299. inline void drawPicture(int x, int y, const QPicture &picture);
  300. inline void drawPicture(const QPoint &p, const QPicture &picture);
  301. #endif
  302. void drawPixmap(const QRectF &targetRect, const QPixmap &pixmap, const QRectF &sourceRect);
  303. inline void drawPixmap(const QRect &targetRect, const QPixmap &pixmap, const QRect &sourceRect);
  304. inline void drawPixmap(int x, int y, int w, int h, const QPixmap &pm,
  305. int sx, int sy, int sw, int sh);
  306. inline void drawPixmap(int x, int y, const QPixmap &pm,
  307. int sx, int sy, int sw, int sh);
  308. inline void drawPixmap(const QPointF &p, const QPixmap &pm, const QRectF &sr);
  309. inline void drawPixmap(const QPoint &p, const QPixmap &pm, const QRect &sr);
  310. void drawPixmap(const QPointF &p, const QPixmap &pm);
  311. inline void drawPixmap(const QPoint &p, const QPixmap &pm);
  312. inline void drawPixmap(int x, int y, const QPixmap &pm);
  313. inline void drawPixmap(const QRect &r, const QPixmap &pm);
  314. inline void drawPixmap(int x, int y, int w, int h, const QPixmap &pm);
  315. void drawPixmapFragments(const PixmapFragment *fragments, int fragmentCount,
  316. const QPixmap &pixmap, PixmapFragmentHints hints = PixmapFragmentHints());
  317. void drawImage(const QRectF &targetRect, const QImage &image, const QRectF &sourceRect,
  318. Qt::ImageConversionFlags flags = Qt::AutoColor);
  319. inline void drawImage(const QRect &targetRect, const QImage &image, const QRect &sourceRect,
  320. Qt::ImageConversionFlags flags = Qt::AutoColor);
  321. inline void drawImage(const QPointF &p, const QImage &image, const QRectF &sr,
  322. Qt::ImageConversionFlags flags = Qt::AutoColor);
  323. inline void drawImage(const QPoint &p, const QImage &image, const QRect &sr,
  324. Qt::ImageConversionFlags flags = Qt::AutoColor);
  325. inline void drawImage(const QRectF &r, const QImage &image);
  326. inline void drawImage(const QRect &r, const QImage &image);
  327. void drawImage(const QPointF &p, const QImage &image);
  328. inline void drawImage(const QPoint &p, const QImage &image);
  329. inline void drawImage(int x, int y, const QImage &image, int sx = 0, int sy = 0,
  330. int sw = -1, int sh = -1, Qt::ImageConversionFlags flags = Qt::AutoColor);
  331. void setLayoutDirection(Qt::LayoutDirection direction);
  332. Qt::LayoutDirection layoutDirection() const;
  333. #if !defined(QT_NO_RAWFONT)
  334. void drawGlyphRun(const QPointF &position, const QGlyphRun &glyphRun);
  335. #endif
  336. void drawStaticText(const QPointF &topLeftPosition, const QStaticText &staticText);
  337. inline void drawStaticText(const QPoint &topLeftPosition, const QStaticText &staticText);
  338. inline void drawStaticText(int left, int top, const QStaticText &staticText);
  339. void drawText(const QPointF &p, const QString &s);
  340. inline void drawText(const QPoint &p, const QString &s);
  341. inline void drawText(int x, int y, const QString &s);
  342. void drawText(const QPointF &p, const QString &str, int tf, int justificationPadding);
  343. void drawText(const QRectF &r, int flags, const QString &text, QRectF *br = Q_NULLPTR);
  344. void drawText(const QRect &r, int flags, const QString &text, QRect *br = Q_NULLPTR);
  345. inline void drawText(int x, int y, int w, int h, int flags, const QString &text, QRect *br = Q_NULLPTR);
  346. void drawText(const QRectF &r, const QString &text, const QTextOption &o = QTextOption());
  347. QRectF boundingRect(const QRectF &rect, int flags, const QString &text);
  348. QRect boundingRect(const QRect &rect, int flags, const QString &text);
  349. inline QRect boundingRect(int x, int y, int w, int h, int flags, const QString &text);
  350. QRectF boundingRect(const QRectF &rect, const QString &text, const QTextOption &o = QTextOption());
  351. void drawTextItem(const QPointF &p, const QTextItem &ti);
  352. inline void drawTextItem(int x, int y, const QTextItem &ti);
  353. inline void drawTextItem(const QPoint &p, const QTextItem &ti);
  354. void fillRect(const QRectF &, const QBrush &);
  355. inline void fillRect(int x, int y, int w, int h, const QBrush &);
  356. void fillRect(const QRect &, const QBrush &);
  357. void fillRect(const QRectF &, const QColor &color);
  358. inline void fillRect(int x, int y, int w, int h, const QColor &color);
  359. void fillRect(const QRect &, const QColor &color);
  360. inline void fillRect(int x, int y, int w, int h, Qt::GlobalColor c);
  361. inline void fillRect(const QRect &r, Qt::GlobalColor c);
  362. inline void fillRect(const QRectF &r, Qt::GlobalColor c);
  363. inline void fillRect(int x, int y, int w, int h, Qt::BrushStyle style);
  364. inline void fillRect(const QRect &r, Qt::BrushStyle style);
  365. inline void fillRect(const QRectF &r, Qt::BrushStyle style);
  366. void eraseRect(const QRectF &);
  367. inline void eraseRect(int x, int y, int w, int h);
  368. inline void eraseRect(const QRect &);
  369. void setRenderHint(RenderHint hint, bool on = true);
  370. void setRenderHints(RenderHints hints, bool on = true);
  371. RenderHints renderHints() const;
  372. inline bool testRenderHint(RenderHint hint) const { return renderHints() & hint; }
  373. QPaintEngine *paintEngine() const;
  374. static void setRedirected(const QPaintDevice *device, QPaintDevice *replacement,
  375. const QPoint& offset = QPoint());
  376. static QPaintDevice *redirected(const QPaintDevice *device, QPoint *offset = Q_NULLPTR);
  377. static void restoreRedirected(const QPaintDevice *device);
  378. void beginNativePainting();
  379. void endNativePainting();
  380. private:
  381. Q_DISABLE_COPY(QPainter)
  382. QScopedPointer<QPainterPrivate> d_ptr;
  383. friend class QWidget;
  384. friend class QFontEngine;
  385. friend class QFontEngineBox;
  386. friend class QFontEngineFT;
  387. friend class QFontEngineMac;
  388. friend class QFontEngineWin;
  389. friend class QPaintEngine;
  390. friend class QPaintEngineExPrivate;
  391. friend class QOpenGLPaintEngine;
  392. friend class QWin32PaintEngine;
  393. friend class QWin32PaintEnginePrivate;
  394. friend class QRasterPaintEngine;
  395. friend class QAlphaPaintEngine;
  396. friend class QPreviewPaintEngine;
  397. friend class QTextEngine;
  398. };
  399. Q_DECLARE_TYPEINFO(QPainter::PixmapFragment, Q_RELOCATABLE_TYPE);
  400. Q_DECLARE_OPERATORS_FOR_FLAGS(QPainter::RenderHints)
  401. //
  402. // functions
  403. //
  404. inline void QPainter::drawLine(const QLineF &l)
  405. {
  406. drawLines(&l, 1);
  407. }
  408. inline void QPainter::drawLine(const QLine &line)
  409. {
  410. drawLines(&line, 1);
  411. }
  412. inline void QPainter::drawLine(int x1, int y1, int x2, int y2)
  413. {
  414. QLine l(x1, y1, x2, y2);
  415. drawLines(&l, 1);
  416. }
  417. inline void QPainter::drawLine(const QPoint &p1, const QPoint &p2)
  418. {
  419. QLine l(p1, p2);
  420. drawLines(&l, 1);
  421. }
  422. inline void QPainter::drawLine(const QPointF &p1, const QPointF &p2)
  423. {
  424. drawLine(QLineF(p1, p2));
  425. }
  426. inline void QPainter::drawLines(const QVector<QLineF> &lines)
  427. {
  428. drawLines(lines.constData(), lines.size());
  429. }
  430. inline void QPainter::drawLines(const QVector<QLine> &lines)
  431. {
  432. drawLines(lines.constData(), lines.size());
  433. }
  434. inline void QPainter::drawLines(const QVector<QPointF> &pointPairs)
  435. {
  436. drawLines(pointPairs.constData(), pointPairs.size() / 2);
  437. }
  438. inline void QPainter::drawLines(const QVector<QPoint> &pointPairs)
  439. {
  440. drawLines(pointPairs.constData(), pointPairs.size() / 2);
  441. }
  442. inline void QPainter::drawPolyline(const QPolygonF &polyline)
  443. {
  444. drawPolyline(polyline.constData(), polyline.size());
  445. }
  446. inline void QPainter::drawPolyline(const QPolygon &polyline)
  447. {
  448. drawPolyline(polyline.constData(), polyline.size());
  449. }
  450. inline void QPainter::drawPolygon(const QPolygonF &polygon, Qt::FillRule fillRule)
  451. {
  452. drawPolygon(polygon.constData(), polygon.size(), fillRule);
  453. }
  454. inline void QPainter::drawPolygon(const QPolygon &polygon, Qt::FillRule fillRule)
  455. {
  456. drawPolygon(polygon.constData(), polygon.size(), fillRule);
  457. }
  458. inline void QPainter::drawConvexPolygon(const QPolygonF &poly)
  459. {
  460. drawConvexPolygon(poly.constData(), poly.size());
  461. }
  462. inline void QPainter::drawConvexPolygon(const QPolygon &poly)
  463. {
  464. drawConvexPolygon(poly.constData(), poly.size());
  465. }
  466. inline void QPainter::drawRect(const QRectF &rect)
  467. {
  468. drawRects(&rect, 1);
  469. }
  470. inline void QPainter::drawRect(int x, int y, int w, int h)
  471. {
  472. QRect r(x, y, w, h);
  473. drawRects(&r, 1);
  474. }
  475. inline void QPainter::drawRect(const QRect &r)
  476. {
  477. drawRects(&r, 1);
  478. }
  479. inline void QPainter::drawRects(const QVector<QRectF> &rects)
  480. {
  481. drawRects(rects.constData(), rects.size());
  482. }
  483. inline void QPainter::drawRects(const QVector<QRect> &rects)
  484. {
  485. drawRects(rects.constData(), rects.size());
  486. }
  487. inline void QPainter::drawPoint(const QPointF &p)
  488. {
  489. drawPoints(&p, 1);
  490. }
  491. inline void QPainter::drawPoint(int x, int y)
  492. {
  493. QPoint p(x, y);
  494. drawPoints(&p, 1);
  495. }
  496. inline void QPainter::drawPoint(const QPoint &p)
  497. {
  498. drawPoints(&p, 1);
  499. }
  500. inline void QPainter::drawPoints(const QPolygonF &points)
  501. {
  502. drawPoints(points.constData(), points.size());
  503. }
  504. inline void QPainter::drawPoints(const QPolygon &points)
  505. {
  506. drawPoints(points.constData(), points.size());
  507. }
  508. inline void QPainter::drawRoundRect(int x, int y, int w, int h, int xRnd, int yRnd)
  509. {
  510. drawRoundRect(QRectF(x, y, w, h), xRnd, yRnd);
  511. }
  512. inline void QPainter::drawRoundRect(const QRect &rect, int xRnd, int yRnd)
  513. {
  514. drawRoundRect(QRectF(rect), xRnd, yRnd);
  515. }
  516. inline void QPainter::drawRoundedRect(int x, int y, int w, int h, qreal xRadius, qreal yRadius,
  517. Qt::SizeMode mode)
  518. {
  519. drawRoundedRect(QRectF(x, y, w, h), xRadius, yRadius, mode);
  520. }
  521. inline void QPainter::drawRoundedRect(const QRect &rect, qreal xRadius, qreal yRadius,
  522. Qt::SizeMode mode)
  523. {
  524. drawRoundedRect(QRectF(rect), xRadius, yRadius, mode);
  525. }
  526. inline void QPainter::drawEllipse(int x, int y, int w, int h)
  527. {
  528. drawEllipse(QRect(x, y, w, h));
  529. }
  530. inline void QPainter::drawEllipse(const QPointF &center, qreal rx, qreal ry)
  531. {
  532. drawEllipse(QRectF(center.x() - rx, center.y() - ry, 2 * rx, 2 * ry));
  533. }
  534. inline void QPainter::drawEllipse(const QPoint &center, int rx, int ry)
  535. {
  536. drawEllipse(QRect(center.x() - rx, center.y() - ry, 2 * rx, 2 * ry));
  537. }
  538. inline void QPainter::drawArc(const QRect &r, int a, int alen)
  539. {
  540. drawArc(QRectF(r), a, alen);
  541. }
  542. inline void QPainter::drawArc(int x, int y, int w, int h, int a, int alen)
  543. {
  544. drawArc(QRectF(x, y, w, h), a, alen);
  545. }
  546. inline void QPainter::drawPie(const QRect &rect, int a, int alen)
  547. {
  548. drawPie(QRectF(rect), a, alen);
  549. }
  550. inline void QPainter::drawPie(int x, int y, int w, int h, int a, int alen)
  551. {
  552. drawPie(QRectF(x, y, w, h), a, alen);
  553. }
  554. inline void QPainter::drawChord(const QRect &rect, int a, int alen)
  555. {
  556. drawChord(QRectF(rect), a, alen);
  557. }
  558. inline void QPainter::drawChord(int x, int y, int w, int h, int a, int alen)
  559. {
  560. drawChord(QRectF(x, y, w, h), a, alen);
  561. }
  562. inline void QPainter::setClipRect(int x, int y, int w, int h, Qt::ClipOperation op)
  563. {
  564. setClipRect(QRect(x, y, w, h), op);
  565. }
  566. inline void QPainter::eraseRect(const QRect &rect)
  567. {
  568. eraseRect(QRectF(rect));
  569. }
  570. inline void QPainter::eraseRect(int x, int y, int w, int h)
  571. {
  572. eraseRect(QRectF(x, y, w, h));
  573. }
  574. inline void QPainter::fillRect(int x, int y, int w, int h, const QBrush &b)
  575. {
  576. fillRect(QRect(x, y, w, h), b);
  577. }
  578. inline void QPainter::fillRect(int x, int y, int w, int h, const QColor &b)
  579. {
  580. fillRect(QRect(x, y, w, h), b);
  581. }
  582. inline void QPainter::fillRect(int x, int y, int w, int h, Qt::GlobalColor c)
  583. {
  584. fillRect(QRect(x, y, w, h), QColor(c));
  585. }
  586. inline void QPainter::fillRect(const QRect &r, Qt::GlobalColor c)
  587. {
  588. fillRect(r, QColor(c));
  589. }
  590. inline void QPainter::fillRect(const QRectF &r, Qt::GlobalColor c)
  591. {
  592. fillRect(r, QColor(c));
  593. }
  594. inline void QPainter::fillRect(int x, int y, int w, int h, Qt::BrushStyle style)
  595. {
  596. fillRect(QRectF(x, y, w, h), QBrush(style));
  597. }
  598. inline void QPainter::fillRect(const QRect &r, Qt::BrushStyle style)
  599. {
  600. fillRect(QRectF(r), QBrush(style));
  601. }
  602. inline void QPainter::fillRect(const QRectF &r, Qt::BrushStyle style)
  603. {
  604. fillRect(r, QBrush(style));
  605. }
  606. inline void QPainter::setBrushOrigin(int x, int y)
  607. {
  608. setBrushOrigin(QPoint(x, y));
  609. }
  610. inline void QPainter::setBrushOrigin(const QPoint &p)
  611. {
  612. setBrushOrigin(QPointF(p));
  613. }
  614. inline void QPainter::drawTiledPixmap(const QRect &rect, const QPixmap &pm, const QPoint &offset)
  615. {
  616. drawTiledPixmap(QRectF(rect), pm, QPointF(offset));
  617. }
  618. inline void QPainter::drawTiledPixmap(int x, int y, int w, int h, const QPixmap &pm, int sx, int sy)
  619. {
  620. drawTiledPixmap(QRectF(x, y, w, h), pm, QPointF(sx, sy));
  621. }
  622. inline void QPainter::drawPixmap(const QRect &targetRect, const QPixmap &pixmap, const QRect &sourceRect)
  623. {
  624. drawPixmap(QRectF(targetRect), pixmap, QRectF(sourceRect));
  625. }
  626. inline void QPainter::drawPixmap(const QPoint &p, const QPixmap &pm)
  627. {
  628. drawPixmap(QPointF(p), pm);
  629. }
  630. inline void QPainter::drawPixmap(const QRect &r, const QPixmap &pm)
  631. {
  632. drawPixmap(QRectF(r), pm, QRectF());
  633. }
  634. inline void QPainter::drawPixmap(int x, int y, const QPixmap &pm)
  635. {
  636. drawPixmap(QPointF(x, y), pm);
  637. }
  638. inline void QPainter::drawPixmap(int x, int y, int w, int h, const QPixmap &pm)
  639. {
  640. drawPixmap(QRectF(x, y, w, h), pm, QRectF());
  641. }
  642. inline void QPainter::drawPixmap(int x, int y, int w, int h, const QPixmap &pm,
  643. int sx, int sy, int sw, int sh)
  644. {
  645. drawPixmap(QRectF(x, y, w, h), pm, QRectF(sx, sy, sw, sh));
  646. }
  647. inline void QPainter::drawPixmap(int x, int y, const QPixmap &pm,
  648. int sx, int sy, int sw, int sh)
  649. {
  650. drawPixmap(QRectF(x, y, -1, -1), pm, QRectF(sx, sy, sw, sh));
  651. }
  652. inline void QPainter::drawPixmap(const QPointF &p, const QPixmap &pm, const QRectF &sr)
  653. {
  654. drawPixmap(QRectF(p.x(), p.y(), -1, -1), pm, sr);
  655. }
  656. inline void QPainter::drawPixmap(const QPoint &p, const QPixmap &pm, const QRect &sr)
  657. {
  658. drawPixmap(QRectF(p.x(), p.y(), -1, -1), pm, sr);
  659. }
  660. inline void QPainter::drawTextItem(int x, int y, const QTextItem &ti)
  661. {
  662. drawTextItem(QPointF(x, y), ti);
  663. }
  664. inline void QPainter::drawImage(const QRect &targetRect, const QImage &image, const QRect &sourceRect,
  665. Qt::ImageConversionFlags flags)
  666. {
  667. drawImage(QRectF(targetRect), image, QRectF(sourceRect), flags);
  668. }
  669. inline void QPainter::drawImage(const QPointF &p, const QImage &image, const QRectF &sr,
  670. Qt::ImageConversionFlags flags)
  671. {
  672. drawImage(QRectF(p.x(), p.y(), -1, -1), image, sr, flags);
  673. }
  674. inline void QPainter::drawImage(const QPoint &p, const QImage &image, const QRect &sr,
  675. Qt::ImageConversionFlags flags)
  676. {
  677. drawImage(QRect(p.x(), p.y(), -1, -1), image, sr, flags);
  678. }
  679. inline void QPainter::drawImage(const QRectF &r, const QImage &image)
  680. {
  681. drawImage(r, image, QRect(0, 0, image.width(), image.height()));
  682. }
  683. inline void QPainter::drawImage(const QRect &r, const QImage &image)
  684. {
  685. drawImage(r, image, QRectF(0, 0, image.width(), image.height()));
  686. }
  687. inline void QPainter::drawImage(const QPoint &p, const QImage &image)
  688. {
  689. drawImage(QPointF(p), image);
  690. }
  691. inline void QPainter::drawImage(int x, int y, const QImage &image, int sx, int sy, int sw, int sh,
  692. Qt::ImageConversionFlags flags)
  693. {
  694. if (sx == 0 && sy == 0 && sw == -1 && sh == -1 && flags == Qt::AutoColor)
  695. drawImage(QPointF(x, y), image);
  696. else
  697. drawImage(QRectF(x, y, -1, -1), image, QRectF(sx, sy, sw, sh), flags);
  698. }
  699. inline void QPainter::drawStaticText(const QPoint &p, const QStaticText &staticText)
  700. {
  701. drawStaticText(QPointF(p), staticText);
  702. }
  703. inline void QPainter::drawStaticText(int x, int y, const QStaticText &staticText)
  704. {
  705. drawStaticText(QPointF(x, y), staticText);
  706. }
  707. inline void QPainter::drawTextItem(const QPoint &p, const QTextItem &ti)
  708. {
  709. drawTextItem(QPointF(p), ti);
  710. }
  711. inline void QPainter::drawText(const QPoint &p, const QString &s)
  712. {
  713. drawText(QPointF(p), s);
  714. }
  715. inline void QPainter::drawText(int x, int y, int w, int h, int flags, const QString &str, QRect *br)
  716. {
  717. drawText(QRect(x, y, w, h), flags, str, br);
  718. }
  719. inline void QPainter::drawText(int x, int y, const QString &s)
  720. {
  721. drawText(QPointF(x, y), s);
  722. }
  723. inline QRect QPainter::boundingRect(int x, int y, int w, int h, int flags, const QString &text)
  724. {
  725. return boundingRect(QRect(x, y, w, h), flags, text);
  726. }
  727. inline void QPainter::translate(qreal dx, qreal dy)
  728. {
  729. translate(QPointF(dx, dy));
  730. }
  731. inline void QPainter::translate(const QPoint &offset)
  732. {
  733. translate(offset.x(), offset.y());
  734. }
  735. inline void QPainter::setViewport(int x, int y, int w, int h)
  736. {
  737. setViewport(QRect(x, y, w, h));
  738. }
  739. inline void QPainter::setWindow(int x, int y, int w, int h)
  740. {
  741. setWindow(QRect(x, y, w, h));
  742. }
  743. #ifndef QT_NO_PICTURE
  744. inline void QPainter::drawPicture(int x, int y, const QPicture &p)
  745. {
  746. drawPicture(QPoint(x, y), p);
  747. }
  748. inline void QPainter::drawPicture(const QPoint &pt, const QPicture &p)
  749. {
  750. drawPicture(QPointF(pt), p);
  751. }
  752. #endif
  753. QT_END_NAMESPACE
  754. #endif // QPAINTER_H