Sharing an InputMap or an ActionMap Between Two Components : InputMap « Swing Event « Java Tutorial






import java.awt.event.ActionEvent;

import javax.swing.AbstractAction;
import javax.swing.ActionMap;
import javax.swing.InputMap;
import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.JTextArea;
import javax.swing.KeyStroke;
import javax.swing.text.JTextComponent;

public class Main {
  public static void main(String[] argv) {
    InputMap im = new JTextArea().getInputMap(JComponent.WHEN_FOCUSED);
    im.put(KeyStroke.getKeyStroke("F2"), "actionName");

    ActionMap am = new JTextArea().getActionMap();
    am.put("actionName", new AbstractAction("actionName") {
      public void actionPerformed(ActionEvent evt) {
        System.out.println((JTextComponent) evt.getSource());
      }
    });
    im.put(KeyStroke.getKeyStroke("F3"), "actionName2");
    am.put("actionName2", new AbstractAction("actionName2") {
      public void actionPerformed(ActionEvent evt) {
        System.out.println((JTextComponent) evt.getSource());
      }
    });
    JButton component1 = new JButton("button 1");
    JButton component2 = new JButton("button 2");

    component1.setInputMap(JComponent.WHEN_FOCUSED, im);
    component2.setInputMap(JComponent.WHEN_FOCUSED, im);

    component1.setActionMap(am);
    component2.setActionMap(am);



  }
}








15.4.InputMap
15.4.1.void InputMap.put(KeyStroke keyStroke, Object actionMapKey)
15.4.2.InputMap javax.swing.JComponent.getInputMap(int condition)
15.4.3.Press shift space or shift F2 to move the focus to the previous focusable component.
15.4.4.Modify a component: press space bar or F2 to move focus to next focusable component.
15.4.5.Adding an InputMap to a Component
15.4.6.Sharing an InputMap or an ActionMap Between Two Components
15.4.7.Overriding Default Typed Key Bindings in a JTextComponent
15.4.8.Disable a character so that no action is invoked
15.4.9.Prevent the space from being inserted when shift-space is pressed
15.4.10.Install your own action to text component