houbysoft
houbysoft

Reputation: 33430

Equivalent of GtkSpinner in Qt?

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

Answers (1)

Piotr Dobrogost
Piotr Dobrogost

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

Related Questions