1 /*
   2  * Copyright (c) 2015, 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 7172652
  26    @summary With JDK 1.7 text field does not obtain focus when using mnemonic Alt/Key combin
  27    @author Semyon Sadetsky
  28    @library /lib/testlibrary
  29    @build jdk.testlibrary.OSInfo
  30    @run main bug7172652
  31   */
  32 
  33 import javax.swing.*;
  34 import javax.swing.event.ChangeEvent;
  35 import javax.swing.event.ChangeListener;
  36 import java.awt.*;
  37 import java.awt.event.KeyEvent;
  38 import jdk.testlibrary.OSInfo;
  39 
  40 public class bug7172652  {
  41 
  42     private static JMenu menu;
  43     private static JFrame frame;
  44     private static Boolean selected;
  45 
  46     public static void main(String[] args) throws Exception {
  47         if (OSInfo.getOSType() != OSInfo.OSType.WINDOWS) {
  48             System.out.println("ok");
  49             return;
  50         }
  51         UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
  52         SwingUtilities.invokeAndWait(new Runnable() {
  53             @Override
  54             public void run() {
  55                 setup();
  56             }
  57         });
  58 
  59         test();
  60         SwingUtilities.invokeLater(new Runnable() {
  61             @Override
  62             public void run() {
  63                 frame.dispose();
  64             }
  65         });
  66     }
  67 
  68     private static void test() throws Exception {
  69         SwingUtilities.invokeAndWait(new Runnable() {
  70             @Override
  71             public void run() {
  72                 menu.getModel().addChangeListener(new ChangeListener() {
  73                     @Override
  74                     public void stateChanged(ChangeEvent e) {
  75                         selected = menu.isSelected();
  76                     }
  77                 });
  78             }
  79         });
  80 
  81         Robot robot = new Robot();
  82         robot.setAutoDelay(200);
  83 
  84         robot.keyPress(KeyEvent.VK_ALT);
  85         robot.keyPress(KeyEvent.VK_F);
  86         robot.keyRelease(KeyEvent.VK_F);
  87         robot.keyRelease(KeyEvent.VK_ALT);
  88 
  89         robot.waitForIdle();
  90         if( selected != null ) {
  91             throw new RuntimeException("Menu is notified selected= " + selected);
  92         }
  93 
  94         robot.keyPress(KeyEvent.VK_ALT);
  95         robot.keyPress(KeyEvent.VK_F);
  96         robot.keyRelease(KeyEvent.VK_F);
  97         robot.keyRelease(KeyEvent.VK_ALT);
  98         if( selected != null ) {
  99             throw new RuntimeException("Menu is notified selected= " + selected);
 100         }
 101 
 102         robot.waitForIdle();
 103 
 104         robot.keyPress(KeyEvent.VK_ALT);
 105         robot.keyPress(KeyEvent.VK_F);
 106         robot.keyRelease(KeyEvent.VK_F);
 107         robot.keyRelease(KeyEvent.VK_ALT);
 108         if( selected != null ) {
 109             throw new RuntimeException("Menu is notified selected= " + selected);
 110         }
 111 
 112         robot.waitForIdle();
 113 
 114         robot.keyPress(KeyEvent.VK_ALT);
 115         robot.keyPress(KeyEvent.VK_F);
 116         robot.keyRelease(KeyEvent.VK_F);
 117         robot.keyRelease(KeyEvent.VK_ALT);
 118         if( selected != null ) {
 119             throw new RuntimeException("Menu is notified selected= " + selected);
 120         }
 121 
 122         robot.waitForIdle();
 123 
 124         System.out.printf("ok");
 125     }
 126 
 127     private static void setup() {
 128         JLabel firstLbl = new JLabel("First name");
 129         JLabel lastLbl = new JLabel("Last name");
 130         JMenuBar menuBar = new JMenuBar();
 131 
 132         JTextField firstTxtFld = new JTextField(20);
 133         JTextField lastTxtFld = new JTextField(20);
 134         JDesktopPane desktopPane = new JDesktopPane();
 135         JInternalFrame iframe = new JInternalFrame("A frame", true, true, true, true);
 136 
 137         // Set an initial size
 138         iframe.setSize(200, 220);
 139 
 140         // By default, internal frames are not visible; make it visible
 141         iframe.setVisible(true);
 142 
 143         JPanel pane = new JPanel();
 144         pane.setLayout(new FlowLayout());
 145 
 146         pane.add(firstLbl);
 147         pane.add(firstTxtFld);
 148         pane.add(lastLbl);
 149         pane.add(lastTxtFld);
 150 
 151         firstLbl.setLabelFor(firstTxtFld);
 152         firstLbl.setDisplayedMnemonic('F');
 153 
 154         lastLbl.setLabelFor(lastTxtFld);
 155         lastLbl.setDisplayedMnemonic('L');
 156 
 157         iframe.getContentPane().add(pane);
 158         iframe.setJMenuBar(menuBar);
 159         menu = new JMenu("FirstMenu");
 160         //m.setMnemonic('i');
 161         menuBar.add(menu);
 162         desktopPane.add(iframe);
 163 
 164         frame = new JFrame();
 165         frame.setUndecorated(true);
 166         frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
 167         frame.getContentPane().add(desktopPane);
 168         frame.setSize(300, 300);
 169         frame.setVisible(true);
 170     }
 171 
 172 }