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

Last change on this file since 8533 was 6380, checked in by Don-vip, 10 years ago

update license/copyright information

  • Property svn:eol-style set to native
File size: 1017 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.actions;
3
4import static org.openstreetmap.josm.gui.help.HelpUtil.ht;
5import static org.openstreetmap.josm.tools.I18n.tr;
6
7import java.awt.event.ActionEvent;
8import java.awt.event.KeyEvent;
9
10import org.openstreetmap.josm.tools.Shortcut;
11
12public class UnselectAllAction extends JosmAction {
13
14 public UnselectAllAction() {
15 super(tr("Unselect All"), "unselectall", tr("Unselect all objects."),
16 Shortcut.registerShortcut("edit:unselectall", tr("Edit: {0}",
17 tr("Unselect All")), KeyEvent.VK_ESCAPE, Shortcut.DIRECT), true);
18
19 putValue("help", ht("/Action/UnselectAll"));
20 }
21
22 @Override
23 public void actionPerformed(ActionEvent e) {
24 if (!isEnabled())
25 return;
26 getCurrentDataSet().setSelected();
27 }
28 /**
29 * Refreshes the enabled state
30 *
31 */
32 @Override
33 protected void updateEnabledState() {
34 setEnabled(getEditLayer() != null);
35 }
36}
Note: See TracBrowser for help on using the repository browser.