-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.1.6
-
x86
-
windows_nt
Name: bk70084 Date: 05/11/98
in the jdk1.1.6, if the bounds of a dialog are
set with the setBounds(Rectangle) method, the
bounds after the dialog becomes visible has
a width and/or height inconsistent with the
bounds initially set.
run the program below with jdk1.1.6 (this bug
does not occur in jdk1.1.5):
--- source begin ---
import java.awt.*;
import java.awt.event.*;
public class WinBoundTest extends Dialog implements WindowListener
{
WinBoundTest(Frame f)
{
super(f,"WinBoundTest");
Rectangle bound = new Rectangle(50,50,100,100);
setBounds(bound);
System.out.println("initial bounds = ("+bound.x+
","+bound.y+","+bound.width+","+bound.height+")");
addWindowListener(this);
}
public static void main(String[] arg)
{
Frame f = new Frame("testFrame");
f.setBounds(0,0,400,300);
f.setVisible(true);
WinBoundTest w = new WinBoundTest(f);
w.setVisible(true);
}
public void windowActivated(WindowEvent e)
{
Rectangle bound = getBounds();
System.out.println("active bounds = ("+bound.x+
","+bound.y+","+bound.width+","+bound.height+")");
}
public void windowClosing(WindowEvent e)
{
Rectangle bound = getBounds();
System.out.println("final bounds = ("+bound.x+
","+bound.y+","+bound.width+","+bound.height+")");
System.exit(0);
}
public void windowDeactivated(WindowEvent e){ }
public void windowClosed(WindowEvent e){ }
public void windowOpened(WindowEvent e){ }
public void windowIconified(WindowEvent e){ }
public void windowDeiconified(WindowEvent e){ }
}
--- source end ---
(Review ID: 29151)
======================================================================
- duplicates
-
JDK-4135218 NT: Dialogs created 2 pixels too small first time packed/shown on 1.1.6
-
- Closed
-