Searched refs:autosize (Results 1 - 6 of 6) sorted by relevance
/openjdk7/jdk/src/macosx/native/sun/awt/ |
H A D | CTrayIcon.h | 54 - (void) setImage:(NSImage *) imagePtr sizing:(BOOL)autosize; variable
|
H A D | CTrayIcon.m | 102 - (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 D | TrayIcon.java | 91 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 D | WTrayIconPeer.java | 119 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 D | XTrayIconPeer.java | 518 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 D | CTrayIcon.java | 176 private native void setNativeImage(final long model, final long nsimage, final boolean autosize); argument
|
Completed in 1588 milliseconds