Searched refs:autosize (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/macosx/native/sun/awt/
H A DCTrayIcon.h54 - (void) setImage:(NSImage *) imagePtr sizing:(BOOL)autosize; variable
H A DCTrayIcon.m102 - (void) setImage:(NSImage *) imagePtr sizing:(BOOL)autosize{
352 (JNIEnv *env, jobject self, jlong model, jlong imagePtr, jboolean autosize) {
357 [icon setImage:jlong_to_ptr(imagePtr) sizing:autosize];
/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/windows/classes/sun/awt/windows/
H A DWTrayIconPeer.java119 boolean autosize = ((TrayIcon)target).isImageAutoSize();
128 gr.drawImage(image, 0, 0, (autosize ? TRAY_ICON_WIDTH : image.getWidth(observer)),
129 (autosize ? TRAY_ICON_HEIGHT : image.getHeight(observer)), observer);
/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));
/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

Completed in 284 milliseconds