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

No component gets the focus when the window becomes visible

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.2.0
    • client-libs



      Name: rk38400 Date: 05/18/98


      The test app given below fails to show a focus
      rectangle on any component if compiled with
      JDK 1.1.6.

      Recompiled with JDK 1.1.5 the 1st button shows a
      focus rectangle as it should. I'm using Swing1.0.2
      for the components.

      import java.awt.*;
      import java.awt.event.*;
      import com.sun.java.swing.*;

      class TestFrame extends JFrame {
        TestFrame() {
          getContentPane().setLayout(new FlowLayout());

          JButton dlgErrBtn = new JButton("Dialog error msg");
          dlgErrBtn.addActionListener(new DlgErrBtnController());
          getContentPane().add(dlgErrBtn);

          getContentPane().add(new JTextField("hello world"));

          JButton dlgInErrBtn = new JButton("Internal Dialog error msg");
          dlgInErrBtn.addActionListener(new DlgInErrBtnController());
          getContentPane().add(dlgInErrBtn);
          
          addWindowListener(new WindowAdapter() {
            public void windowClosing(WindowEvent e) {
              System.exit(0);
            }
          });
          
          Msg.setParent(this);
        }

        class DlgErrBtnController extends AbstractAction {
          public void actionPerformed(ActionEvent evt) {
            Msg.err("Hello World\nWe have bugs\n");
          }
        }

        class DlgInErrBtnController extends AbstractAction {
          public void actionPerformed(ActionEvent evt) {
            Msg.errIn("Hello World\nWe have bugs\n");
          }
        }
      }

      class Msg {
        public static void err(String s) {
          if (frame == null)
            System.out.println(s);
          else
            JOptionPane.showMessageDialog(frame.getContentPane(),s,"Standard Dialog",JOptionPane.INFORMATION_MESSAGE);
        }
        public static void errIn(String s) {
          if (frame == null)
            System.out.println(s);
          else
            JOptionPane.showInternalMessageDialog(frame.getContentPane(),s,"Internal Message Dialog",JOptionPane.INFORMATION_MESSAGE);
        }
        
        public static void setParent(JFrame f) {
          frame = f;
        }
        private static JFrame frame;
      }

      public class TestApp {
        TestApp() throws Exception {
          UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
          frame = new TestFrame();
          frame.setSize(400,300);
          frame.setVisible(true);
        }

        public static void main(String[] argv) {
          try {
             new TestApp();
          }
          catch(Exception e) {
            System.out.println(e);
            e.printStackTrace();
          }
        }

        TestFrame frame;
      }
      (Review ID: 30599)
      ======================================================================

            tballsunw Tom Ball (Inactive)
            rkarsunw Ralph Kar (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: