source: josm/trunk/src/org/openstreetmap/josm/actions/UnselectAllAction.java@ 1051

Last change on this file since 1051 was 1051, checked in by stoecker, 16 years ago

cleanup shortcut modification a bit

  • Property svn:eol-style set to native
File size: 1.5 KB
Line 
1// License: GPL. Copyright 2007 by Immanuel Scholz and others
2package org.openstreetmap.josm.actions;
3
4import static org.openstreetmap.josm.tools.I18n.tr;
5
6import java.awt.event.ActionEvent;
7import java.awt.event.KeyEvent;
8import javax.swing.JComponent;
9
10import org.openstreetmap.josm.Main;
11import org.openstreetmap.josm.tools.ShortCut;
12
13public class UnselectAllAction extends JosmAction {
14
15 public UnselectAllAction() {
16 super(tr("Unselect All"), "unselectall", tr("Unselect all objects."),
17 ShortCut.registerShortCut("edit:unselectall", tr("Edit: Unselect all"), KeyEvent.VK_U, ShortCut.GROUP_EDIT), true);
18 // this is not really GROUP_EDIT, but users really would complain if the yhad to reconfigure because we put
19 // the correct group in
20
21 // Add extra shortcut C-S-a
22 Main.contentPane.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).put(
23 ShortCut.registerShortCut("edit:unselectall2", tr("Edit: Unselect all (2)"),
24 KeyEvent.VK_A, ShortCut.GROUP_MENU, ShortCut.SHIFT_DEFAULT).getKeyStroke(),
25 tr("Unselect All"));
26
27 // Add extra shortcut ESCAPE
28 /*
29 * FIXME: this isn't optimal. In a better world the mapmode actions
30 * would be able to capture keyboard events and react accordingly. But
31 * for now this is a reasonable approximation.
32 */
33 Main.contentPane.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).put(
34 ShortCut.registerShortCut("edit:unselectall3", tr("Edit: Unselect all (3)"), KeyEvent.VK_ESCAPE, ShortCut.GROUP_DIRECT).getKeyStroke(),
35 tr("Unselect All"));
36 }
37
38 public void actionPerformed(ActionEvent e) {
39 Main.ds.setSelected();
40 }
41}
Note: See TracBrowser for help on using the repository browser.