qpicture.h 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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 QPICTURE_H
  40. #define QPICTURE_H
  41. #include <QtCore/qiodevice.h>
  42. #include <QtCore/qstringlist.h>
  43. #include <QtCore/qsharedpointer.h>
  44. #include <QtGui/qpaintdevice.h>
  45. QT_BEGIN_NAMESPACE
  46. #ifndef QT_NO_PICTURE
  47. class QPicturePrivate;
  48. class Q_GUI_EXPORT QPicture : public QPaintDevice
  49. {
  50. Q_DECLARE_PRIVATE(QPicture)
  51. public:
  52. explicit QPicture(int formatVersion = -1);
  53. QPicture(const QPicture &);
  54. ~QPicture();
  55. bool isNull() const;
  56. int devType() const Q_DECL_OVERRIDE;
  57. uint size() const;
  58. const char* data() const;
  59. virtual void setData(const char* data, uint size);
  60. bool play(QPainter *p);
  61. bool load(QIODevice *dev, const char *format = Q_NULLPTR);
  62. bool load(const QString &fileName, const char *format = Q_NULLPTR);
  63. bool save(QIODevice *dev, const char *format = Q_NULLPTR);
  64. bool save(const QString &fileName, const char *format = Q_NULLPTR);
  65. QRect boundingRect() const;
  66. void setBoundingRect(const QRect &r);
  67. QPicture& operator=(const QPicture &p);
  68. #ifdef Q_COMPILER_RVALUE_REFS
  69. inline QPicture &operator=(QPicture &&other) Q_DECL_NOEXCEPT
  70. { qSwap(d_ptr, other.d_ptr); return *this; }
  71. #endif
  72. inline void swap(QPicture &other) Q_DECL_NOEXCEPT
  73. { d_ptr.swap(other.d_ptr); }
  74. void detach();
  75. bool isDetached() const;
  76. friend Q_GUI_EXPORT QDataStream &operator<<(QDataStream &in, const QPicture &p);
  77. friend Q_GUI_EXPORT QDataStream &operator>>(QDataStream &in, QPicture &p);
  78. static const char* pictureFormat(const QString &fileName);
  79. static QList<QByteArray> inputFormats();
  80. static QList<QByteArray> outputFormats();
  81. static QStringList inputFormatList();
  82. static QStringList outputFormatList();
  83. QPaintEngine *paintEngine() const Q_DECL_OVERRIDE;
  84. protected:
  85. QPicture(QPicturePrivate &data);
  86. int metric(PaintDeviceMetric m) const Q_DECL_OVERRIDE;
  87. private:
  88. bool exec(QPainter *p, QDataStream &ds, int i);
  89. QExplicitlySharedDataPointer<QPicturePrivate> d_ptr;
  90. friend class QPicturePaintEngine;
  91. friend class QAlphaPaintEngine;
  92. friend class QPreviewPaintEngine;
  93. public:
  94. typedef QExplicitlySharedDataPointer<QPicturePrivate> DataPtr;
  95. inline DataPtr &data_ptr() { return d_ptr; }
  96. };
  97. Q_DECLARE_SHARED(QPicture)
  98. #ifndef QT_NO_PICTUREIO
  99. class QIODevice;
  100. class QPictureIO;
  101. typedef void (*picture_io_handler)(QPictureIO *); // picture IO handler
  102. struct QPictureIOData;
  103. class Q_GUI_EXPORT QPictureIO
  104. {
  105. public:
  106. QPictureIO();
  107. QPictureIO(QIODevice *ioDevice, const char *format);
  108. QPictureIO(const QString &fileName, const char *format);
  109. ~QPictureIO();
  110. const QPicture &picture() const;
  111. int status() const;
  112. const char *format() const;
  113. QIODevice *ioDevice() const;
  114. QString fileName() const;
  115. int quality() const;
  116. QString description() const;
  117. const char *parameters() const;
  118. float gamma() const;
  119. void setPicture(const QPicture &);
  120. void setStatus(int);
  121. void setFormat(const char *);
  122. void setIODevice(QIODevice *);
  123. void setFileName(const QString &);
  124. void setQuality(int);
  125. void setDescription(const QString &);
  126. void setParameters(const char *);
  127. void setGamma(float);
  128. bool read();
  129. bool write();
  130. static QByteArray pictureFormat(const QString &fileName);
  131. static QByteArray pictureFormat(QIODevice *);
  132. static QList<QByteArray> inputFormats();
  133. static QList<QByteArray> outputFormats();
  134. static void defineIOHandler(const char *format,
  135. const char *header,
  136. const char *flags,
  137. picture_io_handler read_picture,
  138. picture_io_handler write_picture);
  139. private:
  140. Q_DISABLE_COPY(QPictureIO)
  141. void init();
  142. QPictureIOData *d;
  143. };
  144. #endif //QT_NO_PICTUREIO
  145. /*****************************************************************************
  146. QPicture stream functions
  147. *****************************************************************************/
  148. #ifndef QT_NO_DATASTREAM
  149. Q_GUI_EXPORT QDataStream &operator<<(QDataStream &, const QPicture &);
  150. Q_GUI_EXPORT QDataStream &operator>>(QDataStream &, QPicture &);
  151. #endif
  152. #endif // QT_NO_PICTURE
  153. QT_END_NAMESPACE
  154. #endif // QPICTURE_H