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

1.4 REGRESSION: Launching native dialog from modal dialog causes focus bug

XMLWordPrintable

    • x86
    • windows_nt, windows_2000

      Name: jk109818 Date: 07/14/2003


      FULL PRODUCT VERSION :
      java version "1.4.1_01"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_01-b01)
      Java HotSpot(TM) Client VM (build 1.4.1_01-b01, mixed mode)

      FULL OS VERSION :
      Windows NT Version 4.0

      A DESCRIPTION OF THE PROBLEM :
      We have a print preview dialog which is a JDialog. You can launch a print dialog from the dialog. Print Preview is a modal dialog. The PrinterJob.printDialog() method is called from a separate thread for obvious awt / swing EDT problems. The printDialog when cancelled tries to put the focus back on the main frame again. Ordinarily this should have the effect of putting the focus back on the modal dialog of the main frame. You can then use shortcut keys and accelearators associated with the menu on your mainframe even though you have a modal dialog open. All mouse clicks etc etc are ignored on the main frame.
      On my application I actually get this to reproduce when requesting focus on the modal dialog even but I could not reproduce this on the sample below.

      STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
      Follow source below
      Click file open
      Then click Test button
      Then click cancel.
      Click on the main frame again.
      Click on Alt + f

      EXPECTED VERSUS ACTUAL BEHAVIOR :
      EXPECTED -
      This is a frame with a modal dialog.
      Nothing should happen
      ACTUAL -
      The menuitem appears.

      REPRODUCIBILITY :
      This bug can be reproduced always.

      ---------- BEGIN SOURCE ----------
      import java.awt.Dimension;
      import java.awt.Event;
      import java.awt.FileDialog;
      import java.awt.GraphicsConfiguration;
      import java.awt.HeadlessException;
      import java.awt.PrintJob;
      import java.awt.event.ActionEvent;
      import java.awt.event.ActionListener;
      import java.awt.event.KeyEvent;
      import java.awt.print.PrinterJob;

      import javax.swing.JButton;
      import javax.swing.JDialog;
      import javax.swing.JFrame;
      import javax.swing.JMenu;
      import javax.swing.JMenuBar;
      import javax.swing.JMenuItem;
      import javax.swing.KeyStroke;

      /*
       * Created on 03-Jul-2003
       *
       * To change the template for this generated file go to
       * Window>Preferences>Java>Code Generation>Code and Comments
       */
      /**
       * @author DGowan
       *
       * To change the template for this generated type comment go to
       * Window>Preferences>Java>Code Generation>Code and Comments
       */
      public class TestFrame extends JFrame implements ActionListener
      {
      /**
      * @param title
      * @throws java.awt.HeadlessException
      */
      public TestFrame(String title) throws HeadlessException
      {
      super(title);
      JMenu menu = new JMenu("File");
      menu.setMnemonic('F');
      JMenuItem menuItem1 = new JMenuItem("Open");
      menuItem1.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_N,Event.CTRL_MASK));
      menuItem1.addActionListener(this);
      menu.add(menuItem1);
      JMenuBar menuBar = new JMenuBar();
      menuBar.add(menu);
      this.setJMenuBar(menuBar);

      this.setSize(new Dimension (200,200));
      this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);


      // TODO Auto-generated constructor stub
      }
      public TestFrame(String title, GraphicsConfiguration gc)
      {
      super(title, gc);
      // TODO Auto-generated constructor stub
      }
      public static void main(String[] args)
      {
      TestFrame frame = new TestFrame("Test");
      frame.setVisible(true);

      }

      class MyDialog extends JDialog implements ActionListener
      {
      protected JButton _btn;
      public MyDialog()
      {
      super(TestFrame.this);
      _btn = new JButton("Test");
      _btn.addActionListener(this);
      this.setSize(100,100);

      this.getContentPane().add(_btn);
      this.setModal( true);

      }

      /* (non-Javadoc)
      * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
      */
      public void actionPerformed(ActionEvent e)
      {
      // TODO Auto-generated method stub
      FileThread thread = new FileThread(this);
      thread.start();

      }

      }



      /* (non-Javadoc)
      * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
      */
      public void actionPerformed(ActionEvent e)
      {
      // TODO Auto-generated method stub
      MyDialog dia= new MyDialog();
      dia.setVisible(true);
      }

      class FileThread extends Thread
      {
      JDialog _dia;
      public FileThread (JDialog dia)
      {
      _dia = dia;
      }

      public void run()
      {

      //FileDialog dia = new FileDialog(TestFrame.this);
      //dia.show();
      //TestFrame.this.requestFocus();
      _dia.requestFocus();

      PrinterJob.getPrinterJob().printDialog();
      _dia.requestFocus();
      // TestFrame.this.requestFocus();

      }

      }



      }

      ---------- END SOURCE ----------

      Release Regression From : 1.3.1_06
      The above release value was the last known release where this
      bug was known to work. Since then there has been a regression.

      (Incident Review ID: 190197)
      ======================================================================
      ###@###.### 11/1/04 14:53 GMT

            draskinsunw Daniel Raskin (Inactive)
            jkimsunw Jeffrey Kim (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: