效果
资源
需要几张不同阶段的图标进行切换,这里使用8张。
源码
QTimer通过setInterval设置100毫秒超时时间,每隔100毫秒后进行图标的更换,达到旋转效果。
1 MainWindow::MainWindow(QWidget *parent)
2 : CustomWindow(parent),
3 m_nIndex(1)
4 {
5 m_pLoadingLabel = new QLabel(this);
6 m_pTipLabel = new QLabel(this);
7 m_pTimer = new QTimer(this);
8
9 m_pTipLabel->setText(QString::fromLocal8Bit("拼命加载中..."));
10
11 // 设定超时时间100毫秒
12 m_pTimer->setInterval(100);
13 connect(m_pTimer, &QTimer::timeout, this, &MainWindow::updatePixmap);
14
15 startAnimation();
16 }
1 // 启动定时器
2 void MainWindow::startAnimation()
3 {
4 m_pTimer->start();
5 }
6
7 // 停止定时器
8 void MainWindow::stopAnimation()
9 {
10 m_pTimer->stop();
11 }
12
13 // 更新图标
14 void MainWindow::updatePixmap()
15 {
16 // 若当前图标下标超过8表示到达末尾,重新计数。
17 m_nIndex++;
18 if (m_nIndex > 8)
19 m_nIndex = 1;
20
21 QPixmap pixmap(QString(":/Images/loading%1").arg(m_nIndex));
22 m_pLoadingLabel->setPixmap(pixmap);
23 }