< prev index next >

test/javax/swing/plaf/windows/WindowsRootPaneUI/WrongAltProcessing/WrongAltProcessing.java

Print this page


   1 /*
   2  * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25    @bug 8001633 8028271
  26    @summary Wrong alt processing during switching between windows
  27    @author mikhail.cherkasov@oracle.com
  28    @run main WrongAltProcessing
  29 */
  30 
  31 import javax.swing.*;
  32 import java.awt.*;
  33 import java.awt.event.*;
  34 
  35 
  36 public class WrongAltProcessing {
  37 
  38     private static Robot robot;
  39     private static JFrame firstFrame;
  40     private static JFrame secondFrame;
  41     private static JTextField mainFrameTf1;
  42     private static JTextField mainFrameTf2;
  43     private static JTextField secondFrameTf;
  44 
  45     public static void main(String[] args) throws Exception {
  46         try {
  47             UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
  48         } catch (Exception e) {
  49             return;// miss unsupported platforms.
  50         }
  51         SwingUtilities.invokeAndWait(new Runnable() {
  52             @Override
  53             public void run() {
  54                 createWindows();
  55             }
  56         });
  57         robot.waitForIdle();
  58         initRobot();

  59         runScript();
  60         SwingUtilities.invokeLater(new Runnable() {
  61             @Override
  62             public void run() {
  63                 verify();
  64             }
  65         });
  66     }
  67 
  68     private static void verify() {
  69         Component c = DefaultKeyboardFocusManager
  70                 .getCurrentKeyboardFocusManager().getFocusOwner();
  71         if (!(c == mainFrameTf2)) {
  72             throw new RuntimeException("Wrong focus owner.");
  73         }
  74     }
  75 
  76     public static void initRobot() throws AWTException {
  77         robot = new Robot();
  78         robot.setAutoDelay(100);


   1 /*
   2  * Copyright (c) 2012, 2017, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25    @bug 8001633 8028271 8039888
  26    @summary Wrong alt processing during switching between windows
  27    @author mikhail.cherkasov@oracle.com
  28    @run main WrongAltProcessing
  29 */
  30 
  31 import javax.swing.*;
  32 import java.awt.*;
  33 import java.awt.event.*;
  34 
  35 
  36 public class WrongAltProcessing {
  37 
  38     private static Robot robot;
  39     private static JFrame firstFrame;
  40     private static JFrame secondFrame;
  41     private static JTextField mainFrameTf1;
  42     private static JTextField mainFrameTf2;
  43     private static JTextField secondFrameTf;
  44 
  45     public static void main(String[] args) throws Exception {
  46         try {
  47             UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
  48         } catch (Exception e) {
  49             return;// miss unsupported platforms.
  50         }
  51         SwingUtilities.invokeAndWait(new Runnable() {
  52             @Override
  53             public void run() {
  54                 createWindows();
  55             }
  56         });

  57         initRobot();
  58         robot.waitForIdle();
  59         runScript();
  60         SwingUtilities.invokeLater(new Runnable() {
  61             @Override
  62             public void run() {
  63                 verify();
  64             }
  65         });
  66     }
  67 
  68     private static void verify() {
  69         Component c = DefaultKeyboardFocusManager
  70                 .getCurrentKeyboardFocusManager().getFocusOwner();
  71         if (!(c == mainFrameTf2)) {
  72             throw new RuntimeException("Wrong focus owner.");
  73         }
  74     }
  75 
  76     public static void initRobot() throws AWTException {
  77         robot = new Robot();
  78         robot.setAutoDelay(100);


< prev index next >