< prev index next >

test/java/awt/keyboard/AllKeyCode/AllKeyCode.java

Print this page




   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 /*
  25   @test
  26   @bug 8149456 8147834 8150230
  27   @requires os.family == "mac"
  28   @summary KeyEvents for all keys
  29   @run main AllKeyCode
  30 */
  31 
  32 import java.awt.AWTException;
  33 import java.awt.GridBagLayout;
  34 import java.awt.Robot;
  35 import java.awt.event.KeyEvent;
  36 import java.awt.event.KeyListener;
  37 import java.awt.Frame;
  38 import java.awt.TextArea;
  39 
  40 public class AllKeyCode extends Frame {
  41 
  42     private static Frame frame;
  43     private static TextArea textArea;
  44     private static KeyListener keyListener;
  45     private static int allKeyArr[];
  46     private static int keyPressedIndex;
  47 
  48     AllKeyCode() {
  49         AllKeyCode.allKeyArr = new int[] {
  50             KeyEvent.VK_BACK_SPACE,
  51             KeyEvent.VK_TAB,
  52             KeyEvent.VK_ENTER,
  53             KeyEvent.VK_CLEAR,


 132             KeyEvent.VK_F5,
 133             KeyEvent.VK_F6,
 134             KeyEvent.VK_F7,
 135             KeyEvent.VK_F8,
 136             KeyEvent.VK_F9,
 137             KeyEvent.VK_F10,
 138             KeyEvent.VK_F11,
 139             KeyEvent.VK_F12,
 140             KeyEvent.VK_DELETE,
 141             KeyEvent.VK_HELP,
 142             KeyEvent.VK_META,
 143             KeyEvent.VK_BACK_QUOTE,
 144             KeyEvent.VK_QUOTE,
 145             KeyEvent.VK_F13,
 146             KeyEvent.VK_F14,
 147             KeyEvent.VK_F15,
 148             KeyEvent.VK_F16,
 149             KeyEvent.VK_F17,
 150             KeyEvent.VK_F18,
 151             KeyEvent.VK_F19,
 152             KeyEvent.VK_F20

 153         };
 154 
 155         keyPressedIndex = -1;
 156     }
 157 
 158     private void createAndShowGUI() {
 159         frame = new Frame("Function Key Keycodes");
 160         textArea = new TextArea();
 161         textArea.setFocusable(true);
 162         frame.add(textArea);
 163         frame.pack();
 164         frame.setSize(200, 200);
 165 
 166         textArea.addKeyListener(keyListener = new KeyListener() {
 167 
 168             @Override
 169             public void keyTyped(KeyEvent ke) {
 170             }
 171 
 172             @Override




   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 /*
  25  @test
  26  @bug 8149456 8147834 8150230 8155740
  27  @requires os.family == "mac"
  28  @summary Tests key codes for all keys supported in Java for Mac OS X.
  29  @run main AllKeyCode
  30  */
  31 
  32 import java.awt.AWTException;

  33 import java.awt.Robot;
  34 import java.awt.event.KeyEvent;
  35 import java.awt.event.KeyListener;
  36 import java.awt.Frame;
  37 import java.awt.TextArea;
  38 
  39 public class AllKeyCode extends Frame {
  40 
  41     private static Frame frame;
  42     private static TextArea textArea;
  43     private static KeyListener keyListener;
  44     private static int allKeyArr[];
  45     private static int keyPressedIndex;
  46 
  47     AllKeyCode() {
  48         AllKeyCode.allKeyArr = new int[] {
  49             KeyEvent.VK_BACK_SPACE,
  50             KeyEvent.VK_TAB,
  51             KeyEvent.VK_ENTER,
  52             KeyEvent.VK_CLEAR,


 131             KeyEvent.VK_F5,
 132             KeyEvent.VK_F6,
 133             KeyEvent.VK_F7,
 134             KeyEvent.VK_F8,
 135             KeyEvent.VK_F9,
 136             KeyEvent.VK_F10,
 137             KeyEvent.VK_F11,
 138             KeyEvent.VK_F12,
 139             KeyEvent.VK_DELETE,
 140             KeyEvent.VK_HELP,
 141             KeyEvent.VK_META,
 142             KeyEvent.VK_BACK_QUOTE,
 143             KeyEvent.VK_QUOTE,
 144             KeyEvent.VK_F13,
 145             KeyEvent.VK_F14,
 146             KeyEvent.VK_F15,
 147             KeyEvent.VK_F16,
 148             KeyEvent.VK_F17,
 149             KeyEvent.VK_F18,
 150             KeyEvent.VK_F19,
 151             KeyEvent.VK_F20,
 152             KeyEvent.VK_ALT_GRAPH
 153         };
 154 
 155         keyPressedIndex = -1;
 156     }
 157 
 158     private void createAndShowGUI() {
 159         frame = new Frame("Function Key Keycodes");
 160         textArea = new TextArea();
 161         textArea.setFocusable(true);
 162         frame.add(textArea);
 163         frame.pack();
 164         frame.setSize(200, 200);
 165 
 166         textArea.addKeyListener(keyListener = new KeyListener() {
 167 
 168             @Override
 169             public void keyTyped(KeyEvent ke) {
 170             }
 171 
 172             @Override


< prev index next >