QLabel
でアニメーション化された小さな GIF がありQMovie
、GIF のアニメーションが完了したら、Qlabel
. 私はこれを試しましたが、うまくいきません:
QMovie *movie = new QMovie("countdown.gif");
QLabel *processLabel = new QLabel(this);
processLabel->setMovie(movie);
movie->start();
QTimer::singleShot(1000, this, SLOT(movie_finished(backgroundLabel)));
ここに私の機能があります:
void movie_finished(QLabel *processLabel){
processLabel->deleteLater();
}