qpixmap.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:11k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the QtGui module of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. #ifndef QPIXMAP_H
  38. #define QPIXMAP_H
  39. #include <QtGui/qpaintdevice.h>
  40. #include <QtGui/qcolor.h>
  41. #include <QtCore/qnamespace.h>
  42. #include <QtCore/qstring.h> // char*->QString conversion
  43. #include <QtGui/qimage.h>
  44. #include <QtGui/qtransform.h>
  45. QT_BEGIN_HEADER
  46. QT_BEGIN_NAMESPACE
  47. QT_MODULE(Gui)
  48. class QImageWriter;
  49. class QColor;
  50. class QVariant;
  51. class QX11Info;
  52. class QPixmapData;
  53. class Q_GUI_EXPORT QPixmap : public QPaintDevice
  54. {
  55. public:
  56.     QPixmap();
  57.     explicit QPixmap(QPixmapData *data);
  58.     QPixmap(int w, int h);
  59.     QPixmap(const QSize &);
  60.     QPixmap(const QString& fileName, const char *format = 0, Qt::ImageConversionFlags flags = Qt::AutoColor);
  61. #ifndef QT_NO_IMAGEFORMAT_XPM
  62.     QPixmap(const char * const xpm[]);
  63. #endif
  64.     QPixmap(const QPixmap &);
  65.     ~QPixmap();
  66.     QPixmap &operator=(const QPixmap &);
  67.     operator QVariant() const;
  68.     bool isNull() const;
  69.     int devType() const;
  70.     int width() const;
  71.     int height() const;
  72.     QSize size() const;
  73.     QRect rect() const;
  74.     int depth() const;
  75.     static int defaultDepth();
  76.     void fill(const QColor &fillColor = Qt::white);
  77.     void fill(const QWidget *widget, const QPoint &ofs);
  78.     inline void fill(const QWidget *widget, int xofs, int yofs) { fill(widget, QPoint(xofs, yofs)); }
  79.     QBitmap mask() const;
  80.     void setMask(const QBitmap &);
  81.     QPixmap alphaChannel() const;
  82.     void setAlphaChannel(const QPixmap &);
  83.     bool hasAlpha() const;
  84.     bool hasAlphaChannel() const;
  85. #ifndef QT_NO_IMAGE_HEURISTIC_MASK
  86.     QBitmap createHeuristicMask(bool clipTight = true) const;
  87. #endif
  88.     QBitmap createMaskFromColor(const QColor &maskColor) const; // ### Qt 5: remove
  89.     QBitmap createMaskFromColor(const QColor &maskColor, Qt::MaskMode mode) const;
  90.     static QPixmap grabWindow(WId, int x=0, int y=0, int w=-1, int h=-1);
  91.     static QPixmap grabWidget(QWidget *widget, const QRect &rect);
  92.     static inline QPixmap grabWidget(QWidget *widget, int x=0, int y=0, int w=-1, int h=-1)
  93.     { return grabWidget(widget, QRect(x, y, w, h)); }
  94.     inline QPixmap scaled(int w, int h, Qt::AspectRatioMode aspectMode = Qt::IgnoreAspectRatio,
  95.                           Qt::TransformationMode mode = Qt::FastTransformation) const
  96.         { return scaled(QSize(w, h), aspectMode, mode); }
  97.     QPixmap scaled(const QSize &s, Qt::AspectRatioMode aspectMode = Qt::IgnoreAspectRatio,
  98.                    Qt::TransformationMode mode = Qt::FastTransformation) const;
  99.     QPixmap scaledToWidth(int w, Qt::TransformationMode mode = Qt::FastTransformation) const;
  100.     QPixmap scaledToHeight(int h, Qt::TransformationMode mode = Qt::FastTransformation) const;
  101.     QPixmap transformed(const QMatrix &, Qt::TransformationMode mode = Qt::FastTransformation) const;
  102.     static QMatrix trueMatrix(const QMatrix &m, int w, int h);
  103.     QPixmap transformed(const QTransform &, Qt::TransformationMode mode = Qt::FastTransformation) const;
  104.     static QTransform trueMatrix(const QTransform &m, int w, int h);
  105.     QImage toImage() const;
  106.     static QPixmap fromImage(const QImage &image, Qt::ImageConversionFlags flags = Qt::AutoColor);
  107.     bool load(const QString& fileName, const char *format = 0, Qt::ImageConversionFlags flags = Qt::AutoColor);
  108.     bool loadFromData(const uchar *buf, uint len, const char* format = 0, Qt::ImageConversionFlags flags = Qt::AutoColor);
  109.     inline bool loadFromData(const QByteArray &data, const char* format = 0, Qt::ImageConversionFlags flags = Qt::AutoColor);
  110.     bool save(const QString& fileName, const char* format = 0, int quality = -1) const;
  111.     bool save(QIODevice* device, const char* format = 0, int quality = -1) const;
  112. #if defined(Q_WS_WIN)
  113.     enum HBitmapFormat {
  114.         NoAlpha,
  115.         PremultipliedAlpha
  116.     };
  117.     HBITMAP toWinHBITMAP(HBitmapFormat format = NoAlpha) const;
  118.     static QPixmap fromWinHBITMAP(HBITMAP hbitmap, HBitmapFormat format = NoAlpha);
  119. #endif
  120. #if defined(Q_WS_MAC)
  121.     CGImageRef toMacCGImageRef() const;
  122.     static QPixmap fromMacCGImageRef(CGImageRef image);
  123. #endif
  124.     inline QPixmap copy(int x, int y, int width, int height) const;
  125.     QPixmap copy(const QRect &rect = QRect()) const;
  126.     int serialNumber() const;
  127.     qint64 cacheKey() const;
  128.     bool isDetached() const;
  129.     void detach();
  130.     inline bool isQBitmap() const { return depth() == 1; }
  131. #if defined(Q_WS_QWS)
  132.     const uchar *qwsBits() const;
  133.     int qwsBytesPerLine() const;
  134.     QRgb *clut() const;
  135.     int numCols() const;
  136. #elif defined(Q_WS_MAC)
  137.     Qt::HANDLE macQDHandle() const;
  138.     Qt::HANDLE macQDAlphaHandle() const;
  139.     Qt::HANDLE macCGHandle() const;
  140. #elif defined(Q_WS_X11)
  141.     static int x11SetDefaultScreen(int screen);
  142.     void x11SetScreen(int screen);
  143.     const QX11Info &x11Info() const;
  144.     Qt::HANDLE x11PictureHandle() const;
  145. #endif
  146. #if defined(Q_WS_X11) || defined(Q_WS_QWS)
  147.     Qt::HANDLE handle() const;
  148. #endif
  149.     QPaintEngine *paintEngine() const;
  150.     inline bool operator!() const { return isNull(); }
  151. protected:
  152.     int metric(PaintDeviceMetric) const;
  153. #ifdef QT3_SUPPORT
  154. public:
  155.     enum ColorMode { Auto, Color, Mono };
  156.     QT3_SUPPORT_CONSTRUCTOR QPixmap(const QString& fileName, const char *format, ColorMode mode);
  157.     QT3_SUPPORT bool load(const QString& fileName, const char *format, ColorMode mode);
  158.     QT3_SUPPORT bool loadFromData(const uchar *buf, uint len, const char* format, ColorMode mode);
  159.     QT3_SUPPORT_CONSTRUCTOR QPixmap(const QImage& image);
  160.     QT3_SUPPORT QPixmap &operator=(const QImage &);
  161.     inline QT3_SUPPORT QImage convertToImage() const { return toImage(); }
  162.     QT3_SUPPORT bool convertFromImage(const QImage &, ColorMode mode);
  163.     QT3_SUPPORT bool convertFromImage(const QImage &img, Qt::ImageConversionFlags flags = Qt::AutoColor)
  164.         { (*this) = fromImage(img, flags); return !isNull(); }
  165.     inline QT3_SUPPORT operator QImage() const { return toImage(); }
  166.     inline QT3_SUPPORT QPixmap xForm(const QMatrix &matrix) const { return transformed(QTransform(matrix)); }
  167.     inline QT3_SUPPORT bool selfMask() const { return false; }
  168. private:
  169.     void resize_helper(const QSize &s);
  170. public:
  171.     inline QT3_SUPPORT void resize(const QSize &s) { resize_helper(s); }
  172.     inline QT3_SUPPORT void resize(int width, int height) { resize_helper(QSize(width, height)); }
  173. #endif
  174. private:
  175.     QPixmapData *data;
  176.     bool doImageIO(QImageWriter *io, int quality) const;
  177.     // ### Qt5: remove the following three lines
  178.     enum Type { PixmapType, BitmapType }; // must match QPixmapData::PixelType
  179.     QPixmap(const QSize &s, Type);
  180.     void init(int, int, Type = PixmapType);
  181.     QPixmap(const QSize &s, int type);
  182.     void init(int, int, int);
  183.     void deref();
  184. #if defined(Q_WS_WIN)
  185.     void initAlphaPixmap(uchar *bytes, int length, struct tagBITMAPINFO *bmi);
  186. #endif
  187.     Q_DUMMY_COMPARISON_OPERATOR(QPixmap)
  188. #ifdef Q_WS_MAC
  189.     friend CGContextRef qt_mac_cg_context(const QPaintDevice*);
  190.     friend CGImageRef qt_mac_create_imagemask(const QPixmap&, const QRectF&);
  191.     friend IconRef qt_mac_create_iconref(const QPixmap&);
  192.     friend QPixmap qt_mac_unmultiplyPixmapAlpha(const QPixmap&);
  193.     friend quint32 *qt_mac_pixmap_get_base(const QPixmap*);
  194.     friend int qt_mac_pixmap_get_bytes_per_line(const QPixmap*);
  195. #endif
  196.     friend class QPixmapData;
  197.     friend class QX11PixmapData;
  198.     friend class QMacPixmapData;
  199.     friend class QBitmap;
  200.     friend class QPaintDevice;
  201.     friend class QPainter;
  202.     friend class QGLWidget;
  203.     friend class QX11PaintEngine;
  204.     friend class QCoreGraphicsPaintEngine;
  205.     friend class QWidgetPrivate;
  206.     friend class QRasterPaintEngine;
  207.     friend class QRasterBuffer;
  208.     friend class QDirect3DPaintEngine;
  209.     friend class QDirect3DPaintEnginePrivate;
  210.     friend class QDetachedPixmap;
  211. #if !defined(QT_NO_DATASTREAM)
  212.     friend Q_GUI_EXPORT QDataStream &operator>>(QDataStream &, QPixmap &);
  213. #endif
  214.     friend Q_GUI_EXPORT qint64 qt_pixmap_id(const QPixmap &pixmap);
  215. public:
  216.     QPixmapData* pixmapData() const;
  217. public:
  218.     typedef QPixmapData * DataPtr;
  219.     inline DataPtr &data_ptr() { return data; }
  220. };
  221. Q_DECLARE_SHARED(QPixmap)
  222. inline QPixmap QPixmap::copy(int ax, int ay, int awidth, int aheight) const
  223. {
  224.     return copy(QRect(ax, ay, awidth, aheight));
  225. }
  226. inline bool QPixmap::loadFromData(const QByteArray &buf, const char *format,
  227.                                   Qt::ImageConversionFlags flags)
  228. {
  229.     return loadFromData(reinterpret_cast<const uchar *>(buf.constData()), buf.size(), format, flags);
  230. }
  231. /*****************************************************************************
  232.  QPixmap stream functions
  233. *****************************************************************************/
  234. #if !defined(QT_NO_DATASTREAM)
  235. Q_GUI_EXPORT QDataStream &operator<<(QDataStream &, const QPixmap &);
  236. Q_GUI_EXPORT QDataStream &operator>>(QDataStream &, QPixmap &);
  237. #endif
  238. /*****************************************************************************
  239.  QPixmap (and QImage) helper functions
  240. *****************************************************************************/
  241. #ifdef QT3_SUPPORT
  242. QT3_SUPPORT Q_GUI_EXPORT void copyBlt(QPixmap *dst, int dx, int dy, const QPixmap *src,
  243.                                     int sx=0, int sy=0, int sw=-1, int sh=-1);
  244. #endif // QT3_SUPPORT
  245. QT_END_NAMESPACE
  246. QT_END_HEADER
  247. #endif // QPIXMAP_H