List of utility methods to do ImageIcon
JProgressBar | showLogoProgressBar(ImageIcon logo, int steps) Shows progress bar with logo JProgressBar jpb = new JProgressBar(); jpb.setMinimum(0); jpb.setMaximum(steps); JWindow pBarWin = new JWindow(); JLabel jl = new JLabel(logo); JPanel jp = new JPanel(); jp.setBorder(new SoftBevelBorder(SoftBevelBorder.RAISED)); GridBagLayout layout = new GridBagLayout(); ... |
void | showSplash(ImageIcon image, int milliseconds) DOCUMENT ME! showSplash(image, milliseconds, true); |
void | showSplash(ImageIcon image, int milliseconds) show Splash showSplash(image, milliseconds, true); |
ImageIcon | toDisabledIcon(ImageIcon icon) to Disabled Icon return new ImageIcon(GrayFilter.createDisabledImage((icon).getImage())); |
List | toImagesList(final List extends ImageIcon> imageIcons) Returns Images list instead of ImageIcons list final List<Image> images = new ArrayList<Image>(imageIcons.size()); for (final ImageIcon imageIcon : imageIcons) { images.add(imageIcon.getImage()); return images; |