ch.randelshofer.quaqua.icon.ButtonFocusIcon Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Quaqua Show documentation
Show all versions of Quaqua Show documentation
A Mavenisation of the Quaqua Mac OSX Swing Look and Feel (Java library)
Quaqua Look and Feel (C) 2003-2010, Werner Randelshofer.
Mavenisation by Matt Gumbley, DevZendo.org - for problems with
Mavenisation, see Matt; for issues with Quaqua, see the Quaqua home page.
For full license details, see http://randelshofer.ch/quaqua/license.html
The newest version!
/*
* @(#)ButtonFocusIcon.java
*
* Copyright (c) 2005-2010 Werner Randelshofer, Immensee, Switzerland.
* All rights reserved.
*
* You may not use, copy or modify this file, except in compliance with the
* license agreement you entered into with Werner Randelshofer.
* For details see accompanying license terms.
*/
package ch.randelshofer.quaqua.icon;
import ch.randelshofer.quaqua.*;
import java.awt.*;
import javax.swing.*;
/**
* A focus ring icon with different visuals reflecting the selected state of an
* abstract button.
*
* @author Werner Randelshofer
* @version $Id: ButtonFocusIcon.java 363 2010-11-21 17:41:04Z wrandelshofer $
*/
public class ButtonFocusIcon extends MultiIcon {
private final static int E = 0;
private final static int S = 1;
/**
* Creates a new instance.
* All icons must have the same dimensions.
* If an icon is null, nothing is drawn for this state.
*/
public ButtonFocusIcon(Icon e, Icon s) {
super (new Icon[] {e, s});
}
/**
* Creates a new instance.
* All icons must have the same dimensions.
* If an icon is null, nothing is drawn for this state.
*/
public ButtonFocusIcon(Image[] images) {
super(images);
}
/**
* Creates a new instance.
* All icons must have the same dimensions.
* If an icon is null, nothing is drawn for this state.
*/
public ButtonFocusIcon(Icon[] icons) {
super(icons);
}
/**
* Creates a new instance.
* The icon representations are created lazily from the image.
*/
public ButtonFocusIcon(Image tiledImage, int tileCount, boolean isTiledHorizontaly) {
super(tiledImage, tileCount, isTiledHorizontaly);
}
protected Icon getIcon(Component c) {
Icon icon = null;
if (QuaquaUtilities.isFocused(c) && c.isEnabled()
&& (! (c instanceof AbstractButton) || ((AbstractButton) c).isFocusPainted())) {
ButtonModel model = ((AbstractButton) c).getModel();
if (model.isSelected()) {
icon = icons[S];
} else {
icon = icons[E];
}
}
return icon;
}
protected void generateMissingIcons() {
if (icons.length != 2) {
Icon[] newIcons = new Icon[2];
System.arraycopy(icons, 0, newIcons, 0, Math.min(icons.length, 2));
icons = newIcons;
}
if (icons[S] == null) {
icons[S] = icons[E];
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy