jdk/src/java.desktop/share/classes/javax/swing/KeyboardManager.java
author aghaisas
Mon, 10 Jul 2017 14:55:29 +0530
changeset 47151 362dcbee0613
parent 43722 25ba19c20260
permissions -rw-r--r--
6919529: NPE from MultiUIDefaults.getUIError Reviewed-by: aghaisas, psadhukhan, serb Contributed-by: shashidhara.veerabhadraiah@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
23010
6dadb192ad81 8029235: Update copyright year to match last edit in jdk8 jdk repository for 2013
lana
parents: 21591
diff changeset
     2
 * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2473
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2473
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2473
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2473
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2473
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
package javax.swing;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.awt.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.awt.event.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.applet.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.beans.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import javax.swing.event.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import sun.awt.EmbeddedFrame;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
  * The KeyboardManager class is used to help dispatch keyboard actions for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
  * WHEN_IN_FOCUSED_WINDOW style actions.  Actions with other conditions are handled
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
  * directly in JComponent.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
  *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
  * Here's a description of the symantics of how keyboard dispatching should work
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
  * atleast as I understand it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
  *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
  * KeyEvents are dispatched to the focused component.  The focus manager gets first
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
  * crack at processing this event.  If the focus manager doesn't want it, then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
  * the JComponent calls super.processKeyEvent() this allows listeners a chance
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
  * to process the event.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
  *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
  * If none of the listeners "consumes" the event then the keybindings get a shot.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
  * This is where things start to get interesting.  First, KeyStokes defined with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
  * WHEN_FOCUSED condition get a chance.  If none of these want the event, then the component
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
  * walks though it's parents looked for actions of type WHEN_ANCESTOR_OF_FOCUSED_COMPONENT.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
  *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
  * If no one has taken it yet, then it winds up here.  We then look for components registered
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
  * for WHEN_IN_FOCUSED_WINDOW events and fire to them.  Note that if none of those are found
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
  * then we pass the event to the menubars and let them have a crack at it.  They're handled differently.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
  *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
  * Lastly, we check if we're looking at an internal frame.  If we are and no one wanted the event
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
  * then we move up to the InternalFrame's creator and see if anyone wants the event (and so on and so on).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
  *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
  *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
  * @see InputMap
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
  */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
class KeyboardManager {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    static KeyboardManager currentManager = new KeyboardManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
      * maps top-level containers to a sub-hashtable full of keystrokes
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
      */
25568
b906a74c6882 8043550: Fix raw and unchecked lint warnings in javax.swing.*
darcy
parents: 23010
diff changeset
    71
    Hashtable<Container, Hashtable<Object, Object>> containerMap = new Hashtable<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
      * Maps component/keystroke pairs to a topLevel container
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
      * This is mainly used for fast unregister operations
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
      */
25568
b906a74c6882 8043550: Fix raw and unchecked lint warnings in javax.swing.*
darcy
parents: 23010
diff changeset
    77
    Hashtable<ComponentKeyStrokePair, Container> componentKeyStrokeMap = new Hashtable<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    public static KeyboardManager getCurrentManager() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        return currentManager;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    public static void setCurrentManager(KeyboardManager km) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        currentManager = km;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
      * register keystrokes here which are for the WHEN_IN_FOCUSED_WINDOW
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
      * case.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
      * Other types of keystrokes will be handled by walking the hierarchy
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
      * That simplifies some potentially hairy stuff.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
      */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     public void registerKeyStroke(KeyStroke k, JComponent c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
         Container topContainer = getTopAncestor(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
         if (topContainer == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
             return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
         }
25568
b906a74c6882 8043550: Fix raw and unchecked lint warnings in javax.swing.*
darcy
parents: 23010
diff changeset
    98
         Hashtable<Object, Object> keyMap = containerMap.get(topContainer);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
         if (keyMap ==  null) {  // lazy evaluate one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
             keyMap = registerNewTopContainer(topContainer);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
         }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
         Object tmp = keyMap.get(k);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
         if (tmp == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
             keyMap.put(k,c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
         } else if (tmp instanceof Vector) {  // if there's a Vector there then add to it.
25568
b906a74c6882 8043550: Fix raw and unchecked lint warnings in javax.swing.*
darcy
parents: 23010
diff changeset
   108
             @SuppressWarnings("unchecked")
b906a74c6882 8043550: Fix raw and unchecked lint warnings in javax.swing.*
darcy
parents: 23010
diff changeset
   109
             Vector<Object> v = (Vector)tmp;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
             if (!v.contains(c)) {  // only add if this keystroke isn't registered for this component
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
                 v.addElement(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
             }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
         } else if (tmp instanceof JComponent) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
           // if a JComponent is there then remove it and replace it with a vector
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
           // Then add the old compoennt and the new compoent to the vector
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
           // then insert the vector in the table
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
           if (tmp != c) {  // this means this is already registered for this component, no need to dup
25568
b906a74c6882 8043550: Fix raw and unchecked lint warnings in javax.swing.*
darcy
parents: 23010
diff changeset
   118
               Vector<JComponent> v = new Vector<>();
1301
15e81207e1f2 6727662: Code improvement and warnings removing from swing packages
rupashka
parents: 2
diff changeset
   119
               v.addElement((JComponent) tmp);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
               v.addElement(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
               keyMap.put(k, v);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
           }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
         } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
             System.out.println("Unexpected condition in registerKeyStroke");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
             Thread.dumpStack();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
         }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
         componentKeyStrokeMap.put(new ComponentKeyStrokePair(c,k), topContainer);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
         // Check for EmbeddedFrame case, they know how to process accelerators even
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
         // when focus is not in Java
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
         if (topContainer instanceof EmbeddedFrame) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
             ((EmbeddedFrame)topContainer).registerAccelerator(k);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
         }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
       * Find the top focusable Window, Applet, or InternalFrame
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
       */
42198
6ff366cc096b 8168316: Suppress deprecation warnings for Applet classes in java.desktop
prr
parents: 25859
diff changeset
   140
     @SuppressWarnings("deprecation")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     private static Container getTopAncestor(JComponent c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        for(Container p = c.getParent(); p != null; p = p.getParent()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
            if (p instanceof Window && ((Window)p).isFocusableWindow() ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
                p instanceof Applet || p instanceof JInternalFrame) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
                return p;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     public void unregisterKeyStroke(KeyStroke ks, JComponent c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
       // component may have already been removed from the hierarchy, we
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
       // need to look up the container using the componentKeyStrokeMap.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
         ComponentKeyStrokePair ckp = new ComponentKeyStrokePair(c,ks);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
1301
15e81207e1f2 6727662: Code improvement and warnings removing from swing packages
rupashka
parents: 2
diff changeset
   159
         Container topContainer = componentKeyStrokeMap.get(ckp);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
         if (topContainer == null) {  // never heard of this pairing, so bail
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
             return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
         }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
25568
b906a74c6882 8043550: Fix raw and unchecked lint warnings in javax.swing.*
darcy
parents: 23010
diff changeset
   165
         Hashtable<Object, Object> keyMap = containerMap.get(topContainer);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
         if  (keyMap == null) { // this should never happen, but I'm being safe
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
             Thread.dumpStack();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
             return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
         }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
         Object tmp = keyMap.get(ks);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
         if (tmp == null) {  // this should never happen, but I'm being safe
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
             Thread.dumpStack();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
             return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
         }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
         if (tmp instanceof JComponent && tmp == c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
             keyMap.remove(ks);  // remove the KeyStroke from the Map
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
             //System.out.println("removed a stroke" + ks);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
         } else if (tmp instanceof Vector ) {  // this means there is more than one component reg for this key
25568
b906a74c6882 8043550: Fix raw and unchecked lint warnings in javax.swing.*
darcy
parents: 23010
diff changeset
   181
             Vector<?> v = (Vector)tmp;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
             v.removeElement(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
             if ( v.isEmpty() ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
                 keyMap.remove(ks);  // remove the KeyStroke from the Map
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
                 //System.out.println("removed a ks vector");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
             }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
         }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
         if ( keyMap.isEmpty() ) {  // if no more bindings in this table
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
             containerMap.remove(topContainer);  // remove table to enable GC
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
             //System.out.println("removed a container");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
         }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
         componentKeyStrokeMap.remove(ckp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
         // Check for EmbeddedFrame case, they know how to process accelerators even
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
         // when focus is not in Java
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
         if (topContainer instanceof EmbeddedFrame) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
             ((EmbeddedFrame)topContainer).unregisterAccelerator(ks);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
         }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
      * This method is called when the focused component (and none of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
      * its ancestors) want the key event.  This will look up the keystroke
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
      * to see if any chidren (or subchildren) of the specified container
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
      * want a crack at the event.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
      * If one of them wants it, then it will "DO-THE-RIGHT-THING"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
      */
43722
25ba19c20260 8143077: Deprecate InputEvent._MASK in favor of InputEvent._DOWN_MASK
serb
parents: 42198
diff changeset
   210
    @SuppressWarnings("deprecation")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
    public boolean fireKeyboardAction(KeyEvent e, boolean pressed, Container topAncestor) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
         if (e.isConsumed()) {
21591
35320b590d9b 8026491: Typos in string literals
malenkov
parents: 17906
diff changeset
   214
              System.out.println("Acquired pre-used event!");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
              Thread.dumpStack();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
         }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
2473
3f4bbd3be2f1 6680988: KeyEvent is still missing VK values for many keyboards
yan
parents: 1639
diff changeset
   218
         // There may be two keystrokes associated with a low-level key event;
3f4bbd3be2f1 6680988: KeyEvent is still missing VK values for many keyboards
yan
parents: 1639
diff changeset
   219
         // in this case a keystroke made of an extended key code has a priority.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
         KeyStroke ks;
2473
3f4bbd3be2f1 6680988: KeyEvent is still missing VK values for many keyboards
yan
parents: 1639
diff changeset
   221
         KeyStroke ksE = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
         if(e.getID() == KeyEvent.KEY_TYPED) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
               ks=KeyStroke.getKeyStroke(e.getKeyChar());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
         } else {
2473
3f4bbd3be2f1 6680988: KeyEvent is still missing VK values for many keyboards
yan
parents: 1639
diff changeset
   227
               if(e.getKeyCode() != e.getExtendedKeyCode()) {
3f4bbd3be2f1 6680988: KeyEvent is still missing VK values for many keyboards
yan
parents: 1639
diff changeset
   228
                   ksE=KeyStroke.getKeyStroke(e.getExtendedKeyCode(), e.getModifiers(), !pressed);
3f4bbd3be2f1 6680988: KeyEvent is still missing VK values for many keyboards
yan
parents: 1639
diff changeset
   229
               }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
               ks=KeyStroke.getKeyStroke(e.getKeyCode(), e.getModifiers(), !pressed);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
         }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
25568
b906a74c6882 8043550: Fix raw and unchecked lint warnings in javax.swing.*
darcy
parents: 23010
diff changeset
   233
         Hashtable<Object, Object> keyMap = containerMap.get(topAncestor);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
         if (keyMap != null) { // this container isn't registered, so bail
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
2473
3f4bbd3be2f1 6680988: KeyEvent is still missing VK values for many keyboards
yan
parents: 1639
diff changeset
   236
             Object tmp = null;
3f4bbd3be2f1 6680988: KeyEvent is still missing VK values for many keyboards
yan
parents: 1639
diff changeset
   237
             // extended code has priority
3f4bbd3be2f1 6680988: KeyEvent is still missing VK values for many keyboards
yan
parents: 1639
diff changeset
   238
             if( ksE != null ) {
3f4bbd3be2f1 6680988: KeyEvent is still missing VK values for many keyboards
yan
parents: 1639
diff changeset
   239
                 tmp = keyMap.get(ksE);
3f4bbd3be2f1 6680988: KeyEvent is still missing VK values for many keyboards
yan
parents: 1639
diff changeset
   240
                 if( tmp != null ) {
3f4bbd3be2f1 6680988: KeyEvent is still missing VK values for many keyboards
yan
parents: 1639
diff changeset
   241
                     ks = ksE;
3f4bbd3be2f1 6680988: KeyEvent is still missing VK values for many keyboards
yan
parents: 1639
diff changeset
   242
                 }
3f4bbd3be2f1 6680988: KeyEvent is still missing VK values for many keyboards
yan
parents: 1639
diff changeset
   243
             }
3f4bbd3be2f1 6680988: KeyEvent is still missing VK values for many keyboards
yan
parents: 1639
diff changeset
   244
             if( tmp == null ) {
3f4bbd3be2f1 6680988: KeyEvent is still missing VK values for many keyboards
yan
parents: 1639
diff changeset
   245
                 tmp = keyMap.get(ks);
3f4bbd3be2f1 6680988: KeyEvent is still missing VK values for many keyboards
yan
parents: 1639
diff changeset
   246
             }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
             if (tmp == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
               // don't do anything
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
             } else if ( tmp instanceof JComponent) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
                 JComponent c = (JComponent)tmp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
                 if ( c.isShowing() && c.isEnabled() ) { // only give it out if enabled and visible
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
                     fireBinding(c, ks, e, pressed);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
                 }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
             } else if ( tmp instanceof Vector) { //more than one comp registered for this
25568
b906a74c6882 8043550: Fix raw and unchecked lint warnings in javax.swing.*
darcy
parents: 23010
diff changeset
   256
                 Vector<?> v = (Vector)tmp;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
                 // There is no well defined order for WHEN_IN_FOCUSED_WINDOW
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
                 // bindings, but we give precedence to those bindings just
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
                 // added. This is done so that JMenus WHEN_IN_FOCUSED_WINDOW
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
                 // bindings are accessed before those of the JRootPane (they
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
                 // both have a WHEN_IN_FOCUSED_WINDOW binding for enter).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
                 for (int counter = v.size() - 1; counter >= 0; counter--) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
                     JComponent c = (JComponent)v.elementAt(counter);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
                     //System.out.println("Trying collision: " + c + " vector = "+ v.size());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
                     if ( c.isShowing() && c.isEnabled() ) { // don't want to give these out
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
                         fireBinding(c, ks, e, pressed);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
                         if (e.isConsumed())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
                             return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
                     }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
                 }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
             } else  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
                 System.out.println( "Unexpected condition in fireKeyboardAction " + tmp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
                 // This means that tmp wasn't null, a JComponent, or a Vector.  What is it?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
                 Thread.dumpStack();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
             }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
         }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
         if (e.isConsumed()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
             return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
         }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
         // if no one else handled it, then give the menus a crack
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
         // The're handled differently.  The key is to let any JMenuBars
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
         // process the event
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
         if ( keyMap != null) {
25568
b906a74c6882 8043550: Fix raw and unchecked lint warnings in javax.swing.*
darcy
parents: 23010
diff changeset
   285
             @SuppressWarnings("unchecked")
b906a74c6882 8043550: Fix raw and unchecked lint warnings in javax.swing.*
darcy
parents: 23010
diff changeset
   286
             Vector<JMenuBar> v = (Vector)keyMap.get(JMenuBar.class);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
             if (v != null) {
25568
b906a74c6882 8043550: Fix raw and unchecked lint warnings in javax.swing.*
darcy
parents: 23010
diff changeset
   288
                 Enumeration<JMenuBar> iter = v.elements();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
                 while (iter.hasMoreElements()) {
25568
b906a74c6882 8043550: Fix raw and unchecked lint warnings in javax.swing.*
darcy
parents: 23010
diff changeset
   290
                     JMenuBar mb = iter.nextElement();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
                     if ( mb.isShowing() && mb.isEnabled() ) { // don't want to give these out
17906
d1e3eb73fb05 8013370: Null pointer exception when adding more than 9 accelators to a JMenuBar
malenkov
parents: 5506
diff changeset
   292
                         boolean extended = (ksE != null) && !ksE.equals(ks);
d1e3eb73fb05 8013370: Null pointer exception when adding more than 9 accelators to a JMenuBar
malenkov
parents: 5506
diff changeset
   293
                         if (extended) {
2473
3f4bbd3be2f1 6680988: KeyEvent is still missing VK values for many keyboards
yan
parents: 1639
diff changeset
   294
                             fireBinding(mb, ksE, e, pressed);
3f4bbd3be2f1 6680988: KeyEvent is still missing VK values for many keyboards
yan
parents: 1639
diff changeset
   295
                         }
17906
d1e3eb73fb05 8013370: Null pointer exception when adding more than 9 accelators to a JMenuBar
malenkov
parents: 5506
diff changeset
   296
                         if (!extended || !e.isConsumed()) {
2473
3f4bbd3be2f1 6680988: KeyEvent is still missing VK values for many keyboards
yan
parents: 1639
diff changeset
   297
                             fireBinding(mb, ks, e, pressed);
3f4bbd3be2f1 6680988: KeyEvent is still missing VK values for many keyboards
yan
parents: 1639
diff changeset
   298
                         }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
                         if (e.isConsumed()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
                             return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
                         }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
                     }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
                 }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
             }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
         }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
         return e.isConsumed();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
    void fireBinding(JComponent c, KeyStroke ks, KeyEvent e, boolean pressed) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
        if (c.processKeyBinding(ks, e, JComponent.WHEN_IN_FOCUSED_WINDOW,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
                                pressed)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
            e.consume();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
    public void registerMenuBar(JMenuBar mb) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
        Container top = getTopAncestor(mb);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
        if (top == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
        }
25568
b906a74c6882 8043550: Fix raw and unchecked lint warnings in javax.swing.*
darcy
parents: 23010
diff changeset
   322
        Hashtable<Object, Object> keyMap = containerMap.get(top);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
        if (keyMap ==  null) {  // lazy evaluate one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
             keyMap = registerNewTopContainer(top);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
        // use the menubar class as the key
25568
b906a74c6882 8043550: Fix raw and unchecked lint warnings in javax.swing.*
darcy
parents: 23010
diff changeset
   328
        @SuppressWarnings("unchecked")
b906a74c6882 8043550: Fix raw and unchecked lint warnings in javax.swing.*
darcy
parents: 23010
diff changeset
   329
        Vector<Object> menuBars = (Vector)keyMap.get(JMenuBar.class);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
        if (menuBars == null) {  // if we don't have a list of menubars,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
                                 // then make one.
25568
b906a74c6882 8043550: Fix raw and unchecked lint warnings in javax.swing.*
darcy
parents: 23010
diff changeset
   333
            menuBars = new Vector<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
            keyMap.put(JMenuBar.class, menuBars);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
        if (!menuBars.contains(mb)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
            menuBars.addElement(mb);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
    public void unregisterMenuBar(JMenuBar mb) {
1301
15e81207e1f2 6727662: Code improvement and warnings removing from swing packages
rupashka
parents: 2
diff changeset
   344
        Container topContainer = getTopAncestor(mb);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
        if (topContainer == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
        }
25568
b906a74c6882 8043550: Fix raw and unchecked lint warnings in javax.swing.*
darcy
parents: 23010
diff changeset
   348
        Hashtable<Object, Object> keyMap = containerMap.get(topContainer);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
        if (keyMap!=null) {
25568
b906a74c6882 8043550: Fix raw and unchecked lint warnings in javax.swing.*
darcy
parents: 23010
diff changeset
   350
            Vector<?> v = (Vector)keyMap.get(JMenuBar.class);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
            if (v != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
                v.removeElement(mb);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
                if (v.isEmpty()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
                    keyMap.remove(JMenuBar.class);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
                    if (keyMap.isEmpty()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
                        // remove table to enable GC
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
                        containerMap.remove(topContainer);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
    }
25568
b906a74c6882 8043550: Fix raw and unchecked lint warnings in javax.swing.*
darcy
parents: 23010
diff changeset
   363
    protected Hashtable<Object, Object> registerNewTopContainer(Container topContainer) {
b906a74c6882 8043550: Fix raw and unchecked lint warnings in javax.swing.*
darcy
parents: 23010
diff changeset
   364
             Hashtable<Object, Object> keyMap = new Hashtable<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
             containerMap.put(topContainer, keyMap);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
             return keyMap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
      * This class is used to create keys for a hashtable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
      * which looks up topContainers based on component, keystroke pairs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
      * This is used to make unregistering KeyStrokes fast
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
      */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
    class ComponentKeyStrokePair {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
        Object component;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
        Object keyStroke;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
        public ComponentKeyStrokePair(Object comp, Object key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
            component = comp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
            keyStroke = key;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
        public boolean equals(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
            if ( !(o instanceof ComponentKeyStrokePair)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
            ComponentKeyStrokePair ckp = (ComponentKeyStrokePair)o;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
            return ((component.equals(ckp.component)) && (keyStroke.equals(ckp.keyStroke)));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
        public int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
            return component.hashCode() * keyStroke.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
} // end KeyboardManager