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

New Focus is not working for components in JSplitPane.

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P2 P2
    • None
    • 1.4.0
    • client-libs

      Run the attached program on b36. The button on the right panel never receives focus when "requestFocus" or "requestFocusInWindow" is called. In fact, even clicking on the button in the right panel will never have a FOCUS_GAINED event fired. The problem seems to start on b35 or b36.

      -------------------------------------------------------------

      import javax.swing.*;
      import java.awt.*;
      import java.awt.event.*;

      public class NestedPanels extends JFrame {

          private JSplitPane split;
          private JPanel leftPanel, rightPanel;
          private JButton leftButton, rightButton;

          public static void main(String[] args) {
              new NestedPanels();
          }

          public NestedPanels() {
              leftButton = new JButton("Left Button");
              rightButton = new JButton("Right Button");
              rightButton.addFocusListener(new FocusListener() {
                  public void focusGained(FocusEvent e) {
                      System.out.println("Focus Gained");
                  }

                  public void focusLost(FocusEvent e) {}
              });

              leftPanel = new JPanel();
              rightPanel = new JPanel();

              leftPanel.add(leftButton);
              rightPanel.add(rightButton);

              split = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, leftPanel, rightPanel);

              setContentPane(split);

              setSize(300, 300);
              show();

              split.setDividerLocation(0.5);

              while(!rightButton.isVisible()) {
                  try {
                      Thread.sleep(1000);
                  } catch(Exception e) {
                      e.printStackTrace();
                  }
              }

              rightButton.requestFocusInWindow();
          }
      }

      -------------------------------------------------------------

      edmund.lou@eng 2000-10-15
      ----------------------------------------

            dmendenhsunw David Mendenhall (Inactive)
            elousunw Edmund Lou (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: