qpixmap.h 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  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 QPIXMAP_H
  40. #define QPIXMAP_H
  41. #include <QtGui/qpaintdevice.h>
  42. #include <QtGui/qcolor.h>
  43. #include <QtCore/qnamespace.h>
  44. #include <QtCore/qstring.h> // char*->QString conversion
  45. #include <QtCore/qsharedpointer.h>
  46. #include <QtGui/qimage.h>
  47. #include <QtGui/qtransform.h>
  48. QT_BEGIN_NAMESPACE
  49. class QImageWriter;
  50. class QImageReader;
  51. class QColor;
  52. class QVariant;
  53. class QPlatformPixmap;
  54. class Q_GUI_EXPORT QPixmap : public QPaintDevice
  55. {
  56. public:
  57. QPixmap();
  58. explicit QPixmap(QPlatformPixmap *data);
  59. QPixmap(int w, int h);
  60. explicit QPixmap(const QSize &);
  61. QPixmap(const QString& fileName, const char *format = Q_NULLPTR, Qt::ImageConversionFlags flags = Qt::AutoColor);
  62. #ifndef QT_NO_IMAGEFORMAT_XPM
  63. explicit QPixmap(const char * const xpm[]);
  64. #endif
  65. QPixmap(const QPixmap &);
  66. ~QPixmap();
  67. QPixmap &operator=(const QPixmap &);
  68. #ifdef Q_COMPILER_RVALUE_REFS
  69. inline QPixmap &operator=(QPixmap &&other) Q_DECL_NOEXCEPT
  70. { qSwap(data, other.data); return *this; }
  71. #endif
  72. inline void swap(QPixmap &other) Q_DECL_NOEXCEPT
  73. { qSwap(data, other.data); }
  74. operator QVariant() const;
  75. bool isNull() const;
  76. int devType() const Q_DECL_OVERRIDE;
  77. int width() const;
  78. int height() const;
  79. QSize size() const;
  80. QRect rect() const;
  81. int depth() const;
  82. static int defaultDepth();
  83. void fill(const QColor &fillColor = Qt::white);
  84. void fill(const QPaintDevice *device, const QPoint &ofs);
  85. inline void fill(const QPaintDevice *device, int xofs, int yofs) { fill(device, QPoint(xofs, yofs)); }
  86. QBitmap mask() const;
  87. void setMask(const QBitmap &);
  88. qreal devicePixelRatio() const;
  89. void setDevicePixelRatio(qreal scaleFactor);
  90. bool hasAlpha() const;
  91. bool hasAlphaChannel() const;
  92. #ifndef QT_NO_IMAGE_HEURISTIC_MASK
  93. QBitmap createHeuristicMask(bool clipTight = true) const;
  94. #endif
  95. QBitmap createMaskFromColor(const QColor &maskColor, Qt::MaskMode mode = Qt::MaskInColor) const;
  96. static QPixmap grabWindow(WId, int x=0, int y=0, int w=-1, int h=-1);
  97. static QPixmap grabWidget(QObject *widget, const QRect &rect);
  98. static inline QPixmap grabWidget(QObject *widget, int x=0, int y=0, int w=-1, int h=-1)
  99. { return grabWidget(widget, QRect(x, y, w, h)); }
  100. inline QPixmap scaled(int w, int h, Qt::AspectRatioMode aspectMode = Qt::IgnoreAspectRatio,
  101. Qt::TransformationMode mode = Qt::FastTransformation) const
  102. { return scaled(QSize(w, h), aspectMode, mode); }
  103. QPixmap scaled(const QSize &s, Qt::AspectRatioMode aspectMode = Qt::IgnoreAspectRatio,
  104. Qt::TransformationMode mode = Qt::FastTransformation) const;
  105. QPixmap scaledToWidth(int w, Qt::TransformationMode mode = Qt::FastTransformation) const;
  106. QPixmap scaledToHeight(int h, Qt::TransformationMode mode = Qt::FastTransformation) const;
  107. QPixmap transformed(const QMatrix &, Qt::TransformationMode mode = Qt::FastTransformation) const;
  108. static QMatrix trueMatrix(const QMatrix &m, int w, int h);
  109. QPixmap transformed(const QTransform &, Qt::TransformationMode mode = Qt::FastTransformation) const;
  110. static QTransform trueMatrix(const QTransform &m, int w, int h);
  111. QImage toImage() const;
  112. static QPixmap fromImage(const QImage &image, Qt::ImageConversionFlags flags = Qt::AutoColor);
  113. static QPixmap fromImageReader(QImageReader *imageReader, Qt::ImageConversionFlags flags = Qt::AutoColor);
  114. #ifdef Q_COMPILER_RVALUE_REFS
  115. static QPixmap fromImage(QImage &&image, Qt::ImageConversionFlags flags = Qt::AutoColor)
  116. {
  117. return fromImageInPlace(image, flags);
  118. }
  119. #endif
  120. bool load(const QString& fileName, const char *format = Q_NULLPTR, Qt::ImageConversionFlags flags = Qt::AutoColor);
  121. bool loadFromData(const uchar *buf, uint len, const char* format = Q_NULLPTR, Qt::ImageConversionFlags flags = Qt::AutoColor);
  122. inline bool loadFromData(const QByteArray &data, const char* format = Q_NULLPTR, Qt::ImageConversionFlags flags = Qt::AutoColor);
  123. bool save(const QString& fileName, const char* format = Q_NULLPTR, int quality = -1) const;
  124. bool save(QIODevice* device, const char* format = Q_NULLPTR, int quality = -1) const;
  125. bool convertFromImage(const QImage &img, Qt::ImageConversionFlags flags = Qt::AutoColor);
  126. inline QPixmap copy(int x, int y, int width, int height) const;
  127. QPixmap copy(const QRect &rect = QRect()) const;
  128. inline void scroll(int dx, int dy, int x, int y, int width, int height, QRegion *exposed = Q_NULLPTR);
  129. void scroll(int dx, int dy, const QRect &rect, QRegion *exposed = Q_NULLPTR);
  130. #if QT_DEPRECATED_SINCE(5, 0)
  131. QT_DEPRECATED inline int serialNumber() const { return cacheKey() >> 32; }
  132. #endif
  133. qint64 cacheKey() const;
  134. bool isDetached() const;
  135. void detach();
  136. bool isQBitmap() const;
  137. QPaintEngine *paintEngine() const Q_DECL_OVERRIDE;
  138. inline bool operator!() const { return isNull(); }
  139. #if QT_DEPRECATED_SINCE(5, 0)
  140. QT_DEPRECATED inline QPixmap alphaChannel() const;
  141. QT_DEPRECATED inline void setAlphaChannel(const QPixmap &);
  142. #endif
  143. protected:
  144. int metric(PaintDeviceMetric) const Q_DECL_OVERRIDE;
  145. static QPixmap fromImageInPlace(QImage &image, Qt::ImageConversionFlags flags = Qt::AutoColor);
  146. private:
  147. QExplicitlySharedDataPointer<QPlatformPixmap> data;
  148. bool doImageIO(QImageWriter *io, int quality) const;
  149. QPixmap(const QSize &s, int type);
  150. void doInit(int, int, int);
  151. Q_DUMMY_COMPARISON_OPERATOR(QPixmap)
  152. friend class QPlatformPixmap;
  153. friend class QBitmap;
  154. friend class QPaintDevice;
  155. friend class QPainter;
  156. friend class QOpenGLWidget;
  157. friend class QWidgetPrivate;
  158. friend class QRasterBuffer;
  159. #if !defined(QT_NO_DATASTREAM)
  160. friend Q_GUI_EXPORT QDataStream &operator>>(QDataStream &, QPixmap &);
  161. #endif
  162. public:
  163. QPlatformPixmap* handle() const;
  164. public:
  165. typedef QExplicitlySharedDataPointer<QPlatformPixmap> DataPtr;
  166. inline DataPtr &data_ptr() { return data; }
  167. };
  168. Q_DECLARE_SHARED(QPixmap)
  169. inline QPixmap QPixmap::copy(int ax, int ay, int awidth, int aheight) const
  170. {
  171. return copy(QRect(ax, ay, awidth, aheight));
  172. }
  173. inline void QPixmap::scroll(int dx, int dy, int ax, int ay, int awidth, int aheight, QRegion *exposed)
  174. {
  175. scroll(dx, dy, QRect(ax, ay, awidth, aheight), exposed);
  176. }
  177. inline bool QPixmap::loadFromData(const QByteArray &buf, const char *format,
  178. Qt::ImageConversionFlags flags)
  179. {
  180. return loadFromData(reinterpret_cast<const uchar *>(buf.constData()), buf.size(), format, flags);
  181. }
  182. #if QT_DEPRECATED_SINCE(5, 0)
  183. inline QPixmap QPixmap::alphaChannel() const
  184. {
  185. return QPixmap::fromImage(toImage().alphaChannel());
  186. }
  187. inline void QPixmap::setAlphaChannel(const QPixmap &p)
  188. {
  189. QImage image = toImage();
  190. image.setAlphaChannel(p.toImage());
  191. *this = QPixmap::fromImage(image);
  192. }
  193. #endif
  194. /*****************************************************************************
  195. QPixmap stream functions
  196. *****************************************************************************/
  197. #if !defined(QT_NO_DATASTREAM)
  198. Q_GUI_EXPORT QDataStream &operator<<(QDataStream &, const QPixmap &);
  199. Q_GUI_EXPORT QDataStream &operator>>(QDataStream &, QPixmap &);
  200. #endif
  201. #ifndef QT_NO_DEBUG_STREAM
  202. Q_GUI_EXPORT QDebug operator<<(QDebug, const QPixmap &);
  203. #endif
  204. QT_END_NAMESPACE
  205. #endif // QPIXMAP_H