Press shift space or shift F2 to move the focus to the previous focusable component. : Focus Event « Event « Java






Press shift space or shift F2 to move the focus to the previous focusable component.

  

import java.awt.Component;
import java.awt.event.ActionEvent;

import javax.swing.AbstractAction;
import javax.swing.Action;
import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.KeyStroke;

public class Main {
  public static void main(String[] argv) {
    JButton component = new JButton();
    PrevFocusAction prevFocusAction = new PrevFocusAction();
    component.getInputMap(JComponent.WHEN_FOCUSED).put(KeyStroke.getKeyStroke("shift F2"),
        prevFocusAction.getValue(Action.NAME));
    component.getInputMap(JComponent.WHEN_FOCUSED).put(KeyStroke.getKeyStroke("shift SPACE"),
        prevFocusAction.getValue(Action.NAME));
    component.getActionMap().put(prevFocusAction.getValue(Action.NAME), prevFocusAction);
  }
}

class PrevFocusAction extends AbstractAction {
  PrevFocusAction() {
    super("Move Focus Backwards");
  }

  public void actionPerformed(ActionEvent evt) {
    ((Component) evt.getSource()).transferFocusBackward();
  }
}

   
    
  








Related examples in the same category

1.Setting Focus Traversal Keys in a Component
2.Change the forward focus traversal keys for a component
3.JComponent.setFocusTraversalKeys(int arg0, Set arg1)
4.KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS
5.Setting Focus Traversal Keys for the Entire Application
6.Changes the focus traversal keys for the entire application.
7.Change the backward focus traversal keys for the application
8.KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS
9.KeyboardFocusManager.getCurrentKeyboardFocusManager().getDefaultFocusTraversalKeys(KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS)
10.Remove all forward focus traversal keys for the application
11.Remove all backward focus traversal keys for the application
12.Modify a component: press space bar or F2 to move focus to next focusable component.
13.Setting the Initial Focused Component in a Window
14.Finding the Next Focusable Component
15.Find the previous focusable component
16.Determining If a Focus Lost Is Temporary or Permanent
17.Determining the Opposite Component of a Focus Event
18.Validating a JTextField When Permanently Losing the Focus
19.Removing the Focus from the Application
20.Use Focus Events in Swing
21.Null is returned if none of the components in this application has the focus
22.Null is returned if none of the windows in this application has the focus
23.Listening to All Focus Changes Between Components and windows
24.Preventing a Component from Gaining the Focus