qpainterpath.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377
  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 QPAINTERPATH_H
  40. #define QPAINTERPATH_H
  41. #include <QtGui/qmatrix.h>
  42. #include <QtCore/qglobal.h>
  43. #include <QtCore/qrect.h>
  44. #include <QtCore/qline.h>
  45. #include <QtCore/qvector.h>
  46. #include <QtCore/qscopedpointer.h>
  47. QT_BEGIN_NAMESPACE
  48. class QFont;
  49. class QPainterPathPrivate;
  50. struct QPainterPathPrivateDeleter;
  51. class QPainterPathData;
  52. class QPainterPathStrokerPrivate;
  53. class QPen;
  54. class QPolygonF;
  55. class QRegion;
  56. class QVectorPath;
  57. class Q_GUI_EXPORT QPainterPath
  58. {
  59. public:
  60. enum ElementType {
  61. MoveToElement,
  62. LineToElement,
  63. CurveToElement,
  64. CurveToDataElement
  65. };
  66. class Element {
  67. public:
  68. qreal x;
  69. qreal y;
  70. ElementType type;
  71. bool isMoveTo() const { return type == MoveToElement; }
  72. bool isLineTo() const { return type == LineToElement; }
  73. bool isCurveTo() const { return type == CurveToElement; }
  74. operator QPointF () const { return QPointF(x, y); }
  75. bool operator==(const Element &e) const { return qFuzzyCompare(x, e.x)
  76. && qFuzzyCompare(y, e.y) && type == e.type; }
  77. inline bool operator!=(const Element &e) const { return !operator==(e); }
  78. };
  79. QPainterPath() Q_DECL_NOEXCEPT;
  80. explicit QPainterPath(const QPointF &startPoint);
  81. QPainterPath(const QPainterPath &other);
  82. QPainterPath &operator=(const QPainterPath &other);
  83. #ifdef Q_COMPILER_RVALUE_REFS
  84. inline QPainterPath &operator=(QPainterPath &&other) Q_DECL_NOEXCEPT
  85. { qSwap(d_ptr, other.d_ptr); return *this; }
  86. #endif
  87. ~QPainterPath();
  88. inline void swap(QPainterPath &other) Q_DECL_NOEXCEPT { d_ptr.swap(other.d_ptr); }
  89. void closeSubpath();
  90. void moveTo(const QPointF &p);
  91. inline void moveTo(qreal x, qreal y);
  92. void lineTo(const QPointF &p);
  93. inline void lineTo(qreal x, qreal y);
  94. void arcMoveTo(const QRectF &rect, qreal angle);
  95. inline void arcMoveTo(qreal x, qreal y, qreal w, qreal h, qreal angle);
  96. void arcTo(const QRectF &rect, qreal startAngle, qreal arcLength);
  97. inline void arcTo(qreal x, qreal y, qreal w, qreal h, qreal startAngle, qreal arcLength);
  98. void cubicTo(const QPointF &ctrlPt1, const QPointF &ctrlPt2, const QPointF &endPt);
  99. inline void cubicTo(qreal ctrlPt1x, qreal ctrlPt1y, qreal ctrlPt2x, qreal ctrlPt2y,
  100. qreal endPtx, qreal endPty);
  101. void quadTo(const QPointF &ctrlPt, const QPointF &endPt);
  102. inline void quadTo(qreal ctrlPtx, qreal ctrlPty, qreal endPtx, qreal endPty);
  103. QPointF currentPosition() const;
  104. void addRect(const QRectF &rect);
  105. inline void addRect(qreal x, qreal y, qreal w, qreal h);
  106. void addEllipse(const QRectF &rect);
  107. inline void addEllipse(qreal x, qreal y, qreal w, qreal h);
  108. inline void addEllipse(const QPointF &center, qreal rx, qreal ry);
  109. void addPolygon(const QPolygonF &polygon);
  110. void addText(const QPointF &point, const QFont &f, const QString &text);
  111. inline void addText(qreal x, qreal y, const QFont &f, const QString &text);
  112. void addPath(const QPainterPath &path);
  113. void addRegion(const QRegion &region);
  114. void addRoundedRect(const QRectF &rect, qreal xRadius, qreal yRadius,
  115. Qt::SizeMode mode = Qt::AbsoluteSize);
  116. inline void addRoundedRect(qreal x, qreal y, qreal w, qreal h,
  117. qreal xRadius, qreal yRadius,
  118. Qt::SizeMode mode = Qt::AbsoluteSize);
  119. void addRoundRect(const QRectF &rect, int xRnd, int yRnd);
  120. inline void addRoundRect(qreal x, qreal y, qreal w, qreal h,
  121. int xRnd, int yRnd);
  122. inline void addRoundRect(const QRectF &rect, int roundness);
  123. inline void addRoundRect(qreal x, qreal y, qreal w, qreal h,
  124. int roundness);
  125. void connectPath(const QPainterPath &path);
  126. bool contains(const QPointF &pt) const;
  127. bool contains(const QRectF &rect) const;
  128. bool intersects(const QRectF &rect) const;
  129. void translate(qreal dx, qreal dy);
  130. inline void translate(const QPointF &offset);
  131. QPainterPath translated(qreal dx, qreal dy) const Q_REQUIRED_RESULT;
  132. inline QPainterPath translated(const QPointF &offset) const Q_REQUIRED_RESULT;
  133. QRectF boundingRect() const;
  134. QRectF controlPointRect() const;
  135. Qt::FillRule fillRule() const;
  136. void setFillRule(Qt::FillRule fillRule);
  137. bool isEmpty() const;
  138. QPainterPath toReversed() const Q_REQUIRED_RESULT;
  139. QList<QPolygonF> toSubpathPolygons(const QMatrix &matrix = QMatrix()) const;
  140. QList<QPolygonF> toFillPolygons(const QMatrix &matrix = QMatrix()) const;
  141. QPolygonF toFillPolygon(const QMatrix &matrix = QMatrix()) const;
  142. QList<QPolygonF> toSubpathPolygons(const QTransform &matrix) const;
  143. QList<QPolygonF> toFillPolygons(const QTransform &matrix) const;
  144. QPolygonF toFillPolygon(const QTransform &matrix) const;
  145. int elementCount() const;
  146. QPainterPath::Element elementAt(int i) const;
  147. void setElementPositionAt(int i, qreal x, qreal y);
  148. qreal length() const;
  149. qreal percentAtLength(qreal t) const;
  150. QPointF pointAtPercent(qreal t) const;
  151. qreal angleAtPercent(qreal t) const;
  152. qreal slopeAtPercent(qreal t) const;
  153. bool intersects(const QPainterPath &p) const;
  154. bool contains(const QPainterPath &p) const;
  155. QPainterPath united(const QPainterPath &r) const Q_REQUIRED_RESULT;
  156. QPainterPath intersected(const QPainterPath &r) const Q_REQUIRED_RESULT;
  157. QPainterPath subtracted(const QPainterPath &r) const Q_REQUIRED_RESULT;
  158. QPainterPath subtractedInverted(const QPainterPath &r) const Q_REQUIRED_RESULT;
  159. QPainterPath simplified() const Q_REQUIRED_RESULT;
  160. bool operator==(const QPainterPath &other) const;
  161. bool operator!=(const QPainterPath &other) const;
  162. QPainterPath operator&(const QPainterPath &other) const;
  163. QPainterPath operator|(const QPainterPath &other) const;
  164. QPainterPath operator+(const QPainterPath &other) const;
  165. QPainterPath operator-(const QPainterPath &other) const;
  166. QPainterPath &operator&=(const QPainterPath &other);
  167. QPainterPath &operator|=(const QPainterPath &other);
  168. QPainterPath &operator+=(const QPainterPath &other);
  169. QPainterPath &operator-=(const QPainterPath &other);
  170. private:
  171. QScopedPointer<QPainterPathPrivate, QPainterPathPrivateDeleter> d_ptr;
  172. inline void ensureData() { if (!d_ptr) ensureData_helper(); }
  173. void ensureData_helper();
  174. void detach();
  175. void detach_helper();
  176. void setDirty(bool);
  177. void computeBoundingRect() const;
  178. void computeControlPointRect() const;
  179. QPainterPathData *d_func() const { return reinterpret_cast<QPainterPathData *>(d_ptr.data()); }
  180. friend class QPainterPathData;
  181. friend class QPainterPathStroker;
  182. friend class QPainterPathStrokerPrivate;
  183. friend class QMatrix;
  184. friend class QTransform;
  185. friend class QVectorPath;
  186. friend Q_GUI_EXPORT const QVectorPath &qtVectorPathForPath(const QPainterPath &);
  187. #ifndef QT_NO_DATASTREAM
  188. friend Q_GUI_EXPORT QDataStream &operator<<(QDataStream &, const QPainterPath &);
  189. friend Q_GUI_EXPORT QDataStream &operator>>(QDataStream &, QPainterPath &);
  190. #endif
  191. };
  192. Q_DECLARE_SHARED_NOT_MOVABLE_UNTIL_QT6(QPainterPath)
  193. Q_DECLARE_TYPEINFO(QPainterPath::Element, Q_PRIMITIVE_TYPE);
  194. #ifndef QT_NO_DATASTREAM
  195. Q_GUI_EXPORT QDataStream &operator<<(QDataStream &, const QPainterPath &);
  196. Q_GUI_EXPORT QDataStream &operator>>(QDataStream &, QPainterPath &);
  197. #endif
  198. class Q_GUI_EXPORT QPainterPathStroker
  199. {
  200. Q_DECLARE_PRIVATE(QPainterPathStroker)
  201. public:
  202. QPainterPathStroker();
  203. explicit QPainterPathStroker(const QPen &pen);
  204. ~QPainterPathStroker();
  205. void setWidth(qreal width);
  206. qreal width() const;
  207. void setCapStyle(Qt::PenCapStyle style);
  208. Qt::PenCapStyle capStyle() const;
  209. void setJoinStyle(Qt::PenJoinStyle style);
  210. Qt::PenJoinStyle joinStyle() const;
  211. void setMiterLimit(qreal length);
  212. qreal miterLimit() const;
  213. void setCurveThreshold(qreal threshold);
  214. qreal curveThreshold() const;
  215. void setDashPattern(Qt::PenStyle);
  216. void setDashPattern(const QVector<qreal> &dashPattern);
  217. QVector<qreal> dashPattern() const;
  218. void setDashOffset(qreal offset);
  219. qreal dashOffset() const;
  220. QPainterPath createStroke(const QPainterPath &path) const;
  221. private:
  222. Q_DISABLE_COPY(QPainterPathStroker)
  223. friend class QX11PaintEngine;
  224. QScopedPointer<QPainterPathStrokerPrivate> d_ptr;
  225. };
  226. inline void QPainterPath::moveTo(qreal x, qreal y)
  227. {
  228. moveTo(QPointF(x, y));
  229. }
  230. inline void QPainterPath::lineTo(qreal x, qreal y)
  231. {
  232. lineTo(QPointF(x, y));
  233. }
  234. inline void QPainterPath::arcTo(qreal x, qreal y, qreal w, qreal h, qreal startAngle, qreal arcLength)
  235. {
  236. arcTo(QRectF(x, y, w, h), startAngle, arcLength);
  237. }
  238. inline void QPainterPath::arcMoveTo(qreal x, qreal y, qreal w, qreal h, qreal angle)
  239. {
  240. arcMoveTo(QRectF(x, y, w, h), angle);
  241. }
  242. inline void QPainterPath::cubicTo(qreal ctrlPt1x, qreal ctrlPt1y, qreal ctrlPt2x, qreal ctrlPt2y,
  243. qreal endPtx, qreal endPty)
  244. {
  245. cubicTo(QPointF(ctrlPt1x, ctrlPt1y), QPointF(ctrlPt2x, ctrlPt2y),
  246. QPointF(endPtx, endPty));
  247. }
  248. inline void QPainterPath::quadTo(qreal ctrlPtx, qreal ctrlPty, qreal endPtx, qreal endPty)
  249. {
  250. quadTo(QPointF(ctrlPtx, ctrlPty), QPointF(endPtx, endPty));
  251. }
  252. inline void QPainterPath::addEllipse(qreal x, qreal y, qreal w, qreal h)
  253. {
  254. addEllipse(QRectF(x, y, w, h));
  255. }
  256. inline void QPainterPath::addEllipse(const QPointF &center, qreal rx, qreal ry)
  257. {
  258. addEllipse(QRectF(center.x() - rx, center.y() - ry, 2 * rx, 2 * ry));
  259. }
  260. inline void QPainterPath::addRect(qreal x, qreal y, qreal w, qreal h)
  261. {
  262. addRect(QRectF(x, y, w, h));
  263. }
  264. inline void QPainterPath::addRoundedRect(qreal x, qreal y, qreal w, qreal h,
  265. qreal xRadius, qreal yRadius,
  266. Qt::SizeMode mode)
  267. {
  268. addRoundedRect(QRectF(x, y, w, h), xRadius, yRadius, mode);
  269. }
  270. inline void QPainterPath::addRoundRect(qreal x, qreal y, qreal w, qreal h,
  271. int xRnd, int yRnd)
  272. {
  273. addRoundRect(QRectF(x, y, w, h), xRnd, yRnd);
  274. }
  275. inline void QPainterPath::addRoundRect(const QRectF &rect,
  276. int roundness)
  277. {
  278. int xRnd = roundness;
  279. int yRnd = roundness;
  280. if (rect.width() > rect.height())
  281. xRnd = int(roundness * rect.height()/rect.width());
  282. else
  283. yRnd = int(roundness * rect.width()/rect.height());
  284. addRoundRect(rect, xRnd, yRnd);
  285. }
  286. inline void QPainterPath::addRoundRect(qreal x, qreal y, qreal w, qreal h,
  287. int roundness)
  288. {
  289. addRoundRect(QRectF(x, y, w, h), roundness);
  290. }
  291. inline void QPainterPath::addText(qreal x, qreal y, const QFont &f, const QString &text)
  292. {
  293. addText(QPointF(x, y), f, text);
  294. }
  295. inline void QPainterPath::translate(const QPointF &offset)
  296. { translate(offset.x(), offset.y()); }
  297. inline QPainterPath QPainterPath::translated(const QPointF &offset) const
  298. { return translated(offset.x(), offset.y()); }
  299. #ifndef QT_NO_DEBUG_STREAM
  300. Q_GUI_EXPORT QDebug operator<<(QDebug, const QPainterPath &);
  301. #endif
  302. QT_END_NAMESPACE
  303. #endif // QPAINTERPATH_H