Reputation: 33430
I've been searching the Qt docs for something similar to a GtkSpinner, but found only the possibility to use a QProgressBar with minimum and maximum both set to 0, which however is not what I want.
Is there such a widget in Qt?
Upvotes: 1
Views: 529
Reputation: 42474
QLabel label;
QMovie * movie = new QMovie("animated.gif");
label.setMovie(movie);
movie->start();
As seen in spinner (delay) button thread on QtCentre
Upvotes: 2