手机酷狗音乐在播放的时候,中间有一个旋转图标,显示播放进度,如下所示。
Qt模仿酷狗音乐的播放图标效果图:
头文件
#ifndef QWHKUGOUMUSICLABEL_H
#define QWHKUGOUMUSICLABEL_H
/*
* 模仿酷狗音乐的音乐播放图标
* 支持缩放
*/
#include <QWidget>
#include <QPainter>
#include <QPropertyAnimation>
#include <QTimer>
#include <QPixmap>
class QWHKuGouMusicLabel : public QWidget
{
Q_OBJECT
Q_ENUMS(State)
Q_PROPERTY(int m_rotate READ getRotate WRITE setRotate)
public:
enum State
{
Stopped, //停止
Paused, //暂停
Running, //运行