Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4137256

jdk1.1.6 bug: setting/getting Dialog bounds inconsistent

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.1.6
    • client-libs
    • 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)
      ======================================================================

            rkhansunw Robi Khan (Inactive)
            bklocksunw Brian Klock (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: