Searched defs:autosize (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/macosx/native/sun/awt/
H A DCTrayIcon.h54 - (void) setImage:(NSImage *) imagePtr sizing:(BOOL)autosize; variable
/openjdk7/jdk/src/share/classes/java/awt/
H A DTrayIcon.java91 private boolean autosize; field in class:TrayIcon
377 * @param autosize <code>true</code> to auto-size the image,
381 public void setImageAutoSize(boolean autosize) { argument
382 this.autosize = autosize;
398 return autosize;
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCTrayIcon.java176 private native void setNativeImage(final long model, final long nsimage, final boolean autosize); argument
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXTrayIconPeer.java518 boolean autosize; field in class:XTrayIconPeer.TrayIconCanvas
527 boolean old_autosize = autosize;
528 autosize = target.isImageAutoSize();
530 curW = autosize ? width : image.getWidth(observer);
531 curH = autosize ? height : image.getHeight(observer);
533 super.repaintImage(doClear || (old_autosize != autosize));

Completed in 36 milliseconds