|
Class Summary |
| DialogWindowForGlasspane |
|
| FoggedGlasspane |
Add the option to fog out any component and optionally place another component on top. |
| GlassDialog |
Dialog: blocks the frame below |
| GlassDialogPanel |
ProgressWindow: basically a GlassDialog (blocks input) but using GlassPanel (no titlebar and border) instead of GlassFrame. |
| GlassFrame |
|
| GlassOptionDialog |
Default support for yes, no, cancel, etc buttons. |
| GlassPane |
This class can be added as glasspane (setGlassPane) or using the JLayeredPane. |
| GlassPanel |
|
| GlassProgressWindow |
ProgressWindow: add the methods to make it into a progress window |
| GlassProgressWindowDot |
Dialog: blocks the frame below |
| GlassWindow |
|
| RefreshGlasspane |
Add the option to show a "refreshing" icon on top of any component
Usage: wrap the original component within a RefreshGlasspane and add that instead of the original component
lSomeContainer.add(lSomeComponent);
becomes:
RefreshGlasspane lRefreshGlasspane = new RefreshGlasspane(lSomeComponent);
lSomeContainer.add(lRefreshGlasspane);
And then:
lRefreshGlasspane.setRefreshing(true); |