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

Navigation between JInternalFrames does not work.

XMLWordPrintable

      FULL PRODUCT VERSION :
      1.4.2_04, 1.4.2_06

      ADDITIONAL OS VERSION INFORMATION :
      Windows XP Professional SP2; Windows 2000 SP4

      A DESCRIPTION OF THE PROBLEM :
      When trying to move between JInternalFrames using Ctrl+Alt+F6,
      nothing happens.

      STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
      Repeat-by:
      o compile program
      o start program
      --> program shows two top-level windows, each containing a desktop
              with two JInternalFrames, each containing one JTextField
      o klick in window 1 in a textfield
      o press CTRL-ALT-F6 to select the next JInternalFrame
      --> the next internal frame is selected
      o klick in window 2 in a textfield
      o press Ctrl-ALT-F6 to select the next JinternalFrame
      --> nothing happens; the next JInternalFrame is not selected


      EXPECTED VERSUS ACTUAL BEHAVIOR :
      EXPECTED -
      I expected to be able to move between the JInternalFrames.
      ACTUAL -
      Could not move between the JInternalFrames.

      REPRODUCIBILITY :
      This bug can be reproduced always.

      ---------- BEGIN SOURCE ----------
      import java.awt.*;
      import javax.swing.*;

      public class T01 {

      public static void main(String[] av) {
      SwingUtilities.invokeLater(new Runnable() {
      public void run() {
      T01 t = new T01();
      t.work();
      }
      });
      }

      void work() {
      JFrame f = makeFrame("Test-F1", "DT-1");
      f.pack();
      f.setVisible(true);

      f = makeFrame("Test-F2", "DT-2");
      f.move(200, 200);
      f.pack();
      f.setVisible(true);
      }

      JFrame makeFrame(String title, String prefix) {
      JFrame f = new JFrame(title);
      Container cont = f.getContentPane();
      cont.setLayout(new BorderLayout());

      JDesktopPane dtp = new JDesktopPane();
      dtp.setName(prefix);
      dtp.setPreferredSize(new Dimension(400,300));
      dtp.setVisible(true);
      cont.add(dtp, BorderLayout.CENTER);

      JInternalFrame iframe = makeInternalFrame(prefix, "1");
      dtp.add(iframe, JLayeredPane.DEFAULT_LAYER, 0);
      iframe.pack();
      iframe.setVisible(true);

      iframe = makeInternalFrame(prefix,"2");
      dtp.add(iframe, JLayeredPane.DEFAULT_LAYER, 0);
      iframe.move(100, 100);
      iframe.pack();
      iframe.setVisible(true);

      return f;
      }

      private JInternalFrame makeInternalFrame(String prefix, String suffix) {
      JInternalFrame iframe = new JInternalFrame("IFrame-"+prefix+"-"+suffix, true, true, true, true);
      iframe.setName("IF-"+prefix+"-"+suffix);
      Container cont = iframe.getContentPane();
      cont.setLayout(new BorderLayout());
      cont.add(makePanel(prefix, suffix), BorderLayout.CENTER);

      return iframe;
      }

      JPanel makePanel(String prefix, String suffix) {

      JPanel p = new JPanel();

      JTextField tf = new JTextField(16);
      tf.setName("TF1-"+prefix+"-"+suffix);
      p.add(tf);

      return p;
      }
      }

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

      CUSTOMER SUBMITTED WORKAROUND :
      BasicDesktopPaneUI uses a cache for InternalFrames. This cache is declared static but used to hold info for a desktop instance only. If you have two desktops d1 and d2 with the same number of InternalFrames, the current
      InternalFrame (in d2) is not found in the cache (containing InternalFrames from d1).
      ###@###.### 2005-1-12 18:26:29 GMT

            mbronsonsunw Mike Bronson (Inactive)
            gmanwanisunw Girish Manwani (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Imported:
              Indexed: