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

MAWT: owned Window can't be focused

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Cannot Reproduce
    • Icon: P3 P3
    • None
    • 6
    • client-libs
    • x86
    • linux

      Run the testcase below. You'll see a Frame with an owned Window. Try to click
      the Window's button with the SPACE. Then click the Frame and return back to the Window.
      Now the Window's button can't be activated with the keyboard.

      -------------------------------------------------------------------
      import java.awt.*;
       
      public class Test {
          static Frame frame = new Frame("Test Frame");
          static Window window = new Window(frame);

          static Button frameButton = new Button("button");
          static Button winButton = new Button("button");
       
          public static void main(String[] args) {
              frame.setBounds(0, 0, 200, 200);
              frame.add(frameButton);

              window.setBounds(300, 0, 160, 160);
              window.add(winButton);

              frame.setVisible(true);
              window.setVisible(true);
          }
      }
      -------------------------------------------------------------------

            serb Sergey Bylokhov
            ant Anton Tarasov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: