qbrush.h 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  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 QBRUSH_H
  40. #define QBRUSH_H
  41. #include <QtCore/qpair.h>
  42. #include <QtCore/qpoint.h>
  43. #include <QtCore/qvector.h>
  44. #include <QtCore/qscopedpointer.h>
  45. #include <QtGui/qcolor.h>
  46. #include <QtGui/qmatrix.h>
  47. #include <QtGui/qtransform.h>
  48. #include <QtGui/qimage.h>
  49. #include <QtGui/qpixmap.h>
  50. QT_BEGIN_NAMESPACE
  51. struct QBrushData;
  52. class QPixmap;
  53. class QGradient;
  54. class QVariant;
  55. struct QBrushDataPointerDeleter;
  56. class Q_GUI_EXPORT QBrush
  57. {
  58. public:
  59. QBrush();
  60. QBrush(Qt::BrushStyle bs);
  61. QBrush(const QColor &color, Qt::BrushStyle bs=Qt::SolidPattern);
  62. QBrush(Qt::GlobalColor color, Qt::BrushStyle bs=Qt::SolidPattern);
  63. QBrush(const QColor &color, const QPixmap &pixmap);
  64. QBrush(Qt::GlobalColor color, const QPixmap &pixmap);
  65. QBrush(const QPixmap &pixmap);
  66. QBrush(const QImage &image);
  67. QBrush(const QBrush &brush);
  68. QBrush(const QGradient &gradient);
  69. ~QBrush();
  70. QBrush &operator=(const QBrush &brush);
  71. #ifdef Q_COMPILER_RVALUE_REFS
  72. inline QBrush &operator=(QBrush &&other) Q_DECL_NOEXCEPT
  73. { qSwap(d, other.d); return *this; }
  74. #endif
  75. inline void swap(QBrush &other) Q_DECL_NOEXCEPT
  76. { qSwap(d, other.d); }
  77. operator QVariant() const;
  78. inline Qt::BrushStyle style() const;
  79. void setStyle(Qt::BrushStyle);
  80. inline const QMatrix &matrix() const;
  81. void setMatrix(const QMatrix &mat);
  82. inline QTransform transform() const;
  83. void setTransform(const QTransform &);
  84. QPixmap texture() const;
  85. void setTexture(const QPixmap &pixmap);
  86. QImage textureImage() const;
  87. void setTextureImage(const QImage &image);
  88. inline const QColor &color() const;
  89. void setColor(const QColor &color);
  90. inline void setColor(Qt::GlobalColor color);
  91. const QGradient *gradient() const;
  92. bool isOpaque() const;
  93. bool operator==(const QBrush &b) const;
  94. inline bool operator!=(const QBrush &b) const { return !(operator==(b)); }
  95. private:
  96. friend class QRasterPaintEngine;
  97. friend class QRasterPaintEnginePrivate;
  98. friend struct QSpanData;
  99. friend class QPainter;
  100. friend bool Q_GUI_EXPORT qHasPixmapTexture(const QBrush& brush);
  101. void detach(Qt::BrushStyle newStyle);
  102. void init(const QColor &color, Qt::BrushStyle bs);
  103. QScopedPointer<QBrushData, QBrushDataPointerDeleter> d;
  104. void cleanUp(QBrushData *x);
  105. public:
  106. inline bool isDetached() const;
  107. typedef QScopedPointer<QBrushData, QBrushDataPointerDeleter> DataPtr;
  108. inline DataPtr &data_ptr() { return d; }
  109. };
  110. inline void QBrush::setColor(Qt::GlobalColor acolor)
  111. { setColor(QColor(acolor)); }
  112. Q_DECLARE_SHARED(QBrush)
  113. /*****************************************************************************
  114. QBrush stream functions
  115. *****************************************************************************/
  116. #ifndef QT_NO_DATASTREAM
  117. Q_GUI_EXPORT QDataStream &operator<<(QDataStream &, const QBrush &);
  118. Q_GUI_EXPORT QDataStream &operator>>(QDataStream &, QBrush &);
  119. #endif
  120. #ifndef QT_NO_DEBUG_STREAM
  121. Q_GUI_EXPORT QDebug operator<<(QDebug, const QBrush &);
  122. #endif
  123. struct QBrushData
  124. {
  125. QAtomicInt ref;
  126. Qt::BrushStyle style;
  127. QColor color;
  128. QTransform transform;
  129. };
  130. inline Qt::BrushStyle QBrush::style() const { return d->style; }
  131. inline const QColor &QBrush::color() const { return d->color; }
  132. inline const QMatrix &QBrush::matrix() const { return d->transform.toAffine(); }
  133. inline QTransform QBrush::transform() const { return d->transform; }
  134. inline bool QBrush::isDetached() const { return d->ref.load() == 1; }
  135. /*******************************************************************************
  136. * QGradients
  137. */
  138. class QGradientPrivate;
  139. typedef QPair<qreal, QColor> QGradientStop;
  140. typedef QVector<QGradientStop> QGradientStops;
  141. class Q_GUI_EXPORT QGradient
  142. {
  143. Q_GADGET
  144. public:
  145. enum Type {
  146. LinearGradient,
  147. RadialGradient,
  148. ConicalGradient,
  149. NoGradient
  150. };
  151. Q_ENUM(Type)
  152. enum Spread {
  153. PadSpread,
  154. ReflectSpread,
  155. RepeatSpread
  156. };
  157. Q_ENUM(Spread)
  158. enum CoordinateMode {
  159. LogicalMode,
  160. StretchToDeviceMode,
  161. ObjectBoundingMode
  162. };
  163. Q_ENUM(CoordinateMode)
  164. enum InterpolationMode {
  165. ColorInterpolation,
  166. ComponentInterpolation
  167. };
  168. QGradient();
  169. Type type() const { return m_type; }
  170. inline void setSpread(Spread spread);
  171. Spread spread() const { return m_spread; }
  172. void setColorAt(qreal pos, const QColor &color);
  173. void setStops(const QGradientStops &stops);
  174. QGradientStops stops() const;
  175. CoordinateMode coordinateMode() const;
  176. void setCoordinateMode(CoordinateMode mode);
  177. InterpolationMode interpolationMode() const;
  178. void setInterpolationMode(InterpolationMode mode);
  179. bool operator==(const QGradient &gradient) const;
  180. inline bool operator!=(const QGradient &other) const
  181. { return !operator==(other); }
  182. private:
  183. friend class QLinearGradient;
  184. friend class QRadialGradient;
  185. friend class QConicalGradient;
  186. friend class QBrush;
  187. Type m_type;
  188. Spread m_spread;
  189. QGradientStops m_stops;
  190. union {
  191. struct {
  192. qreal x1, y1, x2, y2;
  193. } linear;
  194. struct {
  195. qreal cx, cy, fx, fy, cradius;
  196. } radial;
  197. struct {
  198. qreal cx, cy, angle;
  199. } conical;
  200. } m_data;
  201. void *dummy; // ### Qt 6: replace with actual content (CoordinateMode, InterpolationMode, ...)
  202. };
  203. inline void QGradient::setSpread(Spread aspread)
  204. { m_spread = aspread; }
  205. class Q_GUI_EXPORT QLinearGradient : public QGradient
  206. {
  207. public:
  208. QLinearGradient();
  209. QLinearGradient(const QPointF &start, const QPointF &finalStop);
  210. QLinearGradient(qreal xStart, qreal yStart, qreal xFinalStop, qreal yFinalStop);
  211. QPointF start() const;
  212. void setStart(const QPointF &start);
  213. inline void setStart(qreal x, qreal y) { setStart(QPointF(x, y)); }
  214. QPointF finalStop() const;
  215. void setFinalStop(const QPointF &stop);
  216. inline void setFinalStop(qreal x, qreal y) { setFinalStop(QPointF(x, y)); }
  217. };
  218. class Q_GUI_EXPORT QRadialGradient : public QGradient
  219. {
  220. public:
  221. QRadialGradient();
  222. QRadialGradient(const QPointF &center, qreal radius, const QPointF &focalPoint);
  223. QRadialGradient(qreal cx, qreal cy, qreal radius, qreal fx, qreal fy);
  224. QRadialGradient(const QPointF &center, qreal radius);
  225. QRadialGradient(qreal cx, qreal cy, qreal radius);
  226. QRadialGradient(const QPointF &center, qreal centerRadius, const QPointF &focalPoint, qreal focalRadius);
  227. QRadialGradient(qreal cx, qreal cy, qreal centerRadius, qreal fx, qreal fy, qreal focalRadius);
  228. QPointF center() const;
  229. void setCenter(const QPointF &center);
  230. inline void setCenter(qreal x, qreal y) { setCenter(QPointF(x, y)); }
  231. QPointF focalPoint() const;
  232. void setFocalPoint(const QPointF &focalPoint);
  233. inline void setFocalPoint(qreal x, qreal y) { setFocalPoint(QPointF(x, y)); }
  234. qreal radius() const;
  235. void setRadius(qreal radius);
  236. qreal centerRadius() const;
  237. void setCenterRadius(qreal radius);
  238. qreal focalRadius() const;
  239. void setFocalRadius(qreal radius);
  240. };
  241. class Q_GUI_EXPORT QConicalGradient : public QGradient
  242. {
  243. public:
  244. QConicalGradient();
  245. QConicalGradient(const QPointF &center, qreal startAngle);
  246. QConicalGradient(qreal cx, qreal cy, qreal startAngle);
  247. QPointF center() const;
  248. void setCenter(const QPointF &center);
  249. inline void setCenter(qreal x, qreal y) { setCenter(QPointF(x, y)); }
  250. qreal angle() const;
  251. void setAngle(qreal angle);
  252. };
  253. QT_END_NAMESPACE
  254. #endif // QBRUSH_H