< prev index next >

src/share/classes/java/awt/peer/WindowPeer.java

Print this page
rev 1556 : 6794764: Translucent windows are completely repainted on every paint event, on Windows
6719382: Printing of AWT components on windows is not working
6726866: Repainting artifacts when resizing or dragging JInternalFrames in non-opaque toplevel
6683775: Painting artifacts is seen when panel is made setOpaque(false) for a translucent window
Reviewed-by: anthony, tdv, alexp

*** 59,74 **** * @see Window#setBackground(Color) */ void setOpaque(boolean isOpaque); /** ! * Updates the native part of non-opaque window using ! * the given image with color+alpha values for each pixel. * * @see Window#setBackground(Color) */ ! void updateWindow(BufferedImage backBuffer); /** * Instructs the peer to update the position of the security warning. */ void repositionSecurityWarning(); --- 59,73 ---- * @see Window#setBackground(Color) */ void setOpaque(boolean isOpaque); /** ! * Updates the native part of non-opaque window. * * @see Window#setBackground(Color) */ ! void updateWindow(); /** * Instructs the peer to update the position of the security warning. */ void repositionSecurityWarning();
< prev index next >