Searched refs:tmpIcon (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicButtonUI.java238 Icon tmpIcon = null;
256 tmpIcon = b.getDisabledSelectedIcon();
257 if (tmpIcon == null) {
258 tmpIcon = selectedIcon;
262 if (tmpIcon == null) {
263 tmpIcon = b.getDisabledIcon();
266 tmpIcon = b.getPressedIcon();
267 if(tmpIcon != null) {
273 tmpIcon = b.getRolloverSelectedIcon();
274 if (tmpIcon
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaButtonUI.java355 Icon tmpIcon = null;
361 tmpIcon = b.getDisabledSelectedIcon();
363 tmpIcon = b.getDisabledIcon();
366 tmpIcon = b.getPressedIcon();
367 if (tmpIcon == null) {
369 tmpIcon = new ImageIcon(AquaUtils.generateSelectedDarkImage(((ImageIcon)icon).getImage()));
374 tmpIcon = b.getRolloverSelectedIcon();
376 tmpIcon = b.getRolloverIcon();
379 tmpIcon = b.getSelectedIcon();
383 if (tmpIcon
[all...]
H A DAquaFocus.java72 public static Icon createFocusedIcon(final Icon tmpIcon, final Component c, final int slack) { argument
73 return new FocusedIcon(tmpIcon, slack);
/openjdk7/jdk/src/share/demo/jfc/FileChooserDemo/
H A DFileChooserDemo.java756 ImageIcon tmpIcon = new ImageIcon(f.getPath());
757 if (tmpIcon.getIconWidth() > 90) {
759 tmpIcon.getImage().getScaledInstance(90, -1,
762 thumbnail = tmpIcon;

Completed in 32 milliseconds