-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.2.0
-
x86
-
windows_95
Name: el35337 Date: 09/16/98
1) Run the supplied program. It will print the size and insets of the frame when it repaints. Minimize the frame and then deiconify it. You will see that the right insets are now 160. This is obviously wrong. I'm using JDK 1.2beta4.1
2) Here goes:
import java.awt.Frame;
import java.awt.Graphics;
public class FrameTest extends Frame{
public static void main(String argv[]){
// Build a new frame test
FrameTest ft = new FrameTest();
// Set the size to 500x500
ft.setSize(500,500);
// And make it visible
ft.setVisible(true);
}
public void paint(Graphics g){
super.paint(g);
// Print out the size
System.out.println("Size: " + getSize());
System.out.println("Insets: " + getInsets());
}
}
3) Here was my output:
D:\src\client\com\thememedia\publisher>java FrameTest
Size: java.awt.Dimension[width=500,height=500]
Insets: java.awt.Insets[top=23,left=4,bottom=4,right=4]
Size: java.awt.Dimension[width=500,height=500]
Insets: java.awt.Insets[top=0,left=0,bottom=24,right=160]
4) NA
5) I'm using JDK 1.2 beta 4.1
(Review ID: 38181)
======================================================================
- duplicates
-
JDK-4167248 Contents of JFrame mis-aligned when minimized/maximized
-
- Closed
-