-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplaybutton.cpp
53 lines (46 loc) · 1.69 KB
/
playbutton.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#include "playbutton.h"
#include<QPropertyAnimation>
#include<QDebug>
PlayButton::PlayButton(QString normalImg,QString pressImg)
{
this-> normalImgPath=normalImg;
this-> pressImgPath=pressImg;
QPixmap pix;
bool ret=pix.load(this->normalImgPath);
if(!ret){
QString str=QString("1% 图片加载失败").arg(this->normalImgPath);
qDebug()<<str;
return;
}
this->setFixedSize(pix.width(),pix.height());//pix.width(),pix.height();
//设置不规则图片的样式
this->setStyleSheet("QPushButton{border:0px;}");
//设置图标
this->setIcon(pix);
//设置图片大小
this->setIconSize(QSize(pix.width(),pix.height()));
}
void PlayButton::exchange(){
QPropertyAnimation *animation=new QPropertyAnimation(this,"geometry");
//设定时间间隔
animation->setDuration(300);
//设定动画对象起始位置
animation->setStartValue(QRect(this->x(),this->y(),this->width(),this->height()));
//设定动画对象结束位置;
animation->setEndValue(QRect(this->x(),this->y()+10,this->width(),this->height()));
animation->setEasingCurve(QEasingCurve::OutBounce);
//执行动画
animation->start();
}
void PlayButton::exchange2(){
QPropertyAnimation *animation=new QPropertyAnimation(this,"geometry");
//设定时间间隔
animation->setDuration(300);
//设定动画对象起始位置
animation->setStartValue(QRect(this->x(),this->y()+10,this->width(),this->height()));
//设定动画对象结束位置;
animation->setEndValue(QRect(this->x(),this->y(),this->width(),this->height()));
animation->setEasingCurve(QEasingCurve::OutBounce);
//执行动画
animation->start();
}