Endless progress / spinner component

Is there an endless progress / spinner component for juce? I thought there was one but now I can’t find it.

1 Like

I had this question before.
What works is to create a ProgressBar and set the progress value it reads to -1.0 before passing it to the ProgressBar constructor. This will create an endless spinning progress Component. This works because the default look & feel has implemented this feature.

1 Like

I think that only works while the size of the component is square. So same width as height.

LookAndFeel:: drawSpinningWaitAnimation()

Rail

1 Like