mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
23 lines
406 B
C++
23 lines
406 B
C++
#ifndef QQTANIMATION_H
|
|
#define QQTANIMATION_H
|
|
|
|
|
|
#include <QPauseAnimation>
|
|
#include <QParallelAnimationGroup>
|
|
#include <QSequentialAnimationGroup>
|
|
#include <QPropertyAnimation>
|
|
#include "qqtdefine.h"
|
|
|
|
class QQTAnimation : public QParallelAnimationGroup
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit QQTAnimation(QObject *parent = nullptr);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
};
|
|
|
|
#endif // QQTANIMATION_H
|