Fetch the repository succeeded.
This action will force synchronization from LibQQt应用程序开发组织/LibQQt, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
#ifndef QQTGIFWIDGET_H
#define QQTGIFWIDGET_H
#include <qqtwidget.h>
#include <qqt-local.h>
#include <qqtcore.h>
#include <QMovie>
#include <QTimer>
class QQTSHARED_EXPORT QQtGifWidget : public QQtWidget
{
Q_OBJECT
public:
explicit QQtGifWidget ( QWidget* parent = nullptr );
virtual ~QQtGifWidget() {}
void setGifFile ( QString gifFile );
signals:
public slots:
private:
QMovie* m_movie;
QTimer* m_frameTimer;
private slots:
void slotFramePlayback();
};
#endif // QQTGIFWIDGET_H
Sign in for post a comment
Comment ( 0 )