Reputation: 6140
I'm looking for some Java library/ class which has two functionalities:
I try to find some opensource library, but I couldn't.
I don't want to integrate JavaFX.
Do you know maybe of some good libraries which handle the cover behaviour in a nice way.
Upvotes: 1
Views: 570
Reputation: 109823
- I wan't to gray out whole JFrame content during long term operation.
- Show the wait indicator as a layer on this grayed out JFrame.
use JLayer(best of ways) or GlassPane,
put there JLabel with
animated gif Icon
few Icons invoked from Swing Timer
create an animations (BufferedImage
) by using paintComponent
repainted from Swing Timer
Upvotes: 1