qmovie.h 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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 QMOVIE_H
  40. #define QMOVIE_H
  41. #include <QtCore/qobject.h>
  42. #ifndef QT_NO_MOVIE
  43. #include <QtCore/qbytearray.h>
  44. #include <QtCore/qlist.h>
  45. #include <QtGui/qimagereader.h>
  46. QT_BEGIN_NAMESPACE
  47. class QByteArray;
  48. class QColor;
  49. class QIODevice;
  50. class QImage;
  51. class QPixmap;
  52. class QRect;
  53. class QSize;
  54. class QMoviePrivate;
  55. class Q_GUI_EXPORT QMovie : public QObject
  56. {
  57. Q_OBJECT
  58. Q_DECLARE_PRIVATE(QMovie)
  59. Q_PROPERTY(int speed READ speed WRITE setSpeed)
  60. Q_PROPERTY(CacheMode cacheMode READ cacheMode WRITE setCacheMode)
  61. public:
  62. enum MovieState {
  63. NotRunning,
  64. Paused,
  65. Running
  66. };
  67. Q_ENUM(MovieState)
  68. enum CacheMode {
  69. CacheNone,
  70. CacheAll
  71. };
  72. Q_ENUM(CacheMode)
  73. explicit QMovie(QObject *parent = Q_NULLPTR);
  74. explicit QMovie(QIODevice *device, const QByteArray &format = QByteArray(), QObject *parent = Q_NULLPTR);
  75. explicit QMovie(const QString &fileName, const QByteArray &format = QByteArray(), QObject *parent = Q_NULLPTR);
  76. ~QMovie();
  77. static QList<QByteArray> supportedFormats();
  78. void setDevice(QIODevice *device);
  79. QIODevice *device() const;
  80. void setFileName(const QString &fileName);
  81. QString fileName() const;
  82. void setFormat(const QByteArray &format);
  83. QByteArray format() const;
  84. void setBackgroundColor(const QColor &color);
  85. QColor backgroundColor() const;
  86. MovieState state() const;
  87. QRect frameRect() const;
  88. QImage currentImage() const;
  89. QPixmap currentPixmap() const;
  90. bool isValid() const;
  91. bool jumpToFrame(int frameNumber);
  92. int loopCount() const;
  93. int frameCount() const;
  94. int nextFrameDelay() const;
  95. int currentFrameNumber() const;
  96. int speed() const;
  97. QSize scaledSize();
  98. void setScaledSize(const QSize &size);
  99. CacheMode cacheMode() const;
  100. void setCacheMode(CacheMode mode);
  101. Q_SIGNALS:
  102. void started();
  103. void resized(const QSize &size);
  104. void updated(const QRect &rect);
  105. void stateChanged(QMovie::MovieState state);
  106. void error(QImageReader::ImageReaderError error);
  107. void finished();
  108. void frameChanged(int frameNumber);
  109. public Q_SLOTS:
  110. void start();
  111. bool jumpToNextFrame();
  112. void setPaused(bool paused);
  113. void stop();
  114. void setSpeed(int percentSpeed);
  115. private:
  116. Q_DISABLE_COPY(QMovie)
  117. Q_PRIVATE_SLOT(d_func(), void _q_loadNextFrame())
  118. };
  119. QT_END_NAMESPACE
  120. #endif // QT_NO_MOVIE
  121. #endif // QMOVIE_H